git: 3fab77d970d3 - main - net/yami4: Update to 2.0.0 and set new maintainer

From: Fernando Apesteguía <fernape_at_FreeBSD.org>
Date: Sun, 29 Jan 2023 22:08:42 UTC
The branch main has been updated by fernape:

URL: https://cgit.FreeBSD.org/ports/commit/?id=3fab77d970d381cd1ec6924d5fd4a989122b9d1e

commit 3fab77d970d381cd1ec6924d5fd4a989122b9d1e
Author:     Maciej Sobczak <prog@msobczak.com>
AuthorDate: 2023-01-26 12:11:08 +0000
Commit:     Fernando Apesteguía <fernape@FreeBSD.org>
CommitDate: 2023-01-29 22:04:31 +0000

    net/yami4: Update to 2.0.0 and set new maintainer
    
    Maintainer has no more ports, but was the original creator of this one.
    
    PR:             268383
    Reported by:    prog@msobczak.com
---
 net/yami4/Makefile  |  55 +++--
 net/yami4/distinfo  |   6 +-
 net/yami4/pkg-descr |   5 +-
 net/yami4/pkg-plist | 610 ++++++++++++++++++++++++++++++++++++++++++++++++----
 4 files changed, 611 insertions(+), 65 deletions(-)

diff --git a/net/yami4/Makefile b/net/yami4/Makefile
index bd0ba449d2e4..9839a0eee5c2 100644
--- a/net/yami4/Makefile
+++ b/net/yami4/Makefile
@@ -1,36 +1,63 @@
 PORTNAME=	yami4
-PORTVERSION=	1.12.0
+PORTVERSION=	2.0.0
 CATEGORIES=	net
 MASTER_SITES=	http://www.inspirel.com/yami4/files/
 DISTNAME=	yami4-gpl-${PORTVERSION}
 
-MAINTAINER=	ports@FreeBSD.org
+MAINTAINER=	prog@msobczak.com
 COMMENT=	Messaging library for distributed systems
 WWW=		http://www.inspirel.com/yami4/
 
 LICENSE=	GPLv3
 LICENSE_FILE=	${WRKSRC}/gpl-3.0.txt
 
-USES=		compiler:c++11-lang zip
+USES=		zip
 
-CXXFLAGS+=	-I${WRKSRC}/include
-# Fixes "unknown type name 'sem_t'" on FreeBSD 13
-CXXFLAGS+=	-D_LIBCPP_NO_NATIVE_SEMAPHORES
-MAKE_ARGS=	COMPILER="${CXX}" OPTIONS="${CXXFLAGS}"
+OPTIONS_DEFINE=		YAMI4CPP YAMI4PYTHON DOCS
+OPTIONS_DEFAULT=	YAMI4CPP
+OPTIONS_SUB=		yes
+YAMI4CPP_DESC=		Core and C++ libraries
+YAMI4PYTHON_DESC=	Loadable module for Python3.9
 
-PORTDOCS=	*
+do-build:
 
-OPTIONS_DEFINE=	DOCS
-
-do-build :
+do-build-YAMI4CPP-on:
 	${DO_MAKE_BUILD} -C ${WRKSRC}/src/core
 	${DO_MAKE_BUILD} -C ${WRKSRC}/src/cpp
 
+do-build-YAMI4PYTHON-on:
+	${DO_MAKE_BUILD} -C ${WRKSRC}/src/python3 PYTHON_INCLUDE=${PREFIX}/include/python3.9 PYTHON_LIBDIR=${PREFIX}/lib
+
 do-install:
-	cd ${WRKSRC}/include && ${COPYTREE_SHARE} "yami4-core yami4-cpp" ${STAGEDIR}${PREFIX}/include
-	cd ${WRKSRC}/lib && ${INSTALL_DATA} *.a ${STAGEDIR}${PREFIX}/lib
 
+# Note: the interaction between all options is too complex to handle with .if/.endif,
+#       so the DOCS is first installed en-bloc and then selectively UNstaged
 do-install-DOCS-on:
-	cd ${WRKSRC}/doc && ${COPYTREE_SHARE} "core cpp" ${STAGEDIR}${DOCSDIR}
+	cd ${WRKSRC}/doc && ${COPYTREE_SHARE} "core cpp python3" ${STAGEDIR}${DOCSDIR}
+
+do-install-YAMI4CPP-on:
+	cd ${WRKSRC}/include && ${COPYTREE_SHARE} "yami4-core yami4-cpp" ${STAGEDIR}${PREFIX}/include
+	${RM} ${STAGEDIR}${PREFIX}/include/yami4-core/Doxyfile
+	${RM} ${STAGEDIR}${PREFIX}/include/yami4-core/doxymain.h
+	${RM} ${STAGEDIR}${PREFIX}/include/yami4-cpp/Doxyfile
+	${RM} ${STAGEDIR}${PREFIX}/include/yami4-cpp/doxymain.h
+	cd ${WRKSRC}/lib && ${INSTALL_DATA} libyamicore.a libyamicpp.a ${STAGEDIR}${PREFIX}/lib
+
+do-install-YAMI4PYTHON-on:
+	${MKDIR} ${STAGEDIR}${PREFIX}/lib/python3.9
+	cd ${WRKSRC}/lib && ${INSTALL_DATA} yami.py ${STAGEDIR}${PREFIX}/lib/python3.9
+	cd ${WRKSRC}/lib && ${INSTALL_LIB} libyami4py.so ${STAGEDIR}${PREFIX}/lib/python3.9
+
+post-install-YAMI4CPP-off:
+	${RM} -r ${STAGEDIR}${DOCSDIR}/core
+	${RM} -r ${STAGEDIR}${DOCSDIR}/cpp
+
+post-install-YAMI4PYTHON-off:
+	${RM} -r ${STAGEDIR}${DOCSDIR}/python3
 
 .include <bsd.port.mk>
+
+.if ${PORT_OPTIONS:MYAMI4PYTHON}
+USES+=		python:3.9
+LIB_DEPENDS+=	libpython3.9.so:lang/python39
+.endif
diff --git a/net/yami4/distinfo b/net/yami4/distinfo
index 0df0aaf7348a..10a6573dcc21 100644
--- a/net/yami4/distinfo
+++ b/net/yami4/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1671356108
-SHA256 (yami4-gpl-1.12.0.zip) = bea001f8be8b8d02ceb95154ac0a4be3b35814ae677a78beea6f6dc0c64f61c4
-SIZE (yami4-gpl-1.12.0.zip) = 1773074
+TIMESTAMP = 1670932987
+SHA256 (yami4-gpl-2.0.0.zip) = dd599c8d72f08e344c563057d007ff57841910f931bba184dccfa3ad7e9041f1
+SIZE (yami4-gpl-2.0.0.zip) = 1487140
diff --git a/net/yami4/pkg-descr b/net/yami4/pkg-descr
index 27de1283b07e..62933e0b49ec 100644
--- a/net/yami4/pkg-descr
+++ b/net/yami4/pkg-descr
@@ -1,3 +1,4 @@
 YAMI4 is a messaging solution for distributed systems.
-It is a set of libraries for several platforms and programming languages.
-This port installs the core and C++ libraries with documentation.
+It is a set of libraries and run-time services
+for several operating systems and programming languages.
+This port installs core, C++ and Python libraries with documentation.
diff --git a/net/yami4/pkg-plist b/net/yami4/pkg-plist
index 5ff7d9876803..d92d2e35bb09 100644
--- a/net/yami4/pkg-plist
+++ b/net/yami4/pkg-plist
@@ -1,46 +1,564 @@
-include/yami4-core/Doxygen.cfg
-include/yami4-core/agent.h
-include/yami4-core/allocator.h
-include/yami4-core/channel_descriptor.h
-include/yami4-core/core.h
-include/yami4-core/dll.h
-include/yami4-core/fatal_errors.h
-include/yami4-core/option_names.h
-include/yami4-core/parameter_entry.h
-include/yami4-core/parameter_iterator.h
-include/yami4-core/parameter_type.h
-include/yami4-core/parameters.h
-include/yami4-core/raw_buffer_data_source.h
-include/yami4-core/serializable.h
-include/yami4-cpp/Doxygen.cfg
-include/yami4-cpp/activity_statistics_monitor.h
-include/yami4-cpp/agent.h
-include/yami4-cpp/agent_impl_base.h
-include/yami4-cpp/connection_event.h
-include/yami4-cpp/connection_event_dispatcher_base.h
-include/yami4-cpp/connection_event_generic_dispatcher.h
-include/yami4-cpp/errors.h
-include/yami4-cpp/event_callback.h
-include/yami4-cpp/incoming_message.h
-include/yami4-cpp/incoming_message_dispatcher_base.h
-include/yami4-cpp/incoming_message_generic_dispatcher.h
-include/yami4-cpp/io_error_dispatcher_base.h
-include/yami4-cpp/io_error_generic_dispatcher.h
-include/yami4-cpp/message_state.h
-include/yami4-cpp/option_names.h
-include/yami4-cpp/outgoing_message.h
-include/yami4-cpp/outgoing_message_dispatcher_base.h
-include/yami4-cpp/outgoing_message_generic_dispatcher.h
-include/yami4-cpp/parameter_entry.h
-include/yami4-cpp/parameter_type.h
-include/yami4-cpp/parameters.h
-include/yami4-cpp/raw_buffer_data_source.h
-include/yami4-cpp/serializable.h
-include/yami4-cpp/value_publisher.h
-include/yami4-cpp/value_publisher_overflow_action.h
-include/yami4-cpp/value_publisher_overflow_dispatcher_base.h
-include/yami4-cpp/value_publisher_overflow_generic_dispatcher.h
-include/yami4-cpp/version.h
-include/yami4-cpp/yami.h
-lib/libyamicore.a
-lib/libyamicpp.a
+%%YAMI4CPP%%include/yami4-core/agent.h
+%%YAMI4CPP%%include/yami4-core/allocator.h
+%%YAMI4CPP%%include/yami4-core/channel_descriptor.h
+%%YAMI4CPP%%include/yami4-core/core.h
+%%YAMI4CPP%%include/yami4-core/dll.h
+%%YAMI4CPP%%include/yami4-core/fatal_errors.h
+%%YAMI4CPP%%include/yami4-core/locked_allocator.h
+%%YAMI4CPP%%include/yami4-core/option_names.h
+%%YAMI4CPP%%include/yami4-core/parameter_entry.h
+%%YAMI4CPP%%include/yami4-core/parameter_iterator.h
+%%YAMI4CPP%%include/yami4-core/parameter_type.h
+%%YAMI4CPP%%include/yami4-core/parameters.h
+%%YAMI4CPP%%include/yami4-core/raw_buffer_data_source.h
+%%YAMI4CPP%%include/yami4-core/serializable.h
+%%YAMI4CPP%%include/yami4-cpp/agent.h
+%%YAMI4CPP%%include/yami4-cpp/agent_impl_base.h
+%%YAMI4CPP%%include/yami4-cpp/connection_event.h
+%%YAMI4CPP%%include/yami4-cpp/connection_event_dispatcher_base.h
+%%YAMI4CPP%%include/yami4-cpp/connection_event_generic_dispatcher.h
+%%YAMI4CPP%%include/yami4-cpp/errors.h
+%%YAMI4CPP%%include/yami4-cpp/event_callback.h
+%%YAMI4CPP%%include/yami4-cpp/incoming_message.h
+%%YAMI4CPP%%include/yami4-cpp/incoming_message_dispatcher_base.h
+%%YAMI4CPP%%include/yami4-cpp/incoming_message_generic_dispatcher.h
+%%YAMI4CPP%%include/yami4-cpp/io_error_dispatcher_base.h
+%%YAMI4CPP%%include/yami4-cpp/io_error_generic_dispatcher.h
+%%YAMI4CPP%%include/yami4-cpp/message_state.h
+%%YAMI4CPP%%include/yami4-cpp/option_names.h
+%%YAMI4CPP%%include/yami4-cpp/outgoing_message.h
+%%YAMI4CPP%%include/yami4-cpp/outgoing_message_dispatcher_base.h
+%%YAMI4CPP%%include/yami4-cpp/outgoing_message_generic_dispatcher.h
+%%YAMI4CPP%%include/yami4-cpp/parameter_entry.h
+%%YAMI4CPP%%include/yami4-cpp/parameter_type.h
+%%YAMI4CPP%%include/yami4-cpp/parameters.h
+%%YAMI4CPP%%include/yami4-cpp/raw_buffer_data_source.h
+%%YAMI4CPP%%include/yami4-cpp/serializable.h
+%%YAMI4CPP%%include/yami4-cpp/value_publisher.h
+%%YAMI4CPP%%include/yami4-cpp/value_publisher_overflow_action.h
+%%YAMI4CPP%%include/yami4-cpp/value_publisher_overflow_dispatcher_base.h
+%%YAMI4CPP%%include/yami4-cpp/value_publisher_overflow_generic_dispatcher.h
+%%YAMI4CPP%%include/yami4-cpp/yami.h
+%%YAMI4CPP%%lib/libyamicore.a
+%%YAMI4CPP%%lib/libyamicpp.a
+%%YAMI4PYTHON%%lib/python3.9/libyami4py.so
+%%YAMI4PYTHON%%lib/python3.9/yami.py
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/agent_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/allocator_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/annotated.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/bc_s.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/bc_sd.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/bdwn.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/channel__descriptor_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/classes.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/classyami_1_1core_1_1agent-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/classyami_1_1core_1_1agent.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/classyami_1_1core_1_1allocator-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/classyami_1_1core_1_1allocator.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/classyami_1_1core_1_1allocator.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/classyami_1_1core_1_1channel__descriptor-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/classyami_1_1core_1_1channel__descriptor.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/classyami_1_1core_1_1locked__allocator-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/classyami_1_1core_1_1locked__allocator.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/classyami_1_1core_1_1locked__allocator.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/classyami_1_1core_1_1non__locked__allocator-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/classyami_1_1core_1_1non__locked__allocator.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/classyami_1_1core_1_1non__locked__allocator.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/classyami_1_1core_1_1parameter__entry-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/classyami_1_1core_1_1parameter__entry.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/classyami_1_1core_1_1parameter__iterator-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/classyami_1_1core_1_1parameter__iterator.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/classyami_1_1core_1_1parameters-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/classyami_1_1core_1_1parameters.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/classyami_1_1core_1_1parameters.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/classyami_1_1core_1_1raw__buffer__data__source-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/classyami_1_1core_1_1raw__buffer__data__source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/classyami_1_1core_1_1raw__buffer__data__source.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/classyami_1_1core_1_1serializable-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/classyami_1_1core_1_1serializable.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/classyami_1_1core_1_1serializable.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/classyami_1_1core_1_1standard__allocator-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/classyami_1_1core_1_1standard__allocator.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/classyami_1_1core_1_1standard__allocator.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/classyami_1_1details_1_1dump__sink-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/classyami_1_1details_1_1dump__sink.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/closed.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/core_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/dll_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/doc.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/docd.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/doxygen.css
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/doxygen.svg
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/doxymain_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/dynsections.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/fatal__errors_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/files.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/folderclosed.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/folderopen.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/functions.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/functions_func.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/hierarchy.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/index.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/jquery.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/locked__allocator_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/menu.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/menudata.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/namespacemembers.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/namespacemembers_enum.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/namespacemembers_eval.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/namespacemembers_func.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/namespacemembers_type.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/namespaces.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/namespaceyami.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/namespaceyami_1_1core.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/nav_f.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/nav_fd.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/nav_g.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/nav_h.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/nav_hd.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/open.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/option__names_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/parameter__entry_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/parameter__iterator_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/parameter__type_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/parameters_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/raw__buffer__data__source_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/all_0.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/all_1.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/all_10.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/all_11.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/all_12.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/all_13.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/all_14.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/all_2.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/all_3.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/all_4.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/all_5.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/all_6.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/all_7.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/all_8.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/all_9.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/all_a.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/all_b.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/all_c.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/all_d.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/all_e.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/all_f.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/classes_0.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/classes_1.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/classes_2.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/classes_3.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/classes_4.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/classes_5.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/classes_6.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/classes_7.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/close.svg
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/enums_0.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/enums_1.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/enums_2.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/enums_3.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/enumvalues_0.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/enumvalues_1.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/enumvalues_2.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/enumvalues_3.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/enumvalues_4.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/enumvalues_5.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/enumvalues_6.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/enumvalues_7.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/enumvalues_8.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/enumvalues_9.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/enumvalues_a.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/functions_0.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/functions_1.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/functions_2.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/functions_3.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/functions_4.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/functions_5.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/functions_6.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/functions_7.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/functions_8.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/functions_9.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/functions_a.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/functions_b.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/functions_c.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/functions_d.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/mag.svg
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/mag_d.svg
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/mag_sel.svg
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/mag_seld.svg
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/namespaces_0.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/pages_0.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/search.css
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/search.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/searchdata.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/typedefs_0.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/typedefs_1.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/typedefs_2.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/typedefs_3.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/typedefs_4.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/search/typedefs_5.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/serializable_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/splitbar.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/splitbard.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/sync_off.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/sync_on.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/tab_a.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/tab_ad.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/tab_b.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/tab_bd.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/tab_h.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/tab_hd.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/tab_s.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/tab_sd.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/core/tabs.css
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/agent_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/agent__impl__base_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/annotated.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/bc_s.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/bc_sd.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/bdwn.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classes.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1agent-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1agent.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1agent__impl__base-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1agent__impl__base.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1connection__event__dispatcher__base-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1connection__event__dispatcher__base.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1connection__event__dispatcher__base.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1connection__event__generic__dispatcher-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1connection__event__generic__dispatcher.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1connection__event__generic__dispatcher.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1incoming__message__dispatcher__base-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1incoming__message__dispatcher__base.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1incoming__message__dispatcher__base.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1incoming__message__generic__dispatcher-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1incoming__message__generic__dispatcher.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1incoming__message__generic__dispatcher.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1incoming__message__raw__dispatcher-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1incoming__message__raw__dispatcher.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1incoming__message__raw__dispatcher.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1io__error__dispatcher__base-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1io__error__dispatcher__base.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1io__error__dispatcher__base.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1io__error__generic__dispatcher-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1io__error__generic__dispatcher.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1io__error__generic__dispatcher.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1outgoing__message__dispatcher__base-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1outgoing__message__dispatcher__base.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1outgoing__message__dispatcher__base.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1outgoing__message__generic__dispatcher-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1outgoing__message__generic__dispatcher.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1outgoing__message__generic__dispatcher.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1value__publisher__overflow__dispatcher__base-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1value__publisher__overflow__dispatcher__base.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1value__publisher__overflow__dispatcher__base.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1value__publisher__overflow__generic__dispatcher-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1value__publisher__overflow__generic__dispatcher.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1details_1_1value__publisher__overflow__generic__dispatcher.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1event__callback-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1event__callback.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1incoming__message-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1incoming__message.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1outgoing__message-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1outgoing__message.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1parameter__entry-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1parameter__entry.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1parameters-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1parameters.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1parameters.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1parameters_1_1iterator-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1parameters_1_1iterator.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1raw__buffer__data__source-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1raw__buffer__data__source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1raw__buffer__data__source.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1serializable-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1serializable.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1serializable.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1value__publisher-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1value__publisher.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1yami__logic__error-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1yami__logic__error.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1yami__logic__error.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1yami__runtime__error-members.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1yami__runtime__error.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/classyami_1_1yami__runtime__error.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/closed.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/connection__event_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/connection__event__dispatcher__base_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/connection__event__generic__dispatcher_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/doc.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/docd.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/doxygen.css
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/doxygen.svg
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/doxymain_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/dynsections.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/errors_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/event__callback_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/files.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/folderclosed.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/folderopen.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/functions.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/functions_func.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/functions_type.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/hierarchy.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/incoming__message_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/incoming__message__dispatcher__base_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/incoming__message__generic__dispatcher_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/index.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/io__error__dispatcher__base_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/io__error__generic__dispatcher_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/jquery.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/menu.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/menudata.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/message__state_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/namespacemembers.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/namespacemembers_enum.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/namespacemembers_eval.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/namespaces.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/namespaceyami.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/nav_f.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/nav_fd.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/nav_g.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/nav_h.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/nav_hd.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/open.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/option__names_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/outgoing__message_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/outgoing__message__dispatcher__base_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/outgoing__message__generic__dispatcher_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/parameter__entry_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/parameter__type_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/parameters_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/raw__buffer__data__source_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/all_0.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/all_1.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/all_10.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/all_11.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/all_12.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/all_13.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/all_14.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/all_15.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/all_2.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/all_3.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/all_4.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/all_5.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/all_6.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/all_7.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/all_8.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/all_9.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/all_a.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/all_b.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/all_c.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/all_d.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/all_e.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/all_f.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/classes_0.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/classes_1.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/classes_2.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/classes_3.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/classes_4.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/classes_5.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/classes_6.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/classes_7.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/classes_8.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/classes_9.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/close.svg
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/enums_0.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/enums_1.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/enums_2.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/enums_3.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/enumvalues_0.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/enumvalues_1.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/enumvalues_2.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/enumvalues_3.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/enumvalues_4.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/enumvalues_5.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/enumvalues_6.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/enumvalues_7.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/enumvalues_8.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/enumvalues_9.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/enumvalues_a.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/enumvalues_b.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/enumvalues_c.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/functions_0.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/functions_1.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/functions_10.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/functions_11.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/functions_12.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/functions_13.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/functions_2.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/functions_3.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/functions_4.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/functions_5.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/functions_6.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/functions_7.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/functions_8.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/functions_9.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/functions_a.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/functions_b.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/functions_c.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/functions_d.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/functions_e.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/functions_f.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/mag.svg
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/mag_d.svg
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/mag_sel.svg
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/mag_seld.svg
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/namespaces_0.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/pages_0.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/search.css
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/search.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/searchdata.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/search/typedefs_0.js
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/serializable_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/splitbar.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/splitbard.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/sync_off.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/sync_on.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/tab_a.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/tab_ad.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/tab_b.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/tab_bd.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/tab_h.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/tab_hd.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/tab_s.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/tab_sd.png
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/tabs.css
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/value__publisher_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/value__publisher__overflow__action_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/value__publisher__overflow__dispatcher__base_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/value__publisher__overflow__generic__dispatcher_8h_source.html
+%%YAMI4CPP%%%%PORTDOCS%%%%DOCSDIR%%/cpp/yami_8h_source.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/annotated.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/bc_s.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/bc_sd.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/bdwn.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classes.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_agent-members.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_agent.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_agent.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_agent_1_1_____dispatcher_thread-members.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_agent_1_1_____dispatcher_thread.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_agent_1_1_____dispatcher_thread.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_agent_1_1_option_names-members.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_agent_1_1_option_names.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_agent_1_1_option_names.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_incoming_message-members.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_incoming_message.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_incoming_message.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_long-members.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_long.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_long.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_long_word-members.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_long_word.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_long_word.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_outgoing_message-members.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_outgoing_message.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_outgoing_message.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_parameters-members.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_parameters.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_parameters.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_parameters_1_1_____entry_iterator-members.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_parameters_1_1_____entry_iterator.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_parameters_1_1_____entry_iterator.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_value_publisher-members.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_value_publisher.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_value_publisher.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_value_publisher_1_1_____default_overflow_command-members.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_value_publisher_1_1_____default_overflow_command.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_value_publisher_1_1_____default_overflow_command.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_value_publisher_1_1_____subscription_info.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_value_publisher_1_1_____subscription_info.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_word-members.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_word.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_word.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_y_a_m_i_error.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/classyami_1_1_y_a_m_i_error.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/closed.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/doc.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/docd.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/doxygen.css
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/doxygen.svg
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/dynsections.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/folderclosed.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/folderopen.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/functions.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/functions_func.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/hierarchy.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/index.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/jquery.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/menu.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/menudata.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/namespacemembers.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/namespacemembers_func.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/namespaces.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/namespaceyami.html
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/nav_f.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/nav_fd.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/nav_g.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/nav_h.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/nav_hd.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/open.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/all_0.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/all_1.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/all_10.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/all_2.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/all_3.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/all_4.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/all_5.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/all_6.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/all_7.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/all_8.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/all_9.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/all_a.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/all_b.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/all_c.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/all_d.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/all_e.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/all_f.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/classes_0.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/classes_1.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/classes_2.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/classes_3.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/classes_4.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/classes_5.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/classes_6.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/classes_7.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/classes_8.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/close.svg
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/functions_0.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/functions_1.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/functions_2.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/functions_3.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/functions_4.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/functions_5.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/functions_6.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/functions_7.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/functions_8.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/functions_9.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/functions_a.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/functions_b.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/functions_c.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/functions_d.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/functions_e.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/mag.svg
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/mag_d.svg
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/mag_sel.svg
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/mag_seld.svg
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/namespaces_0.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/search.css
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/search.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/search/searchdata.js
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/splitbar.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/splitbard.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/sync_off.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/sync_on.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/tab_a.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/tab_ad.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/tab_b.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/tab_bd.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/tab_h.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/tab_hd.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/tab_s.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/tab_sd.png
+%%YAMI4PYTHON%%%%PORTDOCS%%%%DOCSDIR%%/python3/tabs.css