diff options
author | rakuco <rakuco@FreeBSD.org> | 2016-07-03 21:16:17 +0800 |
---|---|---|
committer | rakuco <rakuco@FreeBSD.org> | 2016-07-03 21:16:17 +0800 |
commit | 4477ea634828dd6f2d5488ce15c35234f0eddf9f (patch) | |
tree | 39418b9858087c197915c2cce6677ac1450c0042 /print | |
parent | 8f52d5d5b03ef289fb9c35fb3aac1af0bc1083c9 (diff) | |
download | freebsd-ports-graphics-4477ea634828dd6f2d5488ce15c35234f0eddf9f.tar.gz freebsd-ports-graphics-4477ea634828dd6f2d5488ce15c35234f0eddf9f.tar.zst freebsd-ports-graphics-4477ea634828dd6f2d5488ce15c35234f0eddf9f.zip |
Update to 2.2.0.
Changes and release notes:
http://wiki.lyx.org/LyX/NewInLyX22
The GUI still uses Qt4, as 2.2.0's release notes only advise using the Qt5
versions with Qt >= 5.6.0.
Diffstat (limited to 'print')
-rw-r--r-- | print/lyx/Makefile | 18 | ||||
-rw-r--r-- | print/lyx/distinfo | 6 | ||||
-rw-r--r-- | print/lyx/files/patch-config.h.in | 14 | ||||
-rw-r--r-- | print/lyx/files/patch-src__support__os_unix.cpp | 15 | ||||
-rw-r--r-- | print/lyx/pkg-plist | 2758 |
5 files changed, 1419 insertions, 1392 deletions
diff --git a/print/lyx/Makefile b/print/lyx/Makefile index b4118c4a373..ec3d21cb666 100644 --- a/print/lyx/Makefile +++ b/print/lyx/Makefile @@ -6,10 +6,8 @@ PORTVERSION= ${MAJOR_VERSION}.${MINOR_VERSION} CATEGORIES= print editors MASTER_SITES= ftp://ftp.lyx.org/pub/lyx/stable/${MAJOR_VERSION}.x/ \ http://www-ftp.lip6.fr/ftp/pub/lyx/stable/${MAJOR_VERSION}.x/ \ - ftp://gd.tuwien.ac.at/publishing/tex/lyx/stable/${MAJOR_VERSION}.x/ \ ftp://ftp.ntua.gr/pub/X11/LyX/stable/${MAJOR_VERSION}.x/ \ - http://sunsite.icm.edu.pl/pub/unix/editors/lyx/stable/${MAJOR_VERSION}.x/ \ - ftp://ftp.chg.ru/pub/X11/lyx/stable/${MAJOR_VERSION}.x/ + http://sunsite.icm.edu.pl/pub/unix/editors/lyx/stable/${MAJOR_VERSION}.x/ MAINTAINER= rakuco@FreeBSD.org COMMENT= Document processor interfaced with LaTeX (nearly WYSIWYG) @@ -19,17 +17,23 @@ LICENSE= GPLv2 LIB_DEPENDS= libboost_regex.so:devel/boost-libs \ libmythes-1.2.so:textproc/mythes -MAJOR_VERSION= 2.1 -MINOR_VERSION= 5 +MAJOR_VERSION= 2.2 +MINOR_VERSION= 0 -USES= desktop-file-utils gmake iconv pkgconfig perl5 python:2 tar:xz -USE_QT4= corelib gui moc_build uic_build rcc_build +USES= desktop-file-utils execinfo gmake iconv pkgconfig perl5 \ + python:2 tar:xz +USE_QT4= corelib gui svg moc_build uic_build rcc_build GNU_CONFIGURE= yes CONFIGURE_ARGS= --without-included-boost \ --without-included-mythes \ + --disable-qt5 \ ${ICONV_CONFIGURE_ARG} \ --with-extra-prefix=${LOCALBASE} +CPPFLAGS+= ${EXECINFO_CPPFLAGS} +LDFLAGS+= ${EXECINFO_LDFLAGS} +LIBS+= -lexecinfo + OPTIONS_DEFINE= ASPELL ENCHANT HUNSPELL NLS OPTIONS_DEFAULT= HUNSPELL OPTIONS_SUB= yes diff --git a/print/lyx/distinfo b/print/lyx/distinfo index 298f78f4e8f..935fd82b6be 100644 --- a/print/lyx/distinfo +++ b/print/lyx/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1466497255 -SHA256 (lyx-2.1.5.tar.xz) = 2e677591aebdd484efb7d2920357f1358f9525ab1feaa59a63a8cf92b7ee2cf3 -SIZE (lyx-2.1.5.tar.xz) = 10361112 +TIMESTAMP = 1467034115 +SHA256 (lyx-2.2.0.tar.xz) = d867986870e3f7451f0d4512c60d9c3c7682da59c6c638f18b731f4ad3fa7c80 +SIZE (lyx-2.2.0.tar.xz) = 14640052 diff --git a/print/lyx/files/patch-config.h.in b/print/lyx/files/patch-config.h.in deleted file mode 100644 index b80fc1157bd..00000000000 --- a/print/lyx/files/patch-config.h.in +++ /dev/null @@ -1,14 +0,0 @@ -This change is required to use the C++ tr1 headers only with libstdc++, as they -are not in C++11. ---- config.h.in.orig 2013-10-20 20:37:35.000000000 +0300 -+++ config.h.in 2013-10-20 20:38:41.000000000 +0300 -@@ -353,7 +353,8 @@ - - // TR1 regex not supported in GCC <= 4.5 - #ifndef LYX_USE_TR1 --# if __GNUC__ == 4 -+# include <ciso646> -+# if __GNUC__ == 4 && !defined(_LIBCPP_VERSION) - # define LYX_USE_TR1 - # endif - #endif diff --git a/print/lyx/files/patch-src__support__os_unix.cpp b/print/lyx/files/patch-src__support__os_unix.cpp deleted file mode 100644 index 493680db46c..00000000000 --- a/print/lyx/files/patch-src__support__os_unix.cpp +++ /dev/null @@ -1,15 +0,0 @@ -Build fix, at least building with libc++ fails because LC_ALL is not defined if -locale.h is not included. - -Submitted upstream: http://article.gmane.org/gmane.editors.lyx.devel/152732 ---- src/support/os_unix.cpp -+++ src/support/os_unix.cpp -@@ -23,6 +23,7 @@ - #include "support/lassert.h" - - #include <limits.h> -+#include <locale.h> - #include <stdlib.h> - - #ifdef __APPLE__ - diff --git a/print/lyx/pkg-plist b/print/lyx/pkg-plist index a9bf3f1140d..92d08baf8b1 100644 --- a/print/lyx/pkg-plist +++ b/print/lyx/pkg-plist @@ -41,6 +41,7 @@ share/applications/lyx.desktop share/icons/hicolor/48x48/apps/lyx.png share/icons/hicolor/scalable/apps/lyx.svg %%DATADIR%%/CREDITS +%%DATADIR%%/RELEASE-NOTES %%DATADIR%%/autocorrect %%DATADIR%%/bind/aqua.bind %%DATADIR%%/bind/broadway.bind @@ -80,31 +81,31 @@ share/icons/hicolor/scalable/apps/lyx.svg %%DATADIR%%/doc/biblio/alphadin.bst %%DATADIR%%/doc/ca/Intro.lyx %%DATADIR%%/doc/clipart/Abstract.pdf -%%DATADIR%%/doc/clipart/BoxInsetDefaultQt4.png +%%DATADIR%%/doc/clipart/BoxInsetDefault.png %%DATADIR%%/doc/clipart/ChangesToolbar.png -%%DATADIR%%/doc/clipart/ChildDocumentQt4.png -%%DATADIR%%/doc/clipart/CommentNoteImageQt4.png +%%DATADIR%%/doc/clipart/ChildDocument.png +%%DATADIR%%/doc/clipart/CommentNoteImage.png %%DATADIR%%/doc/clipart/ERT.png -%%DATADIR%%/doc/clipart/ExternalMaterialQt4.png +%%DATADIR%%/doc/clipart/ExternalMaterial.png %%DATADIR%%/doc/clipart/ExtraToolbar.png -%%DATADIR%%/doc/clipart/GreyedOutNoteImageQt4.png -%%DATADIR%%/doc/clipart/LaTeX.png -%%DATADIR%%/doc/clipart/LyXNoteImageQt4.png +%%DATADIR%%/doc/clipart/GreyedOutNoteImage.png +%%DATADIR%%/doc/clipart/LyXNoteImage.png %%DATADIR%%/doc/clipart/MacroToolbar.png +%%DATADIR%%/doc/clipart/SVG-Drawing.svg %%DATADIR%%/doc/clipart/SpaceMarker.png %%DATADIR%%/doc/clipart/StandardToolbar.png %%DATADIR%%/doc/clipart/ToolbarEnvBox.png %%DATADIR%%/doc/clipart/ViewToolbar.png %%DATADIR%%/doc/clipart/endnotes.pdf %%DATADIR%%/doc/clipart/escher-lsd.eps -%%DATADIR%%/doc/clipart/floatQt4.png -%%DATADIR%%/doc/clipart/footnoteQt4.png -%%DATADIR%%/doc/clipart/labelQt4.png +%%DATADIR%%/doc/clipart/float.png +%%DATADIR%%/doc/clipart/footnote.png +%%DATADIR%%/doc/clipart/label.png %%DATADIR%%/doc/clipart/macrobox.png %%DATADIR%%/doc/clipart/macrouse.png %%DATADIR%%/doc/clipart/mobius.eps %%DATADIR%%/doc/clipart/platypus.eps -%%DATADIR%%/doc/clipart/referenceQt4.png +%%DATADIR%%/doc/clipart/reference.png %%DATADIR%%/doc/clipart/with_fntright.pdf %%DATADIR%%/doc/clipart/without_fntright.pdf %%DATADIR%%/doc/cs/Tutorial.lyx @@ -122,16 +123,16 @@ share/icons/hicolor/scalable/apps/lyx.svg %%DATADIR%%/doc/de/Tutorial.lyx %%DATADIR%%/doc/de/UserGuide.lyx %%DATADIR%%/doc/de/clipart/ERT.png -%%DATADIR%%/doc/de/clipart/ExternesMaterialQt4.png -%%DATADIR%%/doc/de/clipart/FussnoteQt4.png -%%DATADIR%%/doc/de/clipart/GleitobjektQt4.png -%%DATADIR%%/doc/de/clipart/GrauschriftNotizQt4.png -%%DATADIR%%/doc/de/clipart/KommentarQt4.png -%%DATADIR%%/doc/de/clipart/LyXNotizQt4.png +%%DATADIR%%/doc/de/clipart/ExternesMaterial.png +%%DATADIR%%/doc/de/clipart/Fussnote.png +%%DATADIR%%/doc/de/clipart/Gleitobjekt.png +%%DATADIR%%/doc/de/clipart/GrauschriftNotiz.png +%%DATADIR%%/doc/de/clipart/Kommentar.png +%%DATADIR%%/doc/de/clipart/LyXNotiz.png %%DATADIR%%/doc/de/clipart/Marke.png %%DATADIR%%/doc/de/clipart/Querverweis.png -%%DATADIR%%/doc/de/clipart/StandardBoxQt4.png -%%DATADIR%%/doc/de/clipart/UnterdokumentQt4.png +%%DATADIR%%/doc/de/clipart/StandardBox.png +%%DATADIR%%/doc/de/clipart/Unterdokument.png %%DATADIR%%/doc/de/clipart/Zusammenfassung.pdf %%DATADIR%%/doc/el/Intro.lyx %%DATADIR%%/doc/es/Additional.lyx @@ -146,19 +147,20 @@ share/icons/hicolor/scalable/apps/lyx.svg %%DATADIR%%/doc/es/Shortcuts.lyx %%DATADIR%%/doc/es/Tutorial.lyx %%DATADIR%%/doc/es/UserGuide.lyx -%%DATADIR%%/doc/es/clipart/ComentNotaImagenQt4.png -%%DATADIR%%/doc/es/clipart/CuadroMinipagQt4.png -%%DATADIR%%/doc/es/clipart/DocumentoHijoQt4.png -%%DATADIR%%/doc/es/clipart/GrisNotaImagenQt4.png -%%DATADIR%%/doc/es/clipart/MaterialExternoQt4.png -%%DATADIR%%/doc/es/clipart/NotaLyXImagenQt4.png +%%DATADIR%%/doc/es/clipart/ComentNotaImagen.png +%%DATADIR%%/doc/es/clipart/CuadroMinipagina.png +%%DATADIR%%/doc/es/clipart/DocumentoHijo.png +%%DATADIR%%/doc/es/clipart/GrisNotaImagen.png +%%DATADIR%%/doc/es/clipart/MaterialExterno.png +%%DATADIR%%/doc/es/clipart/NotaLyXImagen.png %%DATADIR%%/doc/es/clipart/Resumen.pdf %%DATADIR%%/doc/es/clipart/es_ERT.png +%%DATADIR%%/doc/es/clipart/es_StandardToolbar.png %%DATADIR%%/doc/es/clipart/es_ToolbarEnvBox.png -%%DATADIR%%/doc/es/clipart/etiquetaQt4.png -%%DATADIR%%/doc/es/clipart/flotanteQt4.png -%%DATADIR%%/doc/es/clipart/notapieQt4.png -%%DATADIR%%/doc/es/clipart/referenciaQt4.png +%%DATADIR%%/doc/es/clipart/etiqueta.png +%%DATADIR%%/doc/es/clipart/flotante.png +%%DATADIR%%/doc/es/clipart/notapie.png +%%DATADIR%%/doc/es/clipart/referencia.png %%DATADIR%%/doc/eu/Intro.lyx %%DATADIR%%/doc/eu/Tutorial.lyx %%DATADIR%%/doc/fr/Additional.lyx @@ -173,15 +175,15 @@ share/icons/hicolor/scalable/apps/lyx.svg %%DATADIR%%/doc/fr/Shortcuts.lyx %%DATADIR%%/doc/fr/Tutorial.lyx %%DATADIR%%/doc/fr/UserGuide.lyx -%%DATADIR%%/doc/fr/clipart/BoxInsetDefaultQt4.png -%%DATADIR%%/doc/fr/clipart/ChildDocumentQt4.png -%%DATADIR%%/doc/fr/clipart/CommentNoteImageQt4.png +%%DATADIR%%/doc/fr/clipart/BoxInsetDefault.png +%%DATADIR%%/doc/fr/clipart/CommentNoteImage.png %%DATADIR%%/doc/fr/clipart/ERT.png -%%DATADIR%%/doc/fr/clipart/GreyedOutNoteImageQt4.png -%%DATADIR%%/doc/fr/clipart/LyXNoteImageQt4.png -%%DATADIR%%/doc/fr/clipart/floatQt4.png -%%DATADIR%%/doc/fr/clipart/footnoteQt4.png -%%DATADIR%%/doc/fr/clipart/labelQt4.png +%%DATADIR%%/doc/fr/clipart/GreyedOutNoteImage.png +%%DATADIR%%/doc/fr/clipart/LyXNoteImage.png +%%DATADIR%%/doc/fr/clipart/SousDocument.png +%%DATADIR%%/doc/fr/clipart/float.png +%%DATADIR%%/doc/fr/clipart/footnote.png +%%DATADIR%%/doc/fr/clipart/label.png %%DATADIR%%/doc/gl/Intro.lyx %%DATADIR%%/doc/gl/Tutorial.lyx %%DATADIR%%/doc/he/Intro.lyx @@ -191,14 +193,13 @@ share/icons/hicolor/scalable/apps/lyx.svg %%DATADIR%%/doc/id/Intro.lyx %%DATADIR%%/doc/id/Shortcuts.lyx %%DATADIR%%/doc/id/Tutorial.lyx -%%DATADIR%%/doc/id/UserGuide.lyx %%DATADIR%%/doc/id/clipart/id-contrib.png %%DATADIR%%/doc/id/clipart/id-footnote.png %%DATADIR%%/doc/id/clipart/id-lingkungan.png %%DATADIR%%/doc/it/Intro.lyx %%DATADIR%%/doc/it/Tutorial.lyx -%%DATADIR%%/doc/it/clipart/it_footnoteQt4.png -%%DATADIR%%/doc/it/clipart/it_referenceQt4.png +%%DATADIR%%/doc/it/clipart/it_footnote.png +%%DATADIR%%/doc/it/clipart/it_reference.png %%DATADIR%%/doc/ja/Additional.lyx %%DATADIR%%/doc/ja/Customization.lyx %%DATADIR%%/doc/ja/DummyDocument1.lyx @@ -211,21 +212,22 @@ share/icons/hicolor/scalable/apps/lyx.svg %%DATADIR%%/doc/ja/Shortcuts.lyx %%DATADIR%%/doc/ja/Tutorial.lyx %%DATADIR%%/doc/ja/UserGuide.lyx -%%DATADIR%%/doc/ja/clipart/BoxInsetDefaultQt4.png -%%DATADIR%%/doc/ja/clipart/ChildDocumentQt4.png -%%DATADIR%%/doc/ja/clipart/CommentNoteImageQt4.png +%%DATADIR%%/doc/ja/clipart/BoxInsetDefault.png +%%DATADIR%%/doc/ja/clipart/ChildDocument.png +%%DATADIR%%/doc/ja/clipart/CommentNoteImage.png %%DATADIR%%/doc/ja/clipart/ERT.png -%%DATADIR%%/doc/ja/clipart/ExternalMaterialQt4.png -%%DATADIR%%/doc/ja/clipart/GreyedOutNoteImageQt4.png -%%DATADIR%%/doc/ja/clipart/LyXNoteImageQt4.png +%%DATADIR%%/doc/ja/clipart/ExternalMaterial.png +%%DATADIR%%/doc/ja/clipart/GreyedOutNoteImage.png +%%DATADIR%%/doc/ja/clipart/LyXNoteImage.png %%DATADIR%%/doc/ja/clipart/StandardToolbar.png %%DATADIR%%/doc/ja/clipart/ToolbarEnvBox.png -%%DATADIR%%/doc/ja/clipart/floatQt4.png -%%DATADIR%%/doc/ja/clipart/footnoteQt4.png -%%DATADIR%%/doc/ja/clipart/labelQt4.png +%%DATADIR%%/doc/ja/clipart/float.png +%%DATADIR%%/doc/ja/clipart/footnote.png +%%DATADIR%%/doc/ja/clipart/label.png %%DATADIR%%/doc/ja/clipart/macrobox.png -%%DATADIR%%/doc/ja/clipart/referenceQt4.png +%%DATADIR%%/doc/ja/clipart/reference.png %%DATADIR%%/doc/nb/Intro.lyx +%%DATADIR%%/doc/nb/Tutorial.lyx %%DATADIR%%/doc/nl/Intro.lyx %%DATADIR%%/doc/nl/Tutorial.lyx %%DATADIR%%/doc/pl/Intro.lyx @@ -243,7 +245,7 @@ share/icons/hicolor/scalable/apps/lyx.svg %%DATADIR%%/doc/sv/Shortcuts.lyx %%DATADIR%%/doc/sv/Tutorial.lyx %%DATADIR%%/doc/uk/Intro.lyx -%%DATADIR%%/doc/uk/clipart/FootnoteQT4.png +%%DATADIR%%/doc/uk/clipart/Footnote.png %%DATADIR%%/doc/zh_CN/Intro.lyx %%DATADIR%%/doc/zh_CN/Tutorial.lyx %%DATADIR%%/encodings @@ -252,6 +254,7 @@ share/icons/hicolor/scalable/apps/lyx.svg %%DATADIR%%/examples/CV-image.png %%DATADIR%%/examples/FeynmanDiagrams.lyx %%DATADIR%%/examples/Foils.lyx +%%DATADIR%%/examples/H-P-statements.lyx %%DATADIR%%/examples/ItemizeBullets.lyx %%DATADIR%%/examples/Literate.lyx %%DATADIR%%/examples/MultilingualCaptions.lyx @@ -285,6 +288,7 @@ share/icons/hicolor/scalable/apps/lyx.svg %%DATADIR%%/examples/ca/splash.lyx %%DATADIR%%/examples/chess-article.lyx %%DATADIR%%/examples/chessgame.lyx +%%DATADIR%%/examples/colored-boxes.lyx %%DATADIR%%/examples/cs/priklad_syrovy.lyx %%DATADIR%%/examples/cs/priklad_zLyXovany.lyx %%DATADIR%%/examples/cs/splash.lyx @@ -300,6 +304,7 @@ share/icons/hicolor/scalable/apps/lyx.svg %%DATADIR%%/examples/de/beamer.lyx %%DATADIR%%/examples/de/beispiel_gelyxt.lyx %%DATADIR%%/examples/de/beispiel_roh.lyx +%%DATADIR%%/examples/de/europassCV.lyx %%DATADIR%%/examples/de/linguistics.lyx %%DATADIR%%/examples/de/serienbrief1.lyx %%DATADIR%%/examples/de/serienbrief2.lyx @@ -321,6 +326,7 @@ share/icons/hicolor/scalable/apps/lyx.svg %%DATADIR%%/examples/eu/adibide_gordina.lyx %%DATADIR%%/examples/eu/adibide_lyx-atua.lyx %%DATADIR%%/examples/eu/splash.lyx +%%DATADIR%%/examples/europassCV.lyx %%DATADIR%%/examples/europeCV.lyx %%DATADIR%%/examples/example_lyxified.lyx %%DATADIR%%/examples/example_raw.lyx @@ -380,14 +386,19 @@ share/icons/hicolor/scalable/apps/lyx.svg %%DATADIR%%/examples/localization_test.lyx %%DATADIR%%/examples/longsheet.gnumeric %%DATADIR%%/examples/modernCV.lyx +%%DATADIR%%/examples/nb/eksempel_lyxet.lyx +%%DATADIR%%/examples/nb/eksempel_txt.lyx +%%DATADIR%%/examples/nb/splash.lyx %%DATADIR%%/examples/nl/opsommingstekens.lyx %%DATADIR%%/examples/nl/splash.lyx %%DATADIR%%/examples/nl/voorbeeld_ruw.lyx %%DATADIR%%/examples/nl/voorbeeld_verlyxt.lyx %%DATADIR%%/examples/noweb2lyx.lyx +%%DATADIR%%/examples/paralist.lyx %%DATADIR%%/examples/pl/splash.lyx %%DATADIR%%/examples/powerdot-example.lyx -%%DATADIR%%/examples/pt/splash.lyx +%%DATADIR%%/examples/pt_BR/splash.lyx +%%DATADIR%%/examples/pt_PT/splash.lyx %%DATADIR%%/examples/recipebook.lyx %%DATADIR%%/examples/ro/splash.lyx %%DATADIR%%/examples/ru/splash.lyx @@ -445,6 +456,8 @@ share/icons/hicolor/scalable/apps/lyx.svg %%DATADIR%%/examples/tufte-book.lyx %%DATADIR%%/examples/tufte-handout.lyx %%DATADIR%%/examples/uk/splash.lyx +%%DATADIR%%/examples/varwidth-floats-side-by-side.lyx +%%DATADIR%%/examples/xyfigure.lyx %%DATADIR%%/examples/xyfigure.png %%DATADIR%%/examples/xypic.lyx %%DATADIR%%/external_templates @@ -461,58 +474,60 @@ share/icons/hicolor/scalable/apps/lyx.svg %%DATADIR%%/fonts/rsfs10.ttf %%DATADIR%%/fonts/stmary10.ttf %%DATADIR%%/fonts/wasy10.ttf -%%DATADIR%%/images/all-changes-accept.png -%%DATADIR%%/images/all-changes-reject.png +%%DATADIR%%/images/all-changes-accept.svgz +%%DATADIR%%/images/all-changes-reject.svgz %%DATADIR%%/images/amssymb.png %%DATADIR%%/images/banner.png -%%DATADIR%%/images/bookmark-goto.png -%%DATADIR%%/images/bookmark-goto_0.png -%%DATADIR%%/images/bookmark-save.png -%%DATADIR%%/images/box-insert.png -%%DATADIR%%/images/break-line.png -%%DATADIR%%/images/buffer-close.png -%%DATADIR%%/images/buffer-export.png -%%DATADIR%%/images/buffer-export_dvi.png -%%DATADIR%%/images/buffer-export_dvi3.png -%%DATADIR%%/images/buffer-export_latex.png -%%DATADIR%%/images/buffer-export_pdf.png -%%DATADIR%%/images/buffer-export_pdf2.png -%%DATADIR%%/images/buffer-export_pdf3.png -%%DATADIR%%/images/buffer-export_pdf4.png -%%DATADIR%%/images/buffer-export_pdf5.png -%%DATADIR%%/images/buffer-export_ps.png -%%DATADIR%%/images/buffer-export_text.png -%%DATADIR%%/images/buffer-new.png -%%DATADIR%%/images/buffer-reload.png -%%DATADIR%%/images/buffer-toggle-output-sync.png -%%DATADIR%%/images/buffer-update.png -%%DATADIR%%/images/buffer-update_dvi.png -%%DATADIR%%/images/buffer-update_dvi3.png -%%DATADIR%%/images/buffer-update_pdf.png -%%DATADIR%%/images/buffer-update_pdf2.png -%%DATADIR%%/images/buffer-update_pdf3.png -%%DATADIR%%/images/buffer-update_pdf4.png -%%DATADIR%%/images/buffer-update_pdf5.png -%%DATADIR%%/images/buffer-update_ps.png -%%DATADIR%%/images/buffer-view.png -%%DATADIR%%/images/buffer-view_dvi.png -%%DATADIR%%/images/buffer-view_dvi3.png -%%DATADIR%%/images/buffer-view_pdf.png -%%DATADIR%%/images/buffer-view_pdf2.png -%%DATADIR%%/images/buffer-view_pdf3.png -%%DATADIR%%/images/buffer-view_pdf4.png -%%DATADIR%%/images/buffer-view_pdf5.png -%%DATADIR%%/images/buffer-view_ps.png -%%DATADIR%%/images/buffer-write-as.png -%%DATADIR%%/images/buffer-write.png -%%DATADIR%%/images/build-program.png +%%DATADIR%%/images/banner.svgz +%%DATADIR%%/images/banner@2x.png +%%DATADIR%%/images/bookmark-goto.svgz +%%DATADIR%%/images/bookmark-goto_0.svgz +%%DATADIR%%/images/bookmark-save.svgz +%%DATADIR%%/images/box-insert.svgz +%%DATADIR%%/images/break-line.svgz +%%DATADIR%%/images/buffer-close.svgz +%%DATADIR%%/images/buffer-export.svgz +%%DATADIR%%/images/buffer-export_dvi.svgz +%%DATADIR%%/images/buffer-export_dvi3.svgz +%%DATADIR%%/images/buffer-export_latex.svgz +%%DATADIR%%/images/buffer-export_pdf.svgz +%%DATADIR%%/images/buffer-export_pdf2.svgz +%%DATADIR%%/images/buffer-export_pdf3.svgz +%%DATADIR%%/images/buffer-export_pdf4.svgz +%%DATADIR%%/images/buffer-export_pdf5.svgz +%%DATADIR%%/images/buffer-export_ps.svgz +%%DATADIR%%/images/buffer-export_text.svgz +%%DATADIR%%/images/buffer-new.svgz +%%DATADIR%%/images/buffer-reload.svgz +%%DATADIR%%/images/buffer-toggle-output-sync.svgz +%%DATADIR%%/images/buffer-update.svgz +%%DATADIR%%/images/buffer-update_dvi.svgz +%%DATADIR%%/images/buffer-update_dvi3.svgz +%%DATADIR%%/images/buffer-update_pdf.svgz +%%DATADIR%%/images/buffer-update_pdf2.svgz +%%DATADIR%%/images/buffer-update_pdf3.svgz +%%DATADIR%%/images/buffer-update_pdf4.svgz +%%DATADIR%%/images/buffer-update_pdf5.svgz +%%DATADIR%%/images/buffer-update_ps.svgz +%%DATADIR%%/images/buffer-view.svgz +%%DATADIR%%/images/buffer-view_dvi.svgz +%%DATADIR%%/images/buffer-view_dvi3.svgz +%%DATADIR%%/images/buffer-view_pdf.svgz +%%DATADIR%%/images/buffer-view_pdf2.svgz +%%DATADIR%%/images/buffer-view_pdf3.svgz +%%DATADIR%%/images/buffer-view_pdf4.svgz +%%DATADIR%%/images/buffer-view_pdf5.svgz +%%DATADIR%%/images/buffer-view_ps.svgz +%%DATADIR%%/images/buffer-write-as.svgz +%%DATADIR%%/images/buffer-write.svgz +%%DATADIR%%/images/build-program.svgz %%DATADIR%%/images/busy.gif -%%DATADIR%%/images/change-accept.png -%%DATADIR%%/images/change-next.png -%%DATADIR%%/images/change-reject.png -%%DATADIR%%/images/changes-merge.png -%%DATADIR%%/images/changes-output.png -%%DATADIR%%/images/changes-track.png +%%DATADIR%%/images/change-accept.svgz +%%DATADIR%%/images/change-next.svgz +%%DATADIR%%/images/change-reject.svgz +%%DATADIR%%/images/changes-merge.svgz +%%DATADIR%%/images/changes-output.svgz +%%DATADIR%%/images/changes-track.svgz %%DATADIR%%/images/classic/all-changes-accept.png %%DATADIR%%/images/classic/all-changes-reject.png %%DATADIR%%/images/classic/bookmark-goto.png @@ -564,7 +579,6 @@ share/icons/hicolor/scalable/apps/lyx.svg %%DATADIR%%/images/classic/changes-track.png %%DATADIR%%/images/classic/copy.png %%DATADIR%%/images/classic/cut.png -%%DATADIR%%/images/classic/demote.png %%DATADIR%%/images/classic/depth-decrement.png %%DATADIR%%/images/classic/depth-increment.png %%DATADIR%%/images/classic/dialog-preferences.png @@ -628,8 +642,11 @@ share/icons/hicolor/scalable/apps/lyx.svg %%DATADIR%%/images/classic/nomencl-insert.png %%DATADIR%%/images/classic/note-insert.png %%DATADIR%%/images/classic/note-next.png +%%DATADIR%%/images/classic/outline-down.png +%%DATADIR%%/images/classic/outline-in.png +%%DATADIR%%/images/classic/outline-out.png +%%DATADIR%%/images/classic/outline-up.png %%DATADIR%%/images/classic/paste.png -%%DATADIR%%/images/classic/promote.png %%DATADIR%%/images/classic/redo.png %%DATADIR%%/images/classic/reload.png %%DATADIR%%/images/classic/script-insert_subscript.png @@ -682,1260 +699,1280 @@ share/icons/hicolor/scalable/apps/lyx.svg %%DATADIR%%/images/classic/view-others.png %%DATADIR%%/images/classic/view-split_horizontal.png %%DATADIR%%/images/classic/view-split_vertical.png -%%DATADIR%%/images/closetab.png -%%DATADIR%%/images/copy.png -%%DATADIR%%/images/cut.png -%%DATADIR%%/images/demote.png -%%DATADIR%%/images/depth-decrement.png -%%DATADIR%%/images/depth-increment.png -%%DATADIR%%/images/dialog-preferences.png -%%DATADIR%%/images/dialog-show-new-inset_citation.png -%%DATADIR%%/images/dialog-show-new-inset_graphics.png -%%DATADIR%%/images/dialog-show-new-inset_include.png -%%DATADIR%%/images/dialog-show-new-inset_ref.png -%%DATADIR%%/images/dialog-show_character.png -%%DATADIR%%/images/dialog-show_findreplace.png -%%DATADIR%%/images/dialog-show_mathdelimiter.png -%%DATADIR%%/images/dialog-show_mathmatrix.png -%%DATADIR%%/images/dialog-show_print.png -%%DATADIR%%/images/dialog-show_spellchecker.png -%%DATADIR%%/images/dialog-show_vclog.png -%%DATADIR%%/images/dialog-toggle_findreplaceadv.png -%%DATADIR%%/images/dialog-toggle_toc.png -%%DATADIR%%/images/down.png -%%DATADIR%%/images/editclear.png -%%DATADIR%%/images/ert-insert.png -%%DATADIR%%/images/file-open.png -%%DATADIR%%/images/float-insert_figure.png -%%DATADIR%%/images/float-insert_table.png -%%DATADIR%%/images/font-bold.png -%%DATADIR%%/images/font-emph.png -%%DATADIR%%/images/font-noun.png -%%DATADIR%%/images/font-sans.png -%%DATADIR%%/images/footnote-insert.png -%%DATADIR%%/images/hidetab.png -%%DATADIR%%/images/href-insert.png -%%DATADIR%%/images/index-insert.png -%%DATADIR%%/images/info-insert_buffer_vcs-revision.png -%%DATADIR%%/images/ipa/ipamacro-insert_deco_bottomtiebar.png -%%DATADIR%%/images/ipa/ipamacro-insert_deco_toptiebar.png -%%DATADIR%%/images/ipa/ipamacro-insert_tone-falling.png -%%DATADIR%%/images/ipa/ipamacro-insert_tone-high-rising-falling.png -%%DATADIR%%/images/ipa/ipamacro-insert_tone-high-rising.png -%%DATADIR%%/images/ipa/ipamacro-insert_tone-low-rising.png -%%DATADIR%%/images/ipa/ipamacro-insert_tone-rising.png -%%DATADIR%%/images/ipa/unicode-insert_0x002e.png -%%DATADIR%%/images/ipa/unicode-insert_0x0061.png -%%DATADIR%%/images/ipa/unicode-insert_0x0062.png -%%DATADIR%%/images/ipa/unicode-insert_0x0063.png -%%DATADIR%%/images/ipa/unicode-insert_0x0064.png -%%DATADIR%%/images/ipa/unicode-insert_0x0065.png -%%DATADIR%%/images/ipa/unicode-insert_0x0066.png -%%DATADIR%%/images/ipa/unicode-insert_0x0068.png -%%DATADIR%%/images/ipa/unicode-insert_0x0069.png -%%DATADIR%%/images/ipa/unicode-insert_0x006b.png -%%DATADIR%%/images/ipa/unicode-insert_0x006c.png -%%DATADIR%%/images/ipa/unicode-insert_0x006d.png -%%DATADIR%%/images/ipa/unicode-insert_0x006e.png -%%DATADIR%%/images/ipa/unicode-insert_0x006f.png -%%DATADIR%%/images/ipa/unicode-insert_0x0070.png -%%DATADIR%%/images/ipa/unicode-insert_0x0071.png -%%DATADIR%%/images/ipa/unicode-insert_0x0072.png -%%DATADIR%%/images/ipa/unicode-insert_0x0073.png -%%DATADIR%%/images/ipa/unicode-insert_0x0074.png -%%DATADIR%%/images/ipa/unicode-insert_0x0075.png -%%DATADIR%%/images/ipa/unicode-insert_0x0076.png -%%DATADIR%%/images/ipa/unicode-insert_0x0077.png -%%DATADIR%%/images/ipa/unicode-insert_0x0078.png -%%DATADIR%%/images/ipa/unicode-insert_0x0079.png -%%DATADIR%%/images/ipa/unicode-insert_0x007a.png -%%DATADIR%%/images/ipa/unicode-insert_0x007c.png -%%DATADIR%%/images/ipa/unicode-insert_0x00e6.png -%%DATADIR%%/images/ipa/unicode-insert_0x00e7.png -%%DATADIR%%/images/ipa/unicode-insert_0x00f0.png -%%DATADIR%%/images/ipa/unicode-insert_0x00f8.png -%%DATADIR%%/images/ipa/unicode-insert_0x0127.png -%%DATADIR%%/images/ipa/unicode-insert_0x014b.png -%%DATADIR%%/images/ipa/unicode-insert_0x0153.png -%%DATADIR%%/images/ipa/unicode-insert_0x01c0.png -%%DATADIR%%/images/ipa/unicode-insert_0x01c1.png -%%DATADIR%%/images/ipa/unicode-insert_0x01c2.png -%%DATADIR%%/images/ipa/unicode-insert_0x01c3.png -%%DATADIR%%/images/ipa/unicode-insert_0x0250.png -%%DATADIR%%/images/ipa/unicode-insert_0x0251.png -%%DATADIR%%/images/ipa/unicode-insert_0x0252.png -%%DATADIR%%/images/ipa/unicode-insert_0x0253.png -%%DATADIR%%/images/ipa/unicode-insert_0x0254.png -%%DATADIR%%/images/ipa/unicode-insert_0x0255.png -%%DATADIR%%/images/ipa/unicode-insert_0x0256.png -%%DATADIR%%/images/ipa/unicode-insert_0x0257.png -%%DATADIR%%/images/ipa/unicode-insert_0x0258.png -%%DATADIR%%/images/ipa/unicode-insert_0x0259.png -%%DATADIR%%/images/ipa/unicode-insert_0x025b.png -%%DATADIR%%/images/ipa/unicode-insert_0x025c.png -%%DATADIR%%/images/ipa/unicode-insert_0x025e.png -%%DATADIR%%/images/ipa/unicode-insert_0x025f.png -%%DATADIR%%/images/ipa/unicode-insert_0x0260.png -%%DATADIR%%/images/ipa/unicode-insert_0x0261.png -%%DATADIR%%/images/ipa/unicode-insert_0x0262.png -%%DATADIR%%/images/ipa/unicode-insert_0x0263.png -%%DATADIR%%/images/ipa/unicode-insert_0x0264.png -%%DATADIR%%/images/ipa/unicode-insert_0x0265.png -%%DATADIR%%/images/ipa/unicode-insert_0x0266.png -%%DATADIR%%/images/ipa/unicode-insert_0x0267.png -%%DATADIR%%/images/ipa/unicode-insert_0x0268.png -%%DATADIR%%/images/ipa/unicode-insert_0x026a.png -%%DATADIR%%/images/ipa/unicode-insert_0x026c.png -%%DATADIR%%/images/ipa/unicode-insert_0x026d.png -%%DATADIR%%/images/ipa/unicode-insert_0x026e.png -%%DATADIR%%/images/ipa/unicode-insert_0x026f.png -%%DATADIR%%/images/ipa/unicode-insert_0x0270.png -%%DATADIR%%/images/ipa/unicode-insert_0x0271.png -%%DATADIR%%/images/ipa/unicode-insert_0x0272.png -%%DATADIR%%/images/ipa/unicode-insert_0x0273.png -%%DATADIR%%/images/ipa/unicode-insert_0x0274.png -%%DATADIR%%/images/ipa/unicode-insert_0x0275.png -%%DATADIR%%/images/ipa/unicode-insert_0x0276.png -%%DATADIR%%/images/ipa/unicode-insert_0x0278.png -%%DATADIR%%/images/ipa/unicode-insert_0x0279.png -%%DATADIR%%/images/ipa/unicode-insert_0x027a.png -%%DATADIR%%/images/ipa/unicode-insert_0x027b.png -%%DATADIR%%/images/ipa/unicode-insert_0x027d.png -%%DATADIR%%/images/ipa/unicode-insert_0x027e.png -%%DATADIR%%/images/ipa/unicode-insert_0x0280.png -%%DATADIR%%/images/ipa/unicode-insert_0x0281.png -%%DATADIR%%/images/ipa/unicode-insert_0x0282.png -%%DATADIR%%/images/ipa/unicode-insert_0x0283.png -%%DATADIR%%/images/ipa/unicode-insert_0x0284.png -%%DATADIR%%/images/ipa/unicode-insert_0x0288.png -%%DATADIR%%/images/ipa/unicode-insert_0x0289.png -%%DATADIR%%/images/ipa/unicode-insert_0x028a.png -%%DATADIR%%/images/ipa/unicode-insert_0x028b.png -%%DATADIR%%/images/ipa/unicode-insert_0x028c.png -%%DATADIR%%/images/ipa/unicode-insert_0x028d.png -%%DATADIR%%/images/ipa/unicode-insert_0x028e.png -%%DATADIR%%/images/ipa/unicode-insert_0x028f.png -%%DATADIR%%/images/ipa/unicode-insert_0x0290.png -%%DATADIR%%/images/ipa/unicode-insert_0x0291.png -%%DATADIR%%/images/ipa/unicode-insert_0x0292.png -%%DATADIR%%/images/ipa/unicode-insert_0x0294.png -%%DATADIR%%/images/ipa/unicode-insert_0x0295.png -%%DATADIR%%/images/ipa/unicode-insert_0x0298.png -%%DATADIR%%/images/ipa/unicode-insert_0x0299.png -%%DATADIR%%/images/ipa/unicode-insert_0x029b.png -%%DATADIR%%/images/ipa/unicode-insert_0x029c.png -%%DATADIR%%/images/ipa/unicode-insert_0x029d.png -%%DATADIR%%/images/ipa/unicode-insert_0x029f.png -%%DATADIR%%/images/ipa/unicode-insert_0x02a1.png -%%DATADIR%%/images/ipa/unicode-insert_0x02a2.png -%%DATADIR%%/images/ipa/unicode-insert_0x02b0.png -%%DATADIR%%/images/ipa/unicode-insert_0x02b2.png -%%DATADIR%%/images/ipa/unicode-insert_0x02b7.png -%%DATADIR%%/images/ipa/unicode-insert_0x02bc.png -%%DATADIR%%/images/ipa/unicode-insert_0x02c8.png -%%DATADIR%%/images/ipa/unicode-insert_0x02cc.png -%%DATADIR%%/images/ipa/unicode-insert_0x02d0.png -%%DATADIR%%/images/ipa/unicode-insert_0x02d1.png -%%DATADIR%%/images/ipa/unicode-insert_0x02de.png -%%DATADIR%%/images/ipa/unicode-insert_0x02e0.png -%%DATADIR%%/images/ipa/unicode-insert_0x02e1.png -%%DATADIR%%/images/ipa/unicode-insert_0x02e4.png -%%DATADIR%%/images/ipa/unicode-insert_0x02e5.png -%%DATADIR%%/images/ipa/unicode-insert_0x02e6.png -%%DATADIR%%/images/ipa/unicode-insert_0x02e7.png -%%DATADIR%%/images/ipa/unicode-insert_0x02e8.png -%%DATADIR%%/images/ipa/unicode-insert_0x02e9.png -%%DATADIR%%/images/ipa/unicode-insert_0x02fa.png -%%DATADIR%%/images/ipa/unicode-insert_0x0300.png -%%DATADIR%%/images/ipa/unicode-insert_0x0301.png -%%DATADIR%%/images/ipa/unicode-insert_0x0302.png -%%DATADIR%%/images/ipa/unicode-insert_0x0303.png -%%DATADIR%%/images/ipa/unicode-insert_0x0304.png -%%DATADIR%%/images/ipa/unicode-insert_0x0306.png -%%DATADIR%%/images/ipa/unicode-insert_0x0308.png -%%DATADIR%%/images/ipa/unicode-insert_0x030a.png -%%DATADIR%%/images/ipa/unicode-insert_0x030b.png -%%DATADIR%%/images/ipa/unicode-insert_0x030c.png -%%DATADIR%%/images/ipa/unicode-insert_0x030f.png -%%DATADIR%%/images/ipa/unicode-insert_0x0318.png -%%DATADIR%%/images/ipa/unicode-insert_0x0319.png -%%DATADIR%%/images/ipa/unicode-insert_0x031c.png -%%DATADIR%%/images/ipa/unicode-insert_0x031d.png -%%DATADIR%%/images/ipa/unicode-insert_0x031e.png -%%DATADIR%%/images/ipa/unicode-insert_0x031f.png -%%DATADIR%%/images/ipa/unicode-insert_0x0320.png -%%DATADIR%%/images/ipa/unicode-insert_0x0324.png -%%DATADIR%%/images/ipa/unicode-insert_0x0325.png -%%DATADIR%%/images/ipa/unicode-insert_0x0329.png -%%DATADIR%%/images/ipa/unicode-insert_0x032a.png -%%DATADIR%%/images/ipa/unicode-insert_0x032c.png -%%DATADIR%%/images/ipa/unicode-insert_0x032f.png -%%DATADIR%%/images/ipa/unicode-insert_0x0330.png -%%DATADIR%%/images/ipa/unicode-insert_0x0334.png -%%DATADIR%%/images/ipa/unicode-insert_0x0339.png -%%DATADIR%%/images/ipa/unicode-insert_0x033a.png -%%DATADIR%%/images/ipa/unicode-insert_0x033b.png -%%DATADIR%%/images/ipa/unicode-insert_0x033c.png -%%DATADIR%%/images/ipa/unicode-insert_0x033d.png -%%DATADIR%%/images/ipa/unicode-insert_0x03b2.png -%%DATADIR%%/images/ipa/unicode-insert_0x03b8.png -%%DATADIR%%/images/ipa/unicode-insert_0x03c7.png -%%DATADIR%%/images/ipa/unicode-insert_0x1dc4.png -%%DATADIR%%/images/ipa/unicode-insert_0x1dc5.png -%%DATADIR%%/images/ipa/unicode-insert_0x1dc8.png -%%DATADIR%%/images/ipa/unicode-insert_0x2016.png -%%DATADIR%%/images/ipa/unicode-insert_0x203f.png -%%DATADIR%%/images/ipa/unicode-insert_0x207f.png -%%DATADIR%%/images/ipa/unicode-insert_0x2197.png -%%DATADIR%%/images/ipa/unicode-insert_0x2198.png -%%DATADIR%%/images/ipa/unicode-insert_0x2c71.png -%%DATADIR%%/images/ipa/unicode-insert_0xa71b.png -%%DATADIR%%/images/ipa/unicode-insert_0xa71c.png -%%DATADIR%%/images/label-insert.png -%%DATADIR%%/images/layout-document.png -%%DATADIR%%/images/layout-paragraph.png -%%DATADIR%%/images/layout.png -%%DATADIR%%/images/layout_Chunk.png -%%DATADIR%%/images/layout_Description.png -%%DATADIR%%/images/layout_Enumerate.png -%%DATADIR%%/images/layout_Itemize.png -%%DATADIR%%/images/layout_List.png -%%DATADIR%%/images/layout_LyX-Code.png -%%DATADIR%%/images/layout_Section.png -%%DATADIR%%/images/lyx-quit.png -%%DATADIR%%/images/marginalnote-insert.png -%%DATADIR%%/images/master-buffer-update.png -%%DATADIR%%/images/master-buffer-view.png -%%DATADIR%%/images/math-display.png -%%DATADIR%%/images/math-macro-add-greedy-optional-param.png -%%DATADIR%%/images/math-macro-add-optional-param.png -%%DATADIR%%/images/math-macro-add-param.png -%%DATADIR%%/images/math-macro-append-greedy-param.png -%%DATADIR%%/images/math-macro-make-nonoptional.png -%%DATADIR%%/images/math-macro-make-optional.png -%%DATADIR%%/images/math-macro-remove-greedy-param.png -%%DATADIR%%/images/math-macro-remove-optional-param.png -%%DATADIR%%/images/math-macro-remove-param.png -%%DATADIR%%/images/math-macro_newmacroname_newcommand.png -%%DATADIR%%/images/math-matrix.png -%%DATADIR%%/images/math-mode.png -%%DATADIR%%/images/math-subscript.png -%%DATADIR%%/images/math-superscript.png -%%DATADIR%%/images/math/AC.png -%%DATADIR%%/images/math/APLbox.png -%%DATADIR%%/images/math/APLcomment.png -%%DATADIR%%/images/math/APLdown.png -%%DATADIR%%/images/math/APLdownarrowbox.png -%%DATADIR%%/images/math/APLinput.png -%%DATADIR%%/images/math/APLinv.png -%%DATADIR%%/images/math/APLleftarrowbox.png -%%DATADIR%%/images/math/APLlog.png -%%DATADIR%%/images/math/APLrightarrowbox.png -%%DATADIR%%/images/math/APLstar.png -%%DATADIR%%/images/math/APLup.png -%%DATADIR%%/images/math/APLuparrowbox.png -%%DATADIR%%/images/math/Bbbk.png -%%DATADIR%%/images/math/Finv.png -%%DATADIR%%/images/math/Game.png -%%DATADIR%%/images/math/HF.png -%%DATADIR%%/images/math/Im.png -%%DATADIR%%/images/math/Lleftarrow.png -%%DATADIR%%/images/math/Lsh.png -%%DATADIR%%/images/math/Re.png -%%DATADIR%%/images/math/Rrightarrow.png -%%DATADIR%%/images/math/Rsh.png -%%DATADIR%%/images/math/VHF.png -%%DATADIR%%/images/math/Vvdash.png -%%DATADIR%%/images/math/Ydown.png -%%DATADIR%%/images/math/Yleft.png -%%DATADIR%%/images/math/Yright.png -%%DATADIR%%/images/math/Yup.png -%%DATADIR%%/images/math/acute.png -%%DATADIR%%/images/math/adots.png -%%DATADIR%%/images/math/agemO.png -%%DATADIR%%/images/math/aleph.png -%%DATADIR%%/images/math/alpha.png -%%DATADIR%%/images/math/amalg.png -%%DATADIR%%/images/math/angle.png -%%DATADIR%%/images/math/apprge.png -%%DATADIR%%/images/math/apprle.png -%%DATADIR%%/images/math/approx.png -%%DATADIR%%/images/math/approxeq.png -%%DATADIR%%/images/math/aquarius.png -%%DATADIR%%/images/math/aries.png -%%DATADIR%%/images/math/arrownot.png -%%DATADIR%%/images/math/arrownot2.png -%%DATADIR%%/images/math/arrowvert.png -%%DATADIR%%/images/math/arrowvert2.png -%%DATADIR%%/images/math/ascnode.png -%%DATADIR%%/images/math/ast.png -%%DATADIR%%/images/math/astrosun.png -%%DATADIR%%/images/math/asymp.png -%%DATADIR%%/images/math/ataribox.png -%%DATADIR%%/images/math/backepsilon.png -%%DATADIR%%/images/math/backprime.png -%%DATADIR%%/images/math/backsim.png -%%DATADIR%%/images/math/backsimeq.png -%%DATADIR%%/images/math/backslash.png -%%DATADIR%%/images/math/bar.png -%%DATADIR%%/images/math/baro.png -%%DATADIR%%/images/math/bars.png -%%DATADIR%%/images/math/barwedge.png -%%DATADIR%%/images/math/bbslash.png -%%DATADIR%%/images/math/bcancel.png -%%DATADIR%%/images/math/because.png -%%DATADIR%%/images/math/bell.png -%%DATADIR%%/images/math/beta.png -%%DATADIR%%/images/math/beth.png -%%DATADIR%%/images/math/between.png -%%DATADIR%%/images/math/bigbox.png -%%DATADIR%%/images/math/bigcap.png -%%DATADIR%%/images/math/bigcirc.png -%%DATADIR%%/images/math/bigcup.png -%%DATADIR%%/images/math/bigcurlyvee.png -%%DATADIR%%/images/math/bigcurlywedge.png -%%DATADIR%%/images/math/biginterleave.png -%%DATADIR%%/images/math/bignplus.png -%%DATADIR%%/images/math/bigodot.png -%%DATADIR%%/images/math/bigoplus.png -%%DATADIR%%/images/math/bigotimes.png -%%DATADIR%%/images/math/bigparallel.png -%%DATADIR%%/images/math/bigsqcap.png -%%DATADIR%%/images/math/bigsqcup.png -%%DATADIR%%/images/math/bigstar.png -%%DATADIR%%/images/math/bigtriangledown.png -%%DATADIR%%/images/math/bigtriangleup.png -%%DATADIR%%/images/math/biguplus.png -%%DATADIR%%/images/math/bigvee.png -%%DATADIR%%/images/math/bigwedge.png -%%DATADIR%%/images/math/binampersand.png -%%DATADIR%%/images/math/bindnasrepma.png -%%DATADIR%%/images/math/blacklozenge.png -%%DATADIR%%/images/math/blacksmiley.png -%%DATADIR%%/images/math/blacksquare.png -%%DATADIR%%/images/math/blacktriangle.png -%%DATADIR%%/images/math/blacktriangledown.png -%%DATADIR%%/images/math/blacktriangleleft.png -%%DATADIR%%/images/math/blacktriangleright.png -%%DATADIR%%/images/math/boldsymbol.png -%%DATADIR%%/images/math/bot.png -%%DATADIR%%/images/math/bowtie.png -%%DATADIR%%/images/math/bowtie2.png -%%DATADIR%%/images/math/box2.png -%%DATADIR%%/images/math/boxast.png -%%DATADIR%%/images/math/boxbar.png -%%DATADIR%%/images/math/boxbox.png -%%DATADIR%%/images/math/boxbslash.png -%%DATADIR%%/images/math/boxcircle.png -%%DATADIR%%/images/math/boxdot.png -%%DATADIR%%/images/math/boxempty.png -%%DATADIR%%/images/math/boxminus.png -%%DATADIR%%/images/math/boxplus.png -%%DATADIR%%/images/math/boxslash.png -%%DATADIR%%/images/math/boxtimes.png -%%DATADIR%%/images/math/breve.png -%%DATADIR%%/images/math/brokenvert.png -%%DATADIR%%/images/math/bullet.png -%%DATADIR%%/images/math/bumpeq.png -%%DATADIR%%/images/math/bumpeq2.png -%%DATADIR%%/images/math/cancel.png -%%DATADIR%%/images/math/cancelto.png -%%DATADIR%%/images/math/cancer.png -%%DATADIR%%/images/math/cap.png -%%DATADIR%%/images/math/cap2.png -%%DATADIR%%/images/math/capricornus.png -%%DATADIR%%/images/math/cases.png -%%DATADIR%%/images/math/cdot.png -%%DATADIR%%/images/math/cdotp.png -%%DATADIR%%/images/math/cdots.png -%%DATADIR%%/images/math/cent.png -%%DATADIR%%/images/math/centerdot.png -%%DATADIR%%/images/math/check.png -%%DATADIR%%/images/math/checked.png -%%DATADIR%%/images/math/checkedbox2.png -%%DATADIR%%/images/math/checkmark.png -%%DATADIR%%/images/math/chi.png -%%DATADIR%%/images/math/circ.png -%%DATADIR%%/images/math/circeq.png -%%DATADIR%%/images/math/circle2.png -%%DATADIR%%/images/math/circle3.png -%%DATADIR%%/images/math/circlearrowleft.png -%%DATADIR%%/images/math/circlearrowright.png -%%DATADIR%%/images/math/circledR.png -%%DATADIR%%/images/math/circledS.png -%%DATADIR%%/images/math/circledast.png -%%DATADIR%%/images/math/circledcirc.png -%%DATADIR%%/images/math/circleddash.png -%%DATADIR%%/images/math/clock.png -%%DATADIR%%/images/math/clubsuit.png -%%DATADIR%%/images/math/colon.png -%%DATADIR%%/images/math/colonapprox.png -%%DATADIR%%/images/math/colonapprox2.png -%%DATADIR%%/images/math/coloneq.png -%%DATADIR%%/images/math/coloneq2.png -%%DATADIR%%/images/math/coloneqq.png -%%DATADIR%%/images/math/coloneqq2.png -%%DATADIR%%/images/math/colonsim.png -%%DATADIR%%/images/math/colonsim2.png -%%DATADIR%%/images/math/complement.png -%%DATADIR%%/images/math/cong.png -%%DATADIR%%/images/math/conjunction.png -%%DATADIR%%/images/math/coprod.png -%%DATADIR%%/images/math/cup.png -%%DATADIR%%/images/math/cup2.png -%%DATADIR%%/images/math/curlyeqprec.png -%%DATADIR%%/images/math/curlyeqsucc.png -%%DATADIR%%/images/math/curlyvee.png -%%DATADIR%%/images/math/curlyveedownarrow.png -%%DATADIR%%/images/math/curlyveeuparrow.png -%%DATADIR%%/images/math/curlywedge.png -%%DATADIR%%/images/math/curlywedgedownarrow.png -%%DATADIR%%/images/math/curlywedgeuparrow.png -%%DATADIR%%/images/math/currency.png -%%DATADIR%%/images/math/curvearrowleft.png -%%DATADIR%%/images/math/curvearrowright.png -%%DATADIR%%/images/math/dagger.png -%%DATADIR%%/images/math/daleth.png -%%DATADIR%%/images/math/dasharrow.png -%%DATADIR%%/images/math/dashleftarrow.png -%%DATADIR%%/images/math/dashrightarrow.png -%%DATADIR%%/images/math/dashv.png -%%DATADIR%%/images/math/davidsstar.png -%%DATADIR%%/images/math/dblcolon.png -%%DATADIR%%/images/math/ddagger.png -%%DATADIR%%/images/math/ddddot.png -%%DATADIR%%/images/math/dddot.png -%%DATADIR%%/images/math/ddot.png -%%DATADIR%%/images/math/ddots.png -%%DATADIR%%/images/math/delim.png -%%DATADIR%%/images/math/delta.png -%%DATADIR%%/images/math/delta2.png -%%DATADIR%%/images/math/descnode.png -%%DATADIR%%/images/math/diagdown.png -%%DATADIR%%/images/math/diagup.png -%%DATADIR%%/images/math/diameter.png -%%DATADIR%%/images/math/diamond.png -%%DATADIR%%/images/math/diamond2.png -%%DATADIR%%/images/math/diamondsuit.png -%%DATADIR%%/images/math/digamma.png -%%DATADIR%%/images/math/div.png -%%DATADIR%%/images/math/divideontimes.png -%%DATADIR%%/images/math/dot.png -%%DATADIR%%/images/math/doteq.png -%%DATADIR%%/images/math/doteq2.png -%%DATADIR%%/images/math/doteqdot.png -%%DATADIR%%/images/math/dotplus.png -%%DATADIR%%/images/math/dots.png -%%DATADIR%%/images/math/dotsb.png -%%DATADIR%%/images/math/dotsc.png -%%DATADIR%%/images/math/dotsi.png -%%DATADIR%%/images/math/dotsint.png -%%DATADIR%%/images/math/dotsintop.png -%%DATADIR%%/images/math/dotsm.png -%%DATADIR%%/images/math/dotso.png -%%DATADIR%%/images/math/doublebarwedge.png -%%DATADIR%%/images/math/doublecap.png -%%DATADIR%%/images/math/doublecup.png -%%DATADIR%%/images/math/downarrow.png -%%DATADIR%%/images/math/downarrow2.png -%%DATADIR%%/images/math/downarrow3.png -%%DATADIR%%/images/math/downdownarrows.png -%%DATADIR%%/images/math/downharpoonleft.png -%%DATADIR%%/images/math/downharpoonright.png -%%DATADIR%%/images/math/earth.png -%%DATADIR%%/images/math/eighthnote.png -%%DATADIR%%/images/math/ell.png -%%DATADIR%%/images/math/empty.png -%%DATADIR%%/images/math/emptyset.png -%%DATADIR%%/images/math/epsilon.png -%%DATADIR%%/images/math/eqcirc.png -%%DATADIR%%/images/math/eqcolon.png -%%DATADIR%%/images/math/eqcolon2.png -%%DATADIR%%/images/math/eqqcolon.png -%%DATADIR%%/images/math/eqqcolon2.png -%%DATADIR%%/images/math/eqsim.png -%%DATADIR%%/images/math/eqslantgtr.png -%%DATADIR%%/images/math/eqslantless.png -%%DATADIR%%/images/math/equation.png -%%DATADIR%%/images/math/equiv.png -%%DATADIR%%/images/math/eta.png -%%DATADIR%%/images/math/eth.png -%%DATADIR%%/images/math/exists.png -%%DATADIR%%/images/math/export-others.png -%%DATADIR%%/images/math/fallingdotseq.png -%%DATADIR%%/images/math/fatbslash.png -%%DATADIR%%/images/math/fatsemi.png -%%DATADIR%%/images/math/fatslash.png -%%DATADIR%%/images/math/female.png -%%DATADIR%%/images/math/fint.png -%%DATADIR%%/images/math/fintop.png -%%DATADIR%%/images/math/flat.png -%%DATADIR%%/images/math/font.png -%%DATADIR%%/images/math/forall.png -%%DATADIR%%/images/math/frac-square.png -%%DATADIR%%/images/math/frac.png -%%DATADIR%%/images/math/frown.png -%%DATADIR%%/images/math/frownie.png -%%DATADIR%%/images/math/fullmoon.png -%%DATADIR%%/images/math/fullnote.png -%%DATADIR%%/images/math/functions.png -%%DATADIR%%/images/math/gamma.png -%%DATADIR%%/images/math/gamma2.png -%%DATADIR%%/images/math/ge.png -%%DATADIR%%/images/math/gemini.png -%%DATADIR%%/images/math/geq.png -%%DATADIR%%/images/math/geqq.png -%%DATADIR%%/images/math/geqslant.png -%%DATADIR%%/images/math/gets.png -%%DATADIR%%/images/math/gg.png -%%DATADIR%%/images/math/ggg.png -%%DATADIR%%/images/math/gggtr.png -%%DATADIR%%/images/math/gimel.png -%%DATADIR%%/images/math/gluon.png -%%DATADIR%%/images/math/gnapprox.png -%%DATADIR%%/images/math/gneq.png -%%DATADIR%%/images/math/gneqq.png -%%DATADIR%%/images/math/gnsim.png -%%DATADIR%%/images/math/grave.png -%%DATADIR%%/images/math/gtrapprox.png -%%DATADIR%%/images/math/gtrdot.png -%%DATADIR%%/images/math/gtreqless.png -%%DATADIR%%/images/math/gtreqqless.png -%%DATADIR%%/images/math/gtrless.png -%%DATADIR%%/images/math/gtrsim.png -%%DATADIR%%/images/math/gvertneqq.png -%%DATADIR%%/images/math/halfnote.png -%%DATADIR%%/images/math/hat.png -%%DATADIR%%/images/math/hbar.png -%%DATADIR%%/images/math/heartsuit.png -%%DATADIR%%/images/math/hexagon.png -%%DATADIR%%/images/math/hexstar.png -%%DATADIR%%/images/math/hookleftarrow.png -%%DATADIR%%/images/math/hookrightarrow.png -%%DATADIR%%/images/math/hphantom.png -%%DATADIR%%/images/math/hslash.png -%%DATADIR%%/images/math/iddots.png -%%DATADIR%%/images/math/idotsint.png -%%DATADIR%%/images/math/iff.png -%%DATADIR%%/images/math/iiiint.png -%%DATADIR%%/images/math/iiiintop.png -%%DATADIR%%/images/math/iiint.png -%%DATADIR%%/images/math/iiintop.png -%%DATADIR%%/images/math/iint.png -%%DATADIR%%/images/math/iintop.png -%%DATADIR%%/images/math/imath.png -%%DATADIR%%/images/math/impliedby.png -%%DATADIR%%/images/math/implies.png -%%DATADIR%%/images/math/in.png -%%DATADIR%%/images/math/infty.png -%%DATADIR%%/images/math/inplus.png -%%DATADIR%%/images/math/int.png -%%DATADIR%%/images/math/intercal.png -%%DATADIR%%/images/math/interleave.png -%%DATADIR%%/images/math/intop.png -%%DATADIR%%/images/math/invdiameter.png -%%DATADIR%%/images/math/inve.png -%%DATADIR%%/images/math/invneg.png -%%DATADIR%%/images/math/iota.png -%%DATADIR%%/images/math/jmath.png -%%DATADIR%%/images/math/join2.png -%%DATADIR%%/images/math/jupiter.png -%%DATADIR%%/images/math/kappa.png -%%DATADIR%%/images/math/kreuz.png -%%DATADIR%%/images/math/lambda.png -%%DATADIR%%/images/math/lambda2.png -%%DATADIR%%/images/math/land.png -%%DATADIR%%/images/math/landdownint.png -%%DATADIR%%/images/math/landdownintop.png -%%DATADIR%%/images/math/landupint.png -%%DATADIR%%/images/math/landupintop.png -%%DATADIR%%/images/math/langle.png -%%DATADIR%%/images/math/lbag.png -%%DATADIR%%/images/math/lbag2.png -%%DATADIR%%/images/math/lbrace.png -%%DATADIR%%/images/math/lbrace_rbrace.png -%%DATADIR%%/images/math/lbracket.png -%%DATADIR%%/images/math/lbracket_rbracket.png -%%DATADIR%%/images/math/lceil.png -%%DATADIR%%/images/math/lceil_rceil.png -%%DATADIR%%/images/math/ldotp.png -%%DATADIR%%/images/math/ldots.png -%%DATADIR%%/images/math/le.png -%%DATADIR%%/images/math/leadsto.png -%%DATADIR%%/images/math/leftarrow.png -%%DATADIR%%/images/math/leftarrow2.png -%%DATADIR%%/images/math/leftarrow3.png -%%DATADIR%%/images/math/leftarrowtail.png -%%DATADIR%%/images/math/leftarrowtriangle.png -%%DATADIR%%/images/math/leftcircle2.png -%%DATADIR%%/images/math/leftcircle3.png -%%DATADIR%%/images/math/leftcircle4.png -%%DATADIR%%/images/math/leftharpoondown.png -%%DATADIR%%/images/math/leftharpoonup.png -%%DATADIR%%/images/math/leftleftarrows.png -%%DATADIR%%/images/math/leftmoon.png -%%DATADIR%%/images/math/leftrightarrow.png -%%DATADIR%%/images/math/leftrightarrow2.png -%%DATADIR%%/images/math/leftrightarroweq.png -%%DATADIR%%/images/math/leftrightarrows.png -%%DATADIR%%/images/math/leftrightarrowtriangle.png -%%DATADIR%%/images/math/leftrightharpoons.png -%%DATADIR%%/images/math/leftrightsquigarrow.png -%%DATADIR%%/images/math/leftslice.png -%%DATADIR%%/images/math/leftthreetimes.png -%%DATADIR%%/images/math/leftturn.png -%%DATADIR%%/images/math/leo.png -%%DATADIR%%/images/math/leq.png -%%DATADIR%%/images/math/leqq.png -%%DATADIR%%/images/math/leqslant.png -%%DATADIR%%/images/math/lessapprox.png -%%DATADIR%%/images/math/lessdot.png -%%DATADIR%%/images/math/lesseqgtr.png -%%DATADIR%%/images/math/lesseqqgtr.png -%%DATADIR%%/images/math/lessgtr.png -%%DATADIR%%/images/math/lesssim.png -%%DATADIR%%/images/math/lfloor.png -%%DATADIR%%/images/math/lfloor_rfloor.png -%%DATADIR%%/images/math/lhd.png -%%DATADIR%%/images/math/lhd2.png -%%DATADIR%%/images/math/lhook.png -%%DATADIR%%/images/math/libra.png -%%DATADIR%%/images/math/lightning.png -%%DATADIR%%/images/math/ll.png -%%DATADIR%%/images/math/llbracket.png -%%DATADIR%%/images/math/llceil.png -%%DATADIR%%/images/math/llcorner.png -%%DATADIR%%/images/math/llfloor.png -%%DATADIR%%/images/math/lll.png -%%DATADIR%%/images/math/llless.png -%%DATADIR%%/images/math/llparenthesis.png -%%DATADIR%%/images/math/lnapprox.png -%%DATADIR%%/images/math/lneq.png -%%DATADIR%%/images/math/lneqq.png -%%DATADIR%%/images/math/lnot.png -%%DATADIR%%/images/math/lnsim.png -%%DATADIR%%/images/math/logof.png -%%DATADIR%%/images/math/longarrownot.png -%%DATADIR%%/images/math/longarrownot2.png -%%DATADIR%%/images/math/longleftarrow.png -%%DATADIR%%/images/math/longleftarrow2.png -%%DATADIR%%/images/math/longleftrightarrow.png -%%DATADIR%%/images/math/longleftrightarrow2.png -%%DATADIR%%/images/math/longmapsfrom.png -%%DATADIR%%/images/math/longmapsfrom2.png -%%DATADIR%%/images/math/longmapsto.png -%%DATADIR%%/images/math/longmapsto2.png -%%DATADIR%%/images/math/longrightarrow.png -%%DATADIR%%/images/math/longrightarrow2.png -%%DATADIR%%/images/math/looparrowleft.png -%%DATADIR%%/images/math/looparrowright.png -%%DATADIR%%/images/math/lor.png -%%DATADIR%%/images/math/lozenge.png -%%DATADIR%%/images/math/lparen.png -%%DATADIR%%/images/math/lparen_rparen.png -%%DATADIR%%/images/math/lrcorner.png -%%DATADIR%%/images/math/ltimes.png -%%DATADIR%%/images/math/lvertneqq.png -%%DATADIR%%/images/math/male.png -%%DATADIR%%/images/math/maltese.png -%%DATADIR%%/images/math/mapsfrom.png -%%DATADIR%%/images/math/mapsfrom2.png -%%DATADIR%%/images/math/mapsfromchar.png -%%DATADIR%%/images/math/mapsfromchar2.png -%%DATADIR%%/images/math/mapsto.png -%%DATADIR%%/images/math/mapsto2.png -%%DATADIR%%/images/math/mapstochar.png -%%DATADIR%%/images/math/mapstochar2.png -%%DATADIR%%/images/math/mars.png -%%DATADIR%%/images/math/mathbb.png -%%DATADIR%%/images/math/mathbb_C.png -%%DATADIR%%/images/math/mathbb_H.png -%%DATADIR%%/images/math/mathbb_N.png -%%DATADIR%%/images/math/mathbb_Q.png -%%DATADIR%%/images/math/mathbb_R.png -%%DATADIR%%/images/math/mathbb_Z.png -%%DATADIR%%/images/math/mathbf.png -%%DATADIR%%/images/math/mathcal.png -%%DATADIR%%/images/math/mathcal_F.png -%%DATADIR%%/images/math/mathcal_H.png -%%DATADIR%%/images/math/mathcal_L.png -%%DATADIR%%/images/math/mathcal_O.png -%%DATADIR%%/images/math/mathcircumflex.png -%%DATADIR%%/images/math/mathclap.png -%%DATADIR%%/images/math/mathdollar.png -%%DATADIR%%/images/math/mathfrak.png -%%DATADIR%%/images/math/mathit.png -%%DATADIR%%/images/math/mathllap.png -%%DATADIR%%/images/math/mathparagraph.png -%%DATADIR%%/images/math/mathring.png -%%DATADIR%%/images/math/mathrlap.png -%%DATADIR%%/images/math/mathrm.png -%%DATADIR%%/images/math/mathrm_T.png -%%DATADIR%%/images/math/mathscr.png -%%DATADIR%%/images/math/mathsection.png -%%DATADIR%%/images/math/mathsf.png -%%DATADIR%%/images/math/mathtt.png -%%DATADIR%%/images/math/matrix.png -%%DATADIR%%/images/math/measuredangle.png -%%DATADIR%%/images/math/mercury.png -%%DATADIR%%/images/math/merge.png -%%DATADIR%%/images/math/mho.png -%%DATADIR%%/images/math/mid.png -%%DATADIR%%/images/math/minuso.png -%%DATADIR%%/images/math/models.png -%%DATADIR%%/images/math/moo.png -%%DATADIR%%/images/math/mp.png -%%DATADIR%%/images/math/mu.png -%%DATADIR%%/images/math/multimap.png -%%DATADIR%%/images/math/nabla.png -%%DATADIR%%/images/math/natural.png -%%DATADIR%%/images/math/ncong.png -%%DATADIR%%/images/math/ne.png -%%DATADIR%%/images/math/nearrow.png -%%DATADIR%%/images/math/neg.png -%%DATADIR%%/images/math/neptune.png -%%DATADIR%%/images/math/neq.png -%%DATADIR%%/images/math/newmoon.png -%%DATADIR%%/images/math/nexists.png -%%DATADIR%%/images/math/ngeq.png -%%DATADIR%%/images/math/ngeqq.png -%%DATADIR%%/images/math/ngeqslant.png -%%DATADIR%%/images/math/ngtr.png -%%DATADIR%%/images/math/ni.png -%%DATADIR%%/images/math/niplus.png -%%DATADIR%%/images/math/nleftarrow.png -%%DATADIR%%/images/math/nleftarrow2.png -%%DATADIR%%/images/math/nleftrightarrow.png -%%DATADIR%%/images/math/nleftrightarrow2.png -%%DATADIR%%/images/math/nleq.png -%%DATADIR%%/images/math/nleqq.png -%%DATADIR%%/images/math/nleqslant.png -%%DATADIR%%/images/math/nless.png -%%DATADIR%%/images/math/nmid.png -%%DATADIR%%/images/math/nnearrow.png -%%DATADIR%%/images/math/nnwarrow.png -%%DATADIR%%/images/math/not.png -%%DATADIR%%/images/math/notin.png -%%DATADIR%%/images/math/nparallel.png -%%DATADIR%%/images/math/nplus.png -%%DATADIR%%/images/math/nprec.png -%%DATADIR%%/images/math/npreceq.png -%%DATADIR%%/images/math/nrightarrow.png -%%DATADIR%%/images/math/nrightarrow2.png -%%DATADIR%%/images/math/nshortmid.png -%%DATADIR%%/images/math/nshortparallel.png -%%DATADIR%%/images/math/nsim.png -%%DATADIR%%/images/math/nsubseteq.png -%%DATADIR%%/images/math/nsubseteqq.png -%%DATADIR%%/images/math/nsucc.png -%%DATADIR%%/images/math/nsucceq.png -%%DATADIR%%/images/math/nsupseteq.png -%%DATADIR%%/images/math/nsupseteqq.png -%%DATADIR%%/images/math/ntriangleleft.png -%%DATADIR%%/images/math/ntrianglelefteq.png -%%DATADIR%%/images/math/ntrianglelefteqslant.png -%%DATADIR%%/images/math/ntriangleright.png -%%DATADIR%%/images/math/ntrianglerighteq.png -%%DATADIR%%/images/math/ntrianglerighteqslant.png -%%DATADIR%%/images/math/nu.png -%%DATADIR%%/images/math/nvdash.png -%%DATADIR%%/images/math/nvdash2.png -%%DATADIR%%/images/math/nvdash3.png -%%DATADIR%%/images/math/nvdash4.png -%%DATADIR%%/images/math/nwarrow.png -%%DATADIR%%/images/math/obar.png -%%DATADIR%%/images/math/oblong.png -%%DATADIR%%/images/math/obslash.png -%%DATADIR%%/images/math/ocircle.png -%%DATADIR%%/images/math/octagon.png -%%DATADIR%%/images/math/odot.png -%%DATADIR%%/images/math/ogreaterthan.png -%%DATADIR%%/images/math/oiint.png -%%DATADIR%%/images/math/oiintop.png -%%DATADIR%%/images/math/oint.png -%%DATADIR%%/images/math/ointclockwise.png -%%DATADIR%%/images/math/ointclockwiseop.png -%%DATADIR%%/images/math/ointctrclockwise.png -%%DATADIR%%/images/math/ointctrclockwiseop.png -%%DATADIR%%/images/math/ointop.png -%%DATADIR%%/images/math/olessthan.png -%%DATADIR%%/images/math/omega.png -%%DATADIR%%/images/math/omega2.png -%%DATADIR%%/images/math/ominus.png -%%DATADIR%%/images/math/openo.png -%%DATADIR%%/images/math/oplus.png -%%DATADIR%%/images/math/opposition.png -%%DATADIR%%/images/math/oslash.png -%%DATADIR%%/images/math/otimes.png -%%DATADIR%%/images/math/ovee.png -%%DATADIR%%/images/math/overbrace.png -%%DATADIR%%/images/math/overleftarrow.png -%%DATADIR%%/images/math/overleftrightarrow.png -%%DATADIR%%/images/math/overline.png -%%DATADIR%%/images/math/overrightarrow.png -%%DATADIR%%/images/math/overset.png -%%DATADIR%%/images/math/owedge.png -%%DATADIR%%/images/math/owns.png -%%DATADIR%%/images/math/parallel.png -%%DATADIR%%/images/math/partial.png -%%DATADIR%%/images/math/pentagon.png -%%DATADIR%%/images/math/permil.png -%%DATADIR%%/images/math/perp.png -%%DATADIR%%/images/math/phantom.png -%%DATADIR%%/images/math/phi.png -%%DATADIR%%/images/math/phi2.png -%%DATADIR%%/images/math/phone.png -%%DATADIR%%/images/math/photon.png -%%DATADIR%%/images/math/pi.png -%%DATADIR%%/images/math/pi2.png -%%DATADIR%%/images/math/pisces.png -%%DATADIR%%/images/math/pitchfork.png -%%DATADIR%%/images/math/pluto.png -%%DATADIR%%/images/math/pm.png -%%DATADIR%%/images/math/pointer.png -%%DATADIR%%/images/math/prec.png -%%DATADIR%%/images/math/precapprox.png -%%DATADIR%%/images/math/preccurlyeq.png -%%DATADIR%%/images/math/preceq.png -%%DATADIR%%/images/math/precnapprox.png -%%DATADIR%%/images/math/precneqq.png -%%DATADIR%%/images/math/precnsim.png -%%DATADIR%%/images/math/precsim.png -%%DATADIR%%/images/math/prime.png -%%DATADIR%%/images/math/prod.png -%%DATADIR%%/images/math/propto.png -%%DATADIR%%/images/math/psi.png -%%DATADIR%%/images/math/psi2.png -%%DATADIR%%/images/math/quarternote.png -%%DATADIR%%/images/math/rangle.png -%%DATADIR%%/images/math/rbag.png -%%DATADIR%%/images/math/rbag2.png -%%DATADIR%%/images/math/rbrace.png -%%DATADIR%%/images/math/rbracket.png -%%DATADIR%%/images/math/rceil.png -%%DATADIR%%/images/math/recorder.png -%%DATADIR%%/images/math/restriction.png -%%DATADIR%%/images/math/rfloor.png -%%DATADIR%%/images/math/rhd.png -%%DATADIR%%/images/math/rhd2.png -%%DATADIR%%/images/math/rho.png -%%DATADIR%%/images/math/rhook.png -%%DATADIR%%/images/math/rightarrow.png -%%DATADIR%%/images/math/rightarrow2.png -%%DATADIR%%/images/math/rightarrow3.png -%%DATADIR%%/images/math/rightarrowtail.png -%%DATADIR%%/images/math/rightarrowtriangle.png -%%DATADIR%%/images/math/rightcircle2.png -%%DATADIR%%/images/math/rightcircle3.png -%%DATADIR%%/images/math/rightcircle4.png -%%DATADIR%%/images/math/rightharpoondown.png -%%DATADIR%%/images/math/rightharpoonup.png -%%DATADIR%%/images/math/rightleftarrows.png -%%DATADIR%%/images/math/rightleftharpoons.png -%%DATADIR%%/images/math/rightmoon.png -%%DATADIR%%/images/math/rightrightarrows.png -%%DATADIR%%/images/math/rightslice.png -%%DATADIR%%/images/math/rightsquigarrow.png -%%DATADIR%%/images/math/rightthreetimes.png -%%DATADIR%%/images/math/rightturn.png -%%DATADIR%%/images/math/risingdotseq.png -%%DATADIR%%/images/math/root.png -%%DATADIR%%/images/math/rparen.png -%%DATADIR%%/images/math/rrbracket.png -%%DATADIR%%/images/math/rrceil.png -%%DATADIR%%/images/math/rrfloor.png -%%DATADIR%%/images/math/rrparenthesis.png -%%DATADIR%%/images/math/rtimes.png -%%DATADIR%%/images/math/sagittarius.png -%%DATADIR%%/images/math/saturn.png -%%DATADIR%%/images/math/scorpio.png -%%DATADIR%%/images/math/searrow.png -%%DATADIR%%/images/math/setminus.png -%%DATADIR%%/images/math/sharp.png -%%DATADIR%%/images/math/shortdownarrow.png -%%DATADIR%%/images/math/shortleftarrow.png -%%DATADIR%%/images/math/shortmid.png -%%DATADIR%%/images/math/shortparallel.png -%%DATADIR%%/images/math/shortrightarrow.png -%%DATADIR%%/images/math/shortuparrow.png -%%DATADIR%%/images/math/sideset.png -%%DATADIR%%/images/math/sidesetl.png -%%DATADIR%%/images/math/sidesetn.png -%%DATADIR%%/images/math/sidesetr.png -%%DATADIR%%/images/math/sigma.png -%%DATADIR%%/images/math/sigma2.png -%%DATADIR%%/images/math/sim.png -%%DATADIR%%/images/math/simeq.png -%%DATADIR%%/images/math/slash.png -%%DATADIR%%/images/math/smallfrown.png -%%DATADIR%%/images/math/smallint.png -%%DATADIR%%/images/math/smallsetminus.png -%%DATADIR%%/images/math/smallsmile.png -%%DATADIR%%/images/math/smash.png -%%DATADIR%%/images/math/smile.png -%%DATADIR%%/images/math/smiley.png -%%DATADIR%%/images/math/space.png -%%DATADIR%%/images/math/spadesuit.png -%%DATADIR%%/images/math/sphericalangle.png -%%DATADIR%%/images/math/sqcap.png -%%DATADIR%%/images/math/sqcup.png -%%DATADIR%%/images/math/sqiint.png -%%DATADIR%%/images/math/sqiintop.png -%%DATADIR%%/images/math/sqint.png -%%DATADIR%%/images/math/sqintop.png -%%DATADIR%%/images/math/sqrt-square.png -%%DATADIR%%/images/math/sqrt.png -%%DATADIR%%/images/math/sqsubset.png -%%DATADIR%%/images/math/sqsubseteq.png -%%DATADIR%%/images/math/sqsupset.png -%%DATADIR%%/images/math/sqsupseteq.png -%%DATADIR%%/images/math/square.png -%%DATADIR%%/images/math/square2.png -%%DATADIR%%/images/math/ssearrow.png -%%DATADIR%%/images/math/sslash.png -%%DATADIR%%/images/math/sswarrow.png -%%DATADIR%%/images/math/stackrel.png -%%DATADIR%%/images/math/stackrelthree.png -%%DATADIR%%/images/math/star.png -%%DATADIR%%/images/math/style.png -%%DATADIR%%/images/math/sub.png -%%DATADIR%%/images/math/subset.png -%%DATADIR%%/images/math/subset2.png -%%DATADIR%%/images/math/subseteq.png -%%DATADIR%%/images/math/subseteqq.png -%%DATADIR%%/images/math/subsetneq.png -%%DATADIR%%/images/math/subsetneqq.png -%%DATADIR%%/images/math/subsetplus.png -%%DATADIR%%/images/math/subsetpluseq.png -%%DATADIR%%/images/math/succ.png -%%DATADIR%%/images/math/succapprox.png -%%DATADIR%%/images/math/succcurlyeq.png -%%DATADIR%%/images/math/succeq.png -%%DATADIR%%/images/math/succnapprox.png -%%DATADIR%%/images/math/succneqq.png -%%DATADIR%%/images/math/succnsim.png -%%DATADIR%%/images/math/succsim.png -%%DATADIR%%/images/math/sum.png -%%DATADIR%%/images/math/sun.png -%%DATADIR%%/images/math/super.png -%%DATADIR%%/images/math/supset.png -%%DATADIR%%/images/math/supset2.png -%%DATADIR%%/images/math/supseteq.png -%%DATADIR%%/images/math/supseteqq.png -%%DATADIR%%/images/math/supsetneq.png -%%DATADIR%%/images/math/supsetneqq.png -%%DATADIR%%/images/math/supsetplus.png -%%DATADIR%%/images/math/supsetpluseq.png -%%DATADIR%%/images/math/surd.png -%%DATADIR%%/images/math/swarrow.png -%%DATADIR%%/images/math/talloblong.png -%%DATADIR%%/images/math/tau.png -%%DATADIR%%/images/math/taurus.png -%%DATADIR%%/images/math/textdegree.png -%%DATADIR%%/images/math/textrm.png -%%DATADIR%%/images/math/textrm_AA.png -%%DATADIR%%/images/math/textrm_O.png -%%DATADIR%%/images/math/therefore.png -%%DATADIR%%/images/math/theta.png -%%DATADIR%%/images/math/theta2.png -%%DATADIR%%/images/math/thickapprox.png -%%DATADIR%%/images/math/thicksim.png -%%DATADIR%%/images/math/thorn.png -%%DATADIR%%/images/math/thorn2.png -%%DATADIR%%/images/math/tilde.png -%%DATADIR%%/images/math/times.png -%%DATADIR%%/images/math/to.png -%%DATADIR%%/images/math/top.png -%%DATADIR%%/images/math/triangle.png -%%DATADIR%%/images/math/triangledown.png -%%DATADIR%%/images/math/triangleleft.png -%%DATADIR%%/images/math/trianglelefteq.png -%%DATADIR%%/images/math/trianglelefteqslant.png -%%DATADIR%%/images/math/triangleq.png -%%DATADIR%%/images/math/triangleright.png -%%DATADIR%%/images/math/trianglerighteq.png -%%DATADIR%%/images/math/trianglerighteqslant.png -%%DATADIR%%/images/math/twoheadleftarrow.png -%%DATADIR%%/images/math/twoheadrightarrow.png -%%DATADIR%%/images/math/twonotes.png -%%DATADIR%%/images/math/ulcorner.png -%%DATADIR%%/images/math/underbar.png -%%DATADIR%%/images/math/underbrace.png -%%DATADIR%%/images/math/underleftarrow.png -%%DATADIR%%/images/math/underleftrightarrow.png -%%DATADIR%%/images/math/underline.png -%%DATADIR%%/images/math/underrightarrow.png -%%DATADIR%%/images/math/underscore.png -%%DATADIR%%/images/math/underset.png -%%DATADIR%%/images/math/undertilde.png -%%DATADIR%%/images/math/unlhd.png -%%DATADIR%%/images/math/unrhd.png -%%DATADIR%%/images/math/uparrow.png -%%DATADIR%%/images/math/uparrow2.png -%%DATADIR%%/images/math/uparrow3.png -%%DATADIR%%/images/math/updownarrow.png -%%DATADIR%%/images/math/updownarrow2.png -%%DATADIR%%/images/math/upharpoonleft.png -%%DATADIR%%/images/math/upharpoonright.png -%%DATADIR%%/images/math/uplus.png -%%DATADIR%%/images/math/upsilon.png -%%DATADIR%%/images/math/upsilon2.png -%%DATADIR%%/images/math/upuparrows.png -%%DATADIR%%/images/math/uranus.png -%%DATADIR%%/images/math/urcorner.png -%%DATADIR%%/images/math/utilde.png -%%DATADIR%%/images/math/varangle.png -%%DATADIR%%/images/math/varbigcirc.png -%%DATADIR%%/images/math/varcopyright.png -%%DATADIR%%/images/math/varcurlyvee.png -%%DATADIR%%/images/math/varcurlywedge.png -%%DATADIR%%/images/math/vardelta2.png -%%DATADIR%%/images/math/varepsilon.png -%%DATADIR%%/images/math/vargamma2.png -%%DATADIR%%/images/math/varhexagon.png -%%DATADIR%%/images/math/varhexstar.png -%%DATADIR%%/images/math/variiint.png -%%DATADIR%%/images/math/variiintop.png -%%DATADIR%%/images/math/variint.png -%%DATADIR%%/images/math/variintop.png -%%DATADIR%%/images/math/varint.png -%%DATADIR%%/images/math/varintop.png -%%DATADIR%%/images/math/varkappa.png -%%DATADIR%%/images/math/varlambda2.png -%%DATADIR%%/images/math/varnothing.png -%%DATADIR%%/images/math/varoast.png -%%DATADIR%%/images/math/varobar.png -%%DATADIR%%/images/math/varobslash.png -%%DATADIR%%/images/math/varocircle.png -%%DATADIR%%/images/math/varodot.png -%%DATADIR%%/images/math/varogreaterthan.png -%%DATADIR%%/images/math/varoiint.png -%%DATADIR%%/images/math/varoiintop.png -%%DATADIR%%/images/math/varoint.png -%%DATADIR%%/images/math/varointclockwise.png -%%DATADIR%%/images/math/varointclockwiseop.png -%%DATADIR%%/images/math/varointctrclockwise.png -%%DATADIR%%/images/math/varointctrclockwiseop.png -%%DATADIR%%/images/math/varointop.png -%%DATADIR%%/images/math/varolessthan.png -%%DATADIR%%/images/math/varomega2.png -%%DATADIR%%/images/math/varominus.png -%%DATADIR%%/images/math/varoplus.png -%%DATADIR%%/images/math/varoslash.png -%%DATADIR%%/images/math/varotimes.png -%%DATADIR%%/images/math/varovee.png -%%DATADIR%%/images/math/varowedge.png -%%DATADIR%%/images/math/varphi.png -%%DATADIR%%/images/math/varphi2.png -%%DATADIR%%/images/math/varpi.png -%%DATADIR%%/images/math/varpi2.png -%%DATADIR%%/images/math/varpropto.png -%%DATADIR%%/images/math/varpsi2.png -%%DATADIR%%/images/math/varrho.png -%%DATADIR%%/images/math/varsigma.png -%%DATADIR%%/images/math/varsigma2.png -%%DATADIR%%/images/math/varsubsetneq.png -%%DATADIR%%/images/math/varsubsetneqq.png -%%DATADIR%%/images/math/varsupsetneq.png -%%DATADIR%%/images/math/varsupsetneqq.png -%%DATADIR%%/images/math/vartheta.png -%%DATADIR%%/images/math/vartheta2.png -%%DATADIR%%/images/math/vartimes.png -%%DATADIR%%/images/math/vartriangle.png -%%DATADIR%%/images/math/vartriangleleft.png -%%DATADIR%%/images/math/vartriangleright.png -%%DATADIR%%/images/math/varupsilon2.png -%%DATADIR%%/images/math/varxi2.png -%%DATADIR%%/images/math/vcentcolon.png -%%DATADIR%%/images/math/vdash.png -%%DATADIR%%/images/math/vdash2.png -%%DATADIR%%/images/math/vdash3.png -%%DATADIR%%/images/math/vdots.png -%%DATADIR%%/images/math/vec.png -%%DATADIR%%/images/math/vee.png -%%DATADIR%%/images/math/veebar.png -%%DATADIR%%/images/math/venus.png -%%DATADIR%%/images/math/vernal.png -%%DATADIR%%/images/math/vert.png -%%DATADIR%%/images/math/vert2.png -%%DATADIR%%/images/math/virgo.png -%%DATADIR%%/images/math/vphantom.png -%%DATADIR%%/images/math/wasylozenge.png -%%DATADIR%%/images/math/wasypropto.png -%%DATADIR%%/images/math/wasytherefore.png -%%DATADIR%%/images/math/wedge.png -%%DATADIR%%/images/math/widehat.png -%%DATADIR%%/images/math/widetilde.png -%%DATADIR%%/images/math/wp.png -%%DATADIR%%/images/math/wr.png -%%DATADIR%%/images/math/xbox3.png -%%DATADIR%%/images/math/xcancel.png -%%DATADIR%%/images/math/xi.png -%%DATADIR%%/images/math/xi2.png -%%DATADIR%%/images/math/xleftarrow.png -%%DATADIR%%/images/math/xrightarrow.png -%%DATADIR%%/images/math/yen.png -%%DATADIR%%/images/math/zeta.png -%%DATADIR%%/images/nomencl-insert.png -%%DATADIR%%/images/note-insert.png -%%DATADIR%%/images/note-next.png -%%DATADIR%%/images/oxygen/all-changes-accept.png -%%DATADIR%%/images/oxygen/all-changes-reject.png -%%DATADIR%%/images/oxygen/bookmark-goto.png -%%DATADIR%%/images/oxygen/bookmark-goto_0.png -%%DATADIR%%/images/oxygen/bookmark-save.png -%%DATADIR%%/images/oxygen/box-insert.png -%%DATADIR%%/images/oxygen/buffer-new.png -%%DATADIR%%/images/oxygen/buffer-reload.png -%%DATADIR%%/images/oxygen/buffer-toggle-output-sync.png -%%DATADIR%%/images/oxygen/buffer-update.png -%%DATADIR%%/images/oxygen/buffer-update_dvi.png -%%DATADIR%%/images/oxygen/buffer-update_dvi3.png -%%DATADIR%%/images/oxygen/buffer-update_pdf.png -%%DATADIR%%/images/oxygen/buffer-update_pdf2.png -%%DATADIR%%/images/oxygen/buffer-update_pdf3.png -%%DATADIR%%/images/oxygen/buffer-update_pdf4.png -%%DATADIR%%/images/oxygen/buffer-update_pdf5.png -%%DATADIR%%/images/oxygen/buffer-update_ps.png -%%DATADIR%%/images/oxygen/buffer-view.png -%%DATADIR%%/images/oxygen/buffer-view_dvi.png -%%DATADIR%%/images/oxygen/buffer-view_dvi3.png -%%DATADIR%%/images/oxygen/buffer-view_pdf.png -%%DATADIR%%/images/oxygen/buffer-view_pdf2.png -%%DATADIR%%/images/oxygen/buffer-view_pdf3.png -%%DATADIR%%/images/oxygen/buffer-view_pdf4.png -%%DATADIR%%/images/oxygen/buffer-view_pdf5.png -%%DATADIR%%/images/oxygen/buffer-view_ps.png -%%DATADIR%%/images/oxygen/buffer-write-as.png -%%DATADIR%%/images/oxygen/buffer-write.png -%%DATADIR%%/images/oxygen/change-accept.png -%%DATADIR%%/images/oxygen/change-next.png -%%DATADIR%%/images/oxygen/change-reject.png -%%DATADIR%%/images/oxygen/changes-output.png -%%DATADIR%%/images/oxygen/changes-track.png -%%DATADIR%%/images/oxygen/closetab.png -%%DATADIR%%/images/oxygen/copy.png -%%DATADIR%%/images/oxygen/cut.png -%%DATADIR%%/images/oxygen/depth-decrement.png -%%DATADIR%%/images/oxygen/depth-increment.png -%%DATADIR%%/images/oxygen/dialog-show-new-inset_citation.png -%%DATADIR%%/images/oxygen/dialog-show-new-inset_graphics.png -%%DATADIR%%/images/oxygen/dialog-show-new-inset_include.png -%%DATADIR%%/images/oxygen/dialog-show-new-inset_ref.png -%%DATADIR%%/images/oxygen/dialog-show_character.png -%%DATADIR%%/images/oxygen/dialog-show_findreplace.png -%%DATADIR%%/images/oxygen/dialog-show_print.png -%%DATADIR%%/images/oxygen/dialog-show_spellchecker.png -%%DATADIR%%/images/oxygen/dialog-toggle_findreplaceadv.png -%%DATADIR%%/images/oxygen/dialog-toggle_toc.png -%%DATADIR%%/images/oxygen/ert-insert.png -%%DATADIR%%/images/oxygen/file-open.png -%%DATADIR%%/images/oxygen/float-insert_figure.png -%%DATADIR%%/images/oxygen/float-insert_table.png -%%DATADIR%%/images/oxygen/font-bold.png -%%DATADIR%%/images/oxygen/font-emph.png -%%DATADIR%%/images/oxygen/font-noun.png -%%DATADIR%%/images/oxygen/footnote-insert.png -%%DATADIR%%/images/oxygen/href-insert.png -%%DATADIR%%/images/oxygen/index-insert.png -%%DATADIR%%/images/oxygen/label-insert.png -%%DATADIR%%/images/oxygen/layout-document.png -%%DATADIR%%/images/oxygen/layout-paragraph.png -%%DATADIR%%/images/oxygen/layout.png -%%DATADIR%%/images/oxygen/layout_Description.png -%%DATADIR%%/images/oxygen/layout_Enumerate.png -%%DATADIR%%/images/oxygen/layout_Itemize.png -%%DATADIR%%/images/oxygen/layout_List.png -%%DATADIR%%/images/oxygen/lyx-quit.png -%%DATADIR%%/images/oxygen/marginalnote-insert.png -%%DATADIR%%/images/oxygen/master-buffer-update.png -%%DATADIR%%/images/oxygen/master-buffer-view.png -%%DATADIR%%/images/oxygen/math-macro_newmacroname_newcommand.png -%%DATADIR%%/images/oxygen/math-mode.png -%%DATADIR%%/images/oxygen/nomencl-insert.png -%%DATADIR%%/images/oxygen/note-insert.png -%%DATADIR%%/images/oxygen/note-next.png -%%DATADIR%%/images/oxygen/paste.png -%%DATADIR%%/images/oxygen/redo.png -%%DATADIR%%/images/oxygen/reload.png -%%DATADIR%%/images/oxygen/spelling-continuously.png -%%DATADIR%%/images/oxygen/tab-group-close.png -%%DATADIR%%/images/oxygen/tabular-insert.png -%%DATADIR%%/images/oxygen/textstyle-apply.png -%%DATADIR%%/images/oxygen/thesaurus-entry.png -%%DATADIR%%/images/oxygen/toolbar-toggle_math.png -%%DATADIR%%/images/oxygen/toolbar-toggle_table.png -%%DATADIR%%/images/oxygen/undo.png -%%DATADIR%%/images/oxygen/update-others.png -%%DATADIR%%/images/oxygen/url-insert.png -%%DATADIR%%/images/oxygen/vc-revert.png -%%DATADIR%%/images/oxygen/view-others.png -%%DATADIR%%/images/oxygen/view-split_horizontal.png -%%DATADIR%%/images/oxygen/view-split_vertical.png -%%DATADIR%%/images/paste.png -%%DATADIR%%/images/promote.png +%%DATADIR%%/images/closetab.svgz +%%DATADIR%%/images/copy.svgz +%%DATADIR%%/images/cut.svgz +%%DATADIR%%/images/depth-decrement.svgz +%%DATADIR%%/images/depth-increment.svgz +%%DATADIR%%/images/dialog-preferences.svgz +%%DATADIR%%/images/dialog-show-new-inset_citation.svgz +%%DATADIR%%/images/dialog-show-new-inset_graphics.svgz +%%DATADIR%%/images/dialog-show-new-inset_include.svgz +%%DATADIR%%/images/dialog-show-new-inset_ref.svgz +%%DATADIR%%/images/dialog-show_character.svgz +%%DATADIR%%/images/dialog-show_findreplace.svgz +%%DATADIR%%/images/dialog-show_mathdelimiter.svgz +%%DATADIR%%/images/dialog-show_mathmatrix.svgz +%%DATADIR%%/images/dialog-show_print.svgz +%%DATADIR%%/images/dialog-show_spellchecker.svgz +%%DATADIR%%/images/dialog-show_vclog.svgz +%%DATADIR%%/images/dialog-toggle_findreplaceadv.svgz +%%DATADIR%%/images/dialog-toggle_toc.svgz +%%DATADIR%%/images/down.svgz +%%DATADIR%%/images/editclear.svgz +%%DATADIR%%/images/emblem-readonly.svgz +%%DATADIR%%/images/ert-insert.svgz +%%DATADIR%%/images/file-open.svgz +%%DATADIR%%/images/float-insert_figure.svgz +%%DATADIR%%/images/float-insert_table.svgz +%%DATADIR%%/images/font-bold.svgz +%%DATADIR%%/images/font-emph.svgz +%%DATADIR%%/images/font-noun.svgz +%%DATADIR%%/images/font-sans.svgz +%%DATADIR%%/images/footnote-insert.svgz +%%DATADIR%%/images/hidetab.svgz +%%DATADIR%%/images/href-insert.svgz +%%DATADIR%%/images/index-insert.svgz +%%DATADIR%%/images/info-insert.svgz +%%DATADIR%%/images/info-insert_buffer_vcs-revision.svgz +%%DATADIR%%/images/ipa/ipamacro-insert_deco_bottomtiebar.svgz +%%DATADIR%%/images/ipa/ipamacro-insert_deco_toptiebar.svgz +%%DATADIR%%/images/ipa/ipamacro-insert_tone-falling.svgz +%%DATADIR%%/images/ipa/ipamacro-insert_tone-high-rising-falling.svgz +%%DATADIR%%/images/ipa/ipamacro-insert_tone-high-rising.svgz +%%DATADIR%%/images/ipa/ipamacro-insert_tone-low-rising.svgz +%%DATADIR%%/images/ipa/ipamacro-insert_tone-rising.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x002e.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0061.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0062.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0063.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0064.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0065.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0066.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0068.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0069.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x006b.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x006c.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x006d.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x006e.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x006f.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0070.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0071.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0072.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0073.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0074.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0075.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0076.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0077.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0078.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0079.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x007a.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x007c.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x00e6.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x00e7.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x00f0.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x00f8.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0127.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x014b.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0153.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x01c0.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x01c1.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x01c2.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x01c3.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0250.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0251.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0252.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0253.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0254.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0255.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0256.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0257.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0258.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0259.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x025b.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x025c.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x025e.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x025f.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0260.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0261.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0262.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0263.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0264.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0265.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0266.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0267.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0268.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x026a.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x026c.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x026d.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x026e.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x026f.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0270.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0271.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0272.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0273.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0274.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0275.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0276.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0278.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0279.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x027a.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x027b.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x027d.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x027e.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0280.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0281.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0282.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0283.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0284.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0288.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0289.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x028a.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x028b.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x028c.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x028d.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x028e.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x028f.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0290.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0291.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0292.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0294.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0295.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0298.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0299.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x029b.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x029c.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x029d.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x029f.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x02a1.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x02a2.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x02b0.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x02b2.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x02b7.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x02bc.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x02c8.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x02cc.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x02d0.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x02d1.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x02de.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x02e0.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x02e1.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x02e4.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x02e5.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x02e6.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x02e7.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x02e8.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x02e9.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x02fa.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0300.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0301.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0302.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0303.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0304.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0306.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0308.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x030a.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x030b.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x030c.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x030f.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0318.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0319.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x031c.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x031d.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x031e.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x031f.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0320.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0324.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0325.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0329.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x032a.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x032c.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x032f.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0330.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0334.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x0339.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x033a.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x033b.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x033c.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x033d.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x03b2.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x03b8.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x03c7.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x1dc4.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x1dc5.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x1dc8.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x2016.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x203f.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x207f.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x2197.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x2198.svgz +%%DATADIR%%/images/ipa/unicode-insert_0x2c71.svgz +%%DATADIR%%/images/ipa/unicode-insert_0xa71b.svgz +%%DATADIR%%/images/ipa/unicode-insert_0xa71c.svgz +%%DATADIR%%/images/label-insert.svgz +%%DATADIR%%/images/layout-document.svgz +%%DATADIR%%/images/layout-paragraph.svgz +%%DATADIR%%/images/layout.svgz +%%DATADIR%%/images/layout_Chunk.svgz +%%DATADIR%%/images/layout_Description.svgz +%%DATADIR%%/images/layout_Enumerate.svgz +%%DATADIR%%/images/layout_Itemize.svgz +%%DATADIR%%/images/layout_List.svgz +%%DATADIR%%/images/layout_LyX-Code.svgz +%%DATADIR%%/images/layout_Section.svgz +%%DATADIR%%/images/lyx-quit.svgz +%%DATADIR%%/images/marginalnote-insert.svgz +%%DATADIR%%/images/master-buffer-update.svgz +%%DATADIR%%/images/master-buffer-view.svgz +%%DATADIR%%/images/math-display.svgz +%%DATADIR%%/images/math-macro-add-greedy-optional-param.svgz +%%DATADIR%%/images/math-macro-add-optional-param.svgz +%%DATADIR%%/images/math-macro-add-param.svgz +%%DATADIR%%/images/math-macro-append-greedy-param.svgz +%%DATADIR%%/images/math-macro-make-nonoptional.svgz +%%DATADIR%%/images/math-macro-make-optional.svgz +%%DATADIR%%/images/math-macro-remove-greedy-param.svgz +%%DATADIR%%/images/math-macro-remove-optional-param.svgz +%%DATADIR%%/images/math-macro-remove-param.svgz +%%DATADIR%%/images/math-macro_newmacroname_newcommand.svgz +%%DATADIR%%/images/math-matrix.svgz +%%DATADIR%%/images/math-mode.svgz +%%DATADIR%%/images/math-subscript.svgz +%%DATADIR%%/images/math-superscript.svgz +%%DATADIR%%/images/math/AC.svgz +%%DATADIR%%/images/math/APLbox.svgz +%%DATADIR%%/images/math/APLcomment.svgz +%%DATADIR%%/images/math/APLdown.svgz +%%DATADIR%%/images/math/APLdownarrowbox.svgz +%%DATADIR%%/images/math/APLinput.svgz +%%DATADIR%%/images/math/APLinv.svgz +%%DATADIR%%/images/math/APLleftarrowbox.svgz +%%DATADIR%%/images/math/APLlog.svgz +%%DATADIR%%/images/math/APLrightarrowbox.svgz +%%DATADIR%%/images/math/APLstar.svgz +%%DATADIR%%/images/math/APLup.svgz +%%DATADIR%%/images/math/APLuparrowbox.svgz +%%DATADIR%%/images/math/Bbbk.svgz +%%DATADIR%%/images/math/Finv.svgz +%%DATADIR%%/images/math/Game.svgz +%%DATADIR%%/images/math/HF.svgz +%%DATADIR%%/images/math/Im.svgz +%%DATADIR%%/images/math/Lleftarrow.svgz +%%DATADIR%%/images/math/Lsh.svgz +%%DATADIR%%/images/math/Re.svgz +%%DATADIR%%/images/math/Rrightarrow.svgz +%%DATADIR%%/images/math/Rsh.svgz +%%DATADIR%%/images/math/VHF.svgz +%%DATADIR%%/images/math/Vvdash.svgz +%%DATADIR%%/images/math/Ydown.svgz +%%DATADIR%%/images/math/Yleft.svgz +%%DATADIR%%/images/math/Yright.svgz +%%DATADIR%%/images/math/Yup.svgz +%%DATADIR%%/images/math/acute.svgz +%%DATADIR%%/images/math/adots.svgz +%%DATADIR%%/images/math/agemO.svgz +%%DATADIR%%/images/math/aleph.svgz +%%DATADIR%%/images/math/alpha.svgz +%%DATADIR%%/images/math/amalg.svgz +%%DATADIR%%/images/math/angle.svgz +%%DATADIR%%/images/math/apprge.svgz +%%DATADIR%%/images/math/apprle.svgz +%%DATADIR%%/images/math/approx.svgz +%%DATADIR%%/images/math/approxeq.svgz +%%DATADIR%%/images/math/aquarius.svgz +%%DATADIR%%/images/math/aries.svgz +%%DATADIR%%/images/math/arrownot.svgz +%%DATADIR%%/images/math/arrownot2.svgz +%%DATADIR%%/images/math/arrowvert.svgz +%%DATADIR%%/images/math/arrowvert2.svgz +%%DATADIR%%/images/math/ascnode.svgz +%%DATADIR%%/images/math/ast.svgz +%%DATADIR%%/images/math/astrosun.svgz +%%DATADIR%%/images/math/asymp.svgz +%%DATADIR%%/images/math/ataribox.svgz +%%DATADIR%%/images/math/backepsilon.svgz +%%DATADIR%%/images/math/backprime.svgz +%%DATADIR%%/images/math/backsim.svgz +%%DATADIR%%/images/math/backsimeq.svgz +%%DATADIR%%/images/math/backslash.svgz +%%DATADIR%%/images/math/bar.svgz +%%DATADIR%%/images/math/baro.svgz +%%DATADIR%%/images/math/bars.svgz +%%DATADIR%%/images/math/barwedge.svgz +%%DATADIR%%/images/math/bbslash.svgz +%%DATADIR%%/images/math/bcancel.svgz +%%DATADIR%%/images/math/because.svgz +%%DATADIR%%/images/math/bell.svgz +%%DATADIR%%/images/math/beta.svgz +%%DATADIR%%/images/math/beth.svgz +%%DATADIR%%/images/math/between.svgz +%%DATADIR%%/images/math/bigbox.svgz +%%DATADIR%%/images/math/bigcap.svgz +%%DATADIR%%/images/math/bigcirc.svgz +%%DATADIR%%/images/math/bigcup.svgz +%%DATADIR%%/images/math/bigcurlyvee.svgz +%%DATADIR%%/images/math/bigcurlywedge.svgz +%%DATADIR%%/images/math/biginterleave.svgz +%%DATADIR%%/images/math/bignplus.svgz +%%DATADIR%%/images/math/bigodot.svgz +%%DATADIR%%/images/math/bigoplus.svgz +%%DATADIR%%/images/math/bigotimes.svgz +%%DATADIR%%/images/math/bigparallel.svgz +%%DATADIR%%/images/math/bigsqcap.svgz +%%DATADIR%%/images/math/bigsqcup.svgz +%%DATADIR%%/images/math/bigstar.svgz +%%DATADIR%%/images/math/bigtriangledown.svgz +%%DATADIR%%/images/math/bigtriangleup.svgz +%%DATADIR%%/images/math/biguplus.svgz +%%DATADIR%%/images/math/bigvee.svgz +%%DATADIR%%/images/math/bigwedge.svgz +%%DATADIR%%/images/math/binampersand.svgz +%%DATADIR%%/images/math/bindnasrepma.svgz +%%DATADIR%%/images/math/blacklozenge.svgz +%%DATADIR%%/images/math/blacksmiley.svgz +%%DATADIR%%/images/math/blacksquare.svgz +%%DATADIR%%/images/math/blacktriangle.svgz +%%DATADIR%%/images/math/blacktriangledown.svgz +%%DATADIR%%/images/math/blacktriangleleft.svgz +%%DATADIR%%/images/math/blacktriangleright.svgz +%%DATADIR%%/images/math/boldsymbol.svgz +%%DATADIR%%/images/math/bot.svgz +%%DATADIR%%/images/math/bowtie.svgz +%%DATADIR%%/images/math/bowtie2.svgz +%%DATADIR%%/images/math/box2.svgz +%%DATADIR%%/images/math/boxast.svgz +%%DATADIR%%/images/math/boxbar.svgz +%%DATADIR%%/images/math/boxbox.svgz +%%DATADIR%%/images/math/boxbslash.svgz +%%DATADIR%%/images/math/boxcircle.svgz +%%DATADIR%%/images/math/boxdot.svgz +%%DATADIR%%/images/math/boxempty.svgz +%%DATADIR%%/images/math/boxminus.svgz +%%DATADIR%%/images/math/boxplus.svgz +%%DATADIR%%/images/math/boxslash.svgz +%%DATADIR%%/images/math/boxtimes.svgz +%%DATADIR%%/images/math/breve.svgz +%%DATADIR%%/images/math/brokenvert.svgz +%%DATADIR%%/images/math/bullet.svgz +%%DATADIR%%/images/math/bumpeq.svgz +%%DATADIR%%/images/math/bumpeq2.svgz +%%DATADIR%%/images/math/cancel.svgz +%%DATADIR%%/images/math/cancelto.svgz +%%DATADIR%%/images/math/cancer.svgz +%%DATADIR%%/images/math/cap.svgz +%%DATADIR%%/images/math/cap2.svgz +%%DATADIR%%/images/math/capricornus.svgz +%%DATADIR%%/images/math/cases.svgz +%%DATADIR%%/images/math/cdot.svgz +%%DATADIR%%/images/math/cdotp.svgz +%%DATADIR%%/images/math/cdots.svgz +%%DATADIR%%/images/math/cent.svgz +%%DATADIR%%/images/math/centerdot.svgz +%%DATADIR%%/images/math/check.svgz +%%DATADIR%%/images/math/checked.svgz +%%DATADIR%%/images/math/checkedbox2.svgz +%%DATADIR%%/images/math/checkmark.svgz +%%DATADIR%%/images/math/chi.svgz +%%DATADIR%%/images/math/circ.svgz +%%DATADIR%%/images/math/circeq.svgz +%%DATADIR%%/images/math/circle2.svgz +%%DATADIR%%/images/math/circle3.svgz +%%DATADIR%%/images/math/circlearrowleft.svgz +%%DATADIR%%/images/math/circlearrowright.svgz +%%DATADIR%%/images/math/circledR.svgz +%%DATADIR%%/images/math/circledS.svgz +%%DATADIR%%/images/math/circledast.svgz +%%DATADIR%%/images/math/circledcirc.svgz +%%DATADIR%%/images/math/circleddash.svgz +%%DATADIR%%/images/math/clock.svgz +%%DATADIR%%/images/math/clubsuit.svgz +%%DATADIR%%/images/math/colon.svgz +%%DATADIR%%/images/math/colonapprox.svgz +%%DATADIR%%/images/math/colonapprox2.svgz +%%DATADIR%%/images/math/coloneq.svgz +%%DATADIR%%/images/math/coloneq2.svgz +%%DATADIR%%/images/math/coloneqq.svgz +%%DATADIR%%/images/math/coloneqq2.svgz +%%DATADIR%%/images/math/colonsim.svgz +%%DATADIR%%/images/math/colonsim2.svgz +%%DATADIR%%/images/math/complement.svgz +%%DATADIR%%/images/math/cong.svgz +%%DATADIR%%/images/math/conjunction.svgz +%%DATADIR%%/images/math/coprod.svgz +%%DATADIR%%/images/math/cup.svgz +%%DATADIR%%/images/math/cup2.svgz +%%DATADIR%%/images/math/curlyeqprec.svgz +%%DATADIR%%/images/math/curlyeqsucc.svgz +%%DATADIR%%/images/math/curlyvee.svgz +%%DATADIR%%/images/math/curlyveedownarrow.svgz +%%DATADIR%%/images/math/curlyveeuparrow.svgz +%%DATADIR%%/images/math/curlywedge.svgz +%%DATADIR%%/images/math/curlywedgedownarrow.svgz +%%DATADIR%%/images/math/curlywedgeuparrow.svgz +%%DATADIR%%/images/math/currency.svgz +%%DATADIR%%/images/math/curvearrowleft.svgz +%%DATADIR%%/images/math/curvearrowright.svgz +%%DATADIR%%/images/math/dagger.svgz +%%DATADIR%%/images/math/daleth.svgz +%%DATADIR%%/images/math/dasharrow.svgz +%%DATADIR%%/images/math/dashleftarrow.svgz +%%DATADIR%%/images/math/dashrightarrow.svgz +%%DATADIR%%/images/math/dashv.svgz +%%DATADIR%%/images/math/davidsstar.svgz +%%DATADIR%%/images/math/dblcolon.svgz +%%DATADIR%%/images/math/ddagger.svgz +%%DATADIR%%/images/math/ddddot.svgz +%%DATADIR%%/images/math/dddot.svgz +%%DATADIR%%/images/math/ddot.svgz +%%DATADIR%%/images/math/ddots.svgz +%%DATADIR%%/images/math/delim.svgz +%%DATADIR%%/images/math/delta.svgz +%%DATADIR%%/images/math/delta2.svgz +%%DATADIR%%/images/math/descnode.svgz +%%DATADIR%%/images/math/diagdown.svgz +%%DATADIR%%/images/math/diagup.svgz +%%DATADIR%%/images/math/diameter.svgz +%%DATADIR%%/images/math/diamond.svgz +%%DATADIR%%/images/math/diamond2.svgz +%%DATADIR%%/images/math/diamondsuit.svgz +%%DATADIR%%/images/math/digamma.svgz +%%DATADIR%%/images/math/div.svgz +%%DATADIR%%/images/math/divideontimes.svgz +%%DATADIR%%/images/math/dot.svgz +%%DATADIR%%/images/math/doteq.svgz +%%DATADIR%%/images/math/doteq2.svgz +%%DATADIR%%/images/math/doteqdot.svgz +%%DATADIR%%/images/math/dotplus.svgz +%%DATADIR%%/images/math/dots.svgz +%%DATADIR%%/images/math/dotsb.svgz +%%DATADIR%%/images/math/dotsc.svgz +%%DATADIR%%/images/math/dotsi.svgz +%%DATADIR%%/images/math/dotsint.svgz +%%DATADIR%%/images/math/dotsintop.svgz +%%DATADIR%%/images/math/dotsm.svgz +%%DATADIR%%/images/math/dotso.svgz +%%DATADIR%%/images/math/doublebarwedge.svgz +%%DATADIR%%/images/math/doublecap.svgz +%%DATADIR%%/images/math/doublecup.svgz +%%DATADIR%%/images/math/downarrow.svgz +%%DATADIR%%/images/math/downarrow2.svgz +%%DATADIR%%/images/math/downarrow3.svgz +%%DATADIR%%/images/math/downdownarrows.svgz +%%DATADIR%%/images/math/downharpoonleft.svgz +%%DATADIR%%/images/math/downharpoonright.svgz +%%DATADIR%%/images/math/earth.svgz +%%DATADIR%%/images/math/eighthnote.svgz +%%DATADIR%%/images/math/ell.svgz +%%DATADIR%%/images/math/empty.svgz +%%DATADIR%%/images/math/emptyset.svgz +%%DATADIR%%/images/math/epsilon.svgz +%%DATADIR%%/images/math/eqcirc.svgz +%%DATADIR%%/images/math/eqcolon.svgz +%%DATADIR%%/images/math/eqcolon2.svgz +%%DATADIR%%/images/math/eqqcolon.svgz +%%DATADIR%%/images/math/eqqcolon2.svgz +%%DATADIR%%/images/math/eqsim.svgz +%%DATADIR%%/images/math/eqslantgtr.svgz +%%DATADIR%%/images/math/eqslantless.svgz +%%DATADIR%%/images/math/equation.svgz +%%DATADIR%%/images/math/equiv.svgz +%%DATADIR%%/images/math/eta.svgz +%%DATADIR%%/images/math/eth.svgz +%%DATADIR%%/images/math/exists.svgz +%%DATADIR%%/images/math/export-others.svgz +%%DATADIR%%/images/math/fallingdotseq.svgz +%%DATADIR%%/images/math/fatbslash.svgz +%%DATADIR%%/images/math/fatsemi.svgz +%%DATADIR%%/images/math/fatslash.svgz +%%DATADIR%%/images/math/female.svgz +%%DATADIR%%/images/math/fint.svgz +%%DATADIR%%/images/math/fintop.svgz +%%DATADIR%%/images/math/flat.svgz +%%DATADIR%%/images/math/font.svgz +%%DATADIR%%/images/math/forall.svgz +%%DATADIR%%/images/math/frac-square.svgz +%%DATADIR%%/images/math/frac.svgz +%%DATADIR%%/images/math/frown.svgz +%%DATADIR%%/images/math/frownie.svgz +%%DATADIR%%/images/math/fullmoon.svgz +%%DATADIR%%/images/math/fullnote.svgz +%%DATADIR%%/images/math/functions.svgz +%%DATADIR%%/images/math/gamma.svgz +%%DATADIR%%/images/math/gamma2.svgz +%%DATADIR%%/images/math/ge.svgz +%%DATADIR%%/images/math/gemini.svgz +%%DATADIR%%/images/math/geq.svgz +%%DATADIR%%/images/math/geqq.svgz +%%DATADIR%%/images/math/geqslant.svgz +%%DATADIR%%/images/math/gets.svgz +%%DATADIR%%/images/math/gg.svgz +%%DATADIR%%/images/math/ggg.svgz +%%DATADIR%%/images/math/gggtr.svgz +%%DATADIR%%/images/math/gimel.svgz +%%DATADIR%%/images/math/gluon.svgz +%%DATADIR%%/images/math/gnapprox.svgz +%%DATADIR%%/images/math/gneq.svgz +%%DATADIR%%/images/math/gneqq.svgz +%%DATADIR%%/images/math/gnsim.svgz +%%DATADIR%%/images/math/grave.svgz +%%DATADIR%%/images/math/gtrapprox.svgz +%%DATADIR%%/images/math/gtrdot.svgz +%%DATADIR%%/images/math/gtreqless.svgz +%%DATADIR%%/images/math/gtreqqless.svgz +%%DATADIR%%/images/math/gtrless.svgz +%%DATADIR%%/images/math/gtrsim.svgz +%%DATADIR%%/images/math/gvertneqq.svgz +%%DATADIR%%/images/math/halfnote.svgz +%%DATADIR%%/images/math/hat.svgz +%%DATADIR%%/images/math/hbar.svgz +%%DATADIR%%/images/math/heartsuit.svgz +%%DATADIR%%/images/math/hexagon.svgz +%%DATADIR%%/images/math/hexstar.svgz +%%DATADIR%%/images/math/hookleftarrow.svgz +%%DATADIR%%/images/math/hookrightarrow.svgz +%%DATADIR%%/images/math/hphantom.svgz +%%DATADIR%%/images/math/hslash.svgz +%%DATADIR%%/images/math/iddots.svgz +%%DATADIR%%/images/math/idotsint.svgz +%%DATADIR%%/images/math/iff.svgz +%%DATADIR%%/images/math/iiiint.svgz +%%DATADIR%%/images/math/iiiintop.svgz +%%DATADIR%%/images/math/iiint.svgz +%%DATADIR%%/images/math/iiintop.svgz +%%DATADIR%%/images/math/iint.svgz +%%DATADIR%%/images/math/iintop.svgz +%%DATADIR%%/images/math/imath.svgz +%%DATADIR%%/images/math/impliedby.svgz +%%DATADIR%%/images/math/implies.svgz +%%DATADIR%%/images/math/in.svgz +%%DATADIR%%/images/math/infty.svgz +%%DATADIR%%/images/math/inplus.svgz +%%DATADIR%%/images/math/int.svgz +%%DATADIR%%/images/math/intercal.svgz +%%DATADIR%%/images/math/interleave.svgz +%%DATADIR%%/images/math/intop.svgz +%%DATADIR%%/images/math/invdiameter.svgz +%%DATADIR%%/images/math/inve.svgz +%%DATADIR%%/images/math/invneg.svgz +%%DATADIR%%/images/math/iota.svgz +%%DATADIR%%/images/math/jmath.svgz +%%DATADIR%%/images/math/join2.svgz +%%DATADIR%%/images/math/jupiter.svgz +%%DATADIR%%/images/math/kappa.svgz +%%DATADIR%%/images/math/kreuz.svgz +%%DATADIR%%/images/math/lambda.svgz +%%DATADIR%%/images/math/lambda2.svgz +%%DATADIR%%/images/math/land.svgz +%%DATADIR%%/images/math/landdownint.svgz +%%DATADIR%%/images/math/landdownintop.svgz +%%DATADIR%%/images/math/landupint.svgz +%%DATADIR%%/images/math/landupintop.svgz +%%DATADIR%%/images/math/langle.svgz +%%DATADIR%%/images/math/lbag.svgz +%%DATADIR%%/images/math/lbag2.svgz +%%DATADIR%%/images/math/lbrace.svgz +%%DATADIR%%/images/math/lbrace_rbrace.svgz +%%DATADIR%%/images/math/lbracket.svgz +%%DATADIR%%/images/math/lbracket_rbracket.svgz +%%DATADIR%%/images/math/lceil.svgz +%%DATADIR%%/images/math/lceil_rceil.svgz +%%DATADIR%%/images/math/ldotp.svgz +%%DATADIR%%/images/math/ldots.svgz +%%DATADIR%%/images/math/le.svgz +%%DATADIR%%/images/math/leadsto.svgz +%%DATADIR%%/images/math/leftarrow.svgz +%%DATADIR%%/images/math/leftarrow2.svgz +%%DATADIR%%/images/math/leftarrow3.svgz +%%DATADIR%%/images/math/leftarrowtail.svgz +%%DATADIR%%/images/math/leftarrowtriangle.svgz +%%DATADIR%%/images/math/leftcircle2.svgz +%%DATADIR%%/images/math/leftcircle3.svgz +%%DATADIR%%/images/math/leftcircle4.svgz +%%DATADIR%%/images/math/leftharpoondown.svgz +%%DATADIR%%/images/math/leftharpoonup.svgz +%%DATADIR%%/images/math/leftleftarrows.svgz +%%DATADIR%%/images/math/leftmoon.svgz +%%DATADIR%%/images/math/leftrightarrow.svgz +%%DATADIR%%/images/math/leftrightarrow2.svgz +%%DATADIR%%/images/math/leftrightarroweq.svgz +%%DATADIR%%/images/math/leftrightarrows.svgz +%%DATADIR%%/images/math/leftrightarrowtriangle.svgz +%%DATADIR%%/images/math/leftrightharpoons.svgz +%%DATADIR%%/images/math/leftrightsquigarrow.svgz +%%DATADIR%%/images/math/leftslice.svgz +%%DATADIR%%/images/math/leftthreetimes.svgz +%%DATADIR%%/images/math/leftturn.svgz +%%DATADIR%%/images/math/leo.svgz +%%DATADIR%%/images/math/leq.svgz +%%DATADIR%%/images/math/leqq.svgz +%%DATADIR%%/images/math/leqslant.svgz +%%DATADIR%%/images/math/lessapprox.svgz +%%DATADIR%%/images/math/lessdot.svgz +%%DATADIR%%/images/math/lesseqgtr.svgz +%%DATADIR%%/images/math/lesseqqgtr.svgz +%%DATADIR%%/images/math/lessgtr.svgz +%%DATADIR%%/images/math/lesssim.svgz +%%DATADIR%%/images/math/lfloor.svgz +%%DATADIR%%/images/math/lfloor_rfloor.svgz +%%DATADIR%%/images/math/lhd.svgz +%%DATADIR%%/images/math/lhd2.svgz +%%DATADIR%%/images/math/lhook.svgz +%%DATADIR%%/images/math/libra.svgz +%%DATADIR%%/images/math/lightning.svgz +%%DATADIR%%/images/math/ll.svgz +%%DATADIR%%/images/math/llbracket.svgz +%%DATADIR%%/images/math/llceil.svgz +%%DATADIR%%/images/math/llcorner.svgz +%%DATADIR%%/images/math/llfloor.svgz +%%DATADIR%%/images/math/lll.svgz +%%DATADIR%%/images/math/llless.svgz +%%DATADIR%%/images/math/llparenthesis.svgz +%%DATADIR%%/images/math/lnapprox.svgz +%%DATADIR%%/images/math/lneq.svgz +%%DATADIR%%/images/math/lneqq.svgz +%%DATADIR%%/images/math/lnot.svgz +%%DATADIR%%/images/math/lnsim.svgz +%%DATADIR%%/images/math/logof.svgz +%%DATADIR%%/images/math/longarrownot.svgz +%%DATADIR%%/images/math/longarrownot2.svgz +%%DATADIR%%/images/math/longleftarrow.svgz +%%DATADIR%%/images/math/longleftarrow2.svgz +%%DATADIR%%/images/math/longleftrightarrow.svgz +%%DATADIR%%/images/math/longleftrightarrow2.svgz +%%DATADIR%%/images/math/longmapsfrom.svgz +%%DATADIR%%/images/math/longmapsfrom2.svgz +%%DATADIR%%/images/math/longmapsto.svgz +%%DATADIR%%/images/math/longmapsto2.svgz +%%DATADIR%%/images/math/longrightarrow.svgz +%%DATADIR%%/images/math/longrightarrow2.svgz +%%DATADIR%%/images/math/looparrowleft.svgz +%%DATADIR%%/images/math/looparrowright.svgz +%%DATADIR%%/images/math/lor.svgz +%%DATADIR%%/images/math/lozenge.svgz +%%DATADIR%%/images/math/lparen.svgz +%%DATADIR%%/images/math/lparen_rparen.svgz +%%DATADIR%%/images/math/lrcorner.svgz +%%DATADIR%%/images/math/ltimes.svgz +%%DATADIR%%/images/math/lvertneqq.svgz +%%DATADIR%%/images/math/male.svgz +%%DATADIR%%/images/math/maltese.svgz +%%DATADIR%%/images/math/mapsfrom.svgz +%%DATADIR%%/images/math/mapsfrom2.svgz +%%DATADIR%%/images/math/mapsfromchar.svgz +%%DATADIR%%/images/math/mapsfromchar2.svgz +%%DATADIR%%/images/math/mapsto.svgz +%%DATADIR%%/images/math/mapsto2.svgz +%%DATADIR%%/images/math/mapstochar.svgz +%%DATADIR%%/images/math/mapstochar2.svgz +%%DATADIR%%/images/math/mars.svgz +%%DATADIR%%/images/math/mathbb.svgz +%%DATADIR%%/images/math/mathbb_C.svgz +%%DATADIR%%/images/math/mathbb_H.svgz +%%DATADIR%%/images/math/mathbb_N.svgz +%%DATADIR%%/images/math/mathbb_Q.svgz +%%DATADIR%%/images/math/mathbb_R.svgz +%%DATADIR%%/images/math/mathbb_Z.svgz +%%DATADIR%%/images/math/mathbf.svgz +%%DATADIR%%/images/math/mathcal.svgz +%%DATADIR%%/images/math/mathcal_F.svgz +%%DATADIR%%/images/math/mathcal_H.svgz +%%DATADIR%%/images/math/mathcal_L.svgz +%%DATADIR%%/images/math/mathcal_O.svgz +%%DATADIR%%/images/math/mathcircumflex.svgz +%%DATADIR%%/images/math/mathclap.svgz +%%DATADIR%%/images/math/mathdollar.svgz +%%DATADIR%%/images/math/mathfrak.svgz +%%DATADIR%%/images/math/mathit.svgz +%%DATADIR%%/images/math/mathllap.svgz +%%DATADIR%%/images/math/mathparagraph.svgz +%%DATADIR%%/images/math/mathring.svgz +%%DATADIR%%/images/math/mathrlap.svgz +%%DATADIR%%/images/math/mathrm.svgz +%%DATADIR%%/images/math/mathrm_T.svgz +%%DATADIR%%/images/math/mathscr.svgz +%%DATADIR%%/images/math/mathsection.svgz +%%DATADIR%%/images/math/mathsf.svgz +%%DATADIR%%/images/math/mathtt.svgz +%%DATADIR%%/images/math/matrix.svgz +%%DATADIR%%/images/math/measuredangle.svgz +%%DATADIR%%/images/math/mercury.svgz +%%DATADIR%%/images/math/merge.svgz +%%DATADIR%%/images/math/mho.svgz +%%DATADIR%%/images/math/mid.svgz +%%DATADIR%%/images/math/minuso.svgz +%%DATADIR%%/images/math/models.svgz +%%DATADIR%%/images/math/moo.svgz +%%DATADIR%%/images/math/mp.svgz +%%DATADIR%%/images/math/mu.svgz +%%DATADIR%%/images/math/multimap.svgz +%%DATADIR%%/images/math/nabla.svgz +%%DATADIR%%/images/math/natural.svgz +%%DATADIR%%/images/math/ncong.svgz +%%DATADIR%%/images/math/ne.svgz +%%DATADIR%%/images/math/nearrow.svgz +%%DATADIR%%/images/math/neg.svgz +%%DATADIR%%/images/math/neptune.svgz +%%DATADIR%%/images/math/neq.svgz +%%DATADIR%%/images/math/newmoon.svgz +%%DATADIR%%/images/math/nexists.svgz +%%DATADIR%%/images/math/ngeq.svgz +%%DATADIR%%/images/math/ngeqq.svgz +%%DATADIR%%/images/math/ngeqslant.svgz +%%DATADIR%%/images/math/ngtr.svgz +%%DATADIR%%/images/math/ni.svgz +%%DATADIR%%/images/math/niplus.svgz +%%DATADIR%%/images/math/nleftarrow.svgz +%%DATADIR%%/images/math/nleftarrow2.svgz +%%DATADIR%%/images/math/nleftrightarrow.svgz +%%DATADIR%%/images/math/nleftrightarrow2.svgz +%%DATADIR%%/images/math/nleq.svgz +%%DATADIR%%/images/math/nleqq.svgz +%%DATADIR%%/images/math/nleqslant.svgz +%%DATADIR%%/images/math/nless.svgz +%%DATADIR%%/images/math/nmid.svgz +%%DATADIR%%/images/math/nnearrow.svgz +%%DATADIR%%/images/math/nnwarrow.svgz +%%DATADIR%%/images/math/not.svgz +%%DATADIR%%/images/math/notin.svgz +%%DATADIR%%/images/math/nparallel.svgz +%%DATADIR%%/images/math/nplus.svgz +%%DATADIR%%/images/math/nprec.svgz +%%DATADIR%%/images/math/npreceq.svgz +%%DATADIR%%/images/math/nrightarrow.svgz +%%DATADIR%%/images/math/nrightarrow2.svgz +%%DATADIR%%/images/math/nshortmid.svgz +%%DATADIR%%/images/math/nshortparallel.svgz +%%DATADIR%%/images/math/nsim.svgz +%%DATADIR%%/images/math/nsubseteq.svgz +%%DATADIR%%/images/math/nsubseteqq.svgz +%%DATADIR%%/images/math/nsucc.svgz +%%DATADIR%%/images/math/nsucceq.svgz +%%DATADIR%%/images/math/nsupseteq.svgz +%%DATADIR%%/images/math/nsupseteqq.svgz +%%DATADIR%%/images/math/ntriangleleft.svgz +%%DATADIR%%/images/math/ntrianglelefteq.svgz +%%DATADIR%%/images/math/ntrianglelefteqslant.svgz +%%DATADIR%%/images/math/ntriangleright.svgz +%%DATADIR%%/images/math/ntrianglerighteq.svgz +%%DATADIR%%/images/math/ntrianglerighteqslant.svgz +%%DATADIR%%/images/math/nu.svgz +%%DATADIR%%/images/math/nvdash.svgz +%%DATADIR%%/images/math/nvdash2.svgz +%%DATADIR%%/images/math/nvdash3.svgz +%%DATADIR%%/images/math/nvdash4.svgz +%%DATADIR%%/images/math/nwarrow.svgz +%%DATADIR%%/images/math/obar.svgz +%%DATADIR%%/images/math/oblong.svgz +%%DATADIR%%/images/math/obslash.svgz +%%DATADIR%%/images/math/ocircle.svgz +%%DATADIR%%/images/math/octagon.svgz +%%DATADIR%%/images/math/odot.svgz +%%DATADIR%%/images/math/ogreaterthan.svgz +%%DATADIR%%/images/math/oiint.svgz +%%DATADIR%%/images/math/oiintop.svgz +%%DATADIR%%/images/math/oint.svgz +%%DATADIR%%/images/math/ointclockwise.svgz +%%DATADIR%%/images/math/ointclockwiseop.svgz +%%DATADIR%%/images/math/ointctrclockwise.svgz +%%DATADIR%%/images/math/ointctrclockwiseop.svgz +%%DATADIR%%/images/math/ointop.svgz +%%DATADIR%%/images/math/olessthan.svgz +%%DATADIR%%/images/math/omega.svgz +%%DATADIR%%/images/math/omega2.svgz +%%DATADIR%%/images/math/ominus.svgz +%%DATADIR%%/images/math/openo.svgz +%%DATADIR%%/images/math/oplus.svgz +%%DATADIR%%/images/math/opposition.svgz +%%DATADIR%%/images/math/oslash.svgz +%%DATADIR%%/images/math/otimes.svgz +%%DATADIR%%/images/math/ovee.svgz +%%DATADIR%%/images/math/overbrace.svgz +%%DATADIR%%/images/math/overleftarrow.svgz +%%DATADIR%%/images/math/overleftrightarrow.svgz +%%DATADIR%%/images/math/overline.svgz +%%DATADIR%%/images/math/overrightarrow.svgz +%%DATADIR%%/images/math/overset.svgz +%%DATADIR%%/images/math/owedge.svgz +%%DATADIR%%/images/math/owns.svgz +%%DATADIR%%/images/math/oxygen/cases.svgz +%%DATADIR%%/images/math/oxygen/delim.svgz +%%DATADIR%%/images/math/oxygen/font.svgz +%%DATADIR%%/images/math/oxygen/frac-square.svgz +%%DATADIR%%/images/math/oxygen/frac.svgz +%%DATADIR%%/images/math/oxygen/functions.svgz +%%DATADIR%%/images/math/oxygen/space.svgz +%%DATADIR%%/images/math/oxygen/style.svgz +%%DATADIR%%/images/math/parallel.svgz +%%DATADIR%%/images/math/partial.svgz +%%DATADIR%%/images/math/pentagon.svgz +%%DATADIR%%/images/math/permil.svgz +%%DATADIR%%/images/math/perp.svgz +%%DATADIR%%/images/math/phantom.svgz +%%DATADIR%%/images/math/phi.svgz +%%DATADIR%%/images/math/phi2.svgz +%%DATADIR%%/images/math/phone.svgz +%%DATADIR%%/images/math/photon.svgz +%%DATADIR%%/images/math/pi.svgz +%%DATADIR%%/images/math/pi2.svgz +%%DATADIR%%/images/math/pisces.svgz +%%DATADIR%%/images/math/pitchfork.svgz +%%DATADIR%%/images/math/pluto.svgz +%%DATADIR%%/images/math/pm.svgz +%%DATADIR%%/images/math/pointer.svgz +%%DATADIR%%/images/math/prec.svgz +%%DATADIR%%/images/math/precapprox.svgz +%%DATADIR%%/images/math/preccurlyeq.svgz +%%DATADIR%%/images/math/preceq.svgz +%%DATADIR%%/images/math/precnapprox.svgz +%%DATADIR%%/images/math/precneqq.svgz +%%DATADIR%%/images/math/precnsim.svgz +%%DATADIR%%/images/math/precsim.svgz +%%DATADIR%%/images/math/prime.svgz +%%DATADIR%%/images/math/prod.svgz +%%DATADIR%%/images/math/propto.svgz +%%DATADIR%%/images/math/psi.svgz +%%DATADIR%%/images/math/psi2.svgz +%%DATADIR%%/images/math/quarternote.svgz +%%DATADIR%%/images/math/rangle.svgz +%%DATADIR%%/images/math/rbag.svgz +%%DATADIR%%/images/math/rbag2.svgz +%%DATADIR%%/images/math/rbrace.svgz +%%DATADIR%%/images/math/rbracket.svgz +%%DATADIR%%/images/math/rceil.svgz +%%DATADIR%%/images/math/recorder.svgz +%%DATADIR%%/images/math/restriction.svgz +%%DATADIR%%/images/math/rfloor.svgz +%%DATADIR%%/images/math/rhd.svgz +%%DATADIR%%/images/math/rhd2.svgz +%%DATADIR%%/images/math/rho.svgz +%%DATADIR%%/images/math/rhook.svgz +%%DATADIR%%/images/math/rightarrow.svgz +%%DATADIR%%/images/math/rightarrow2.svgz +%%DATADIR%%/images/math/rightarrow3.svgz +%%DATADIR%%/images/math/rightarrowtail.svgz +%%DATADIR%%/images/math/rightarrowtriangle.svgz +%%DATADIR%%/images/math/rightcircle2.svgz +%%DATADIR%%/images/math/rightcircle3.svgz +%%DATADIR%%/images/math/rightcircle4.svgz +%%DATADIR%%/images/math/rightharpoondown.svgz +%%DATADIR%%/images/math/rightharpoonup.svgz +%%DATADIR%%/images/math/rightleftarrows.svgz +%%DATADIR%%/images/math/rightleftharpoons.svgz +%%DATADIR%%/images/math/rightmoon.svgz +%%DATADIR%%/images/math/rightrightarrows.svgz +%%DATADIR%%/images/math/rightslice.svgz +%%DATADIR%%/images/math/rightsquigarrow.svgz +%%DATADIR%%/images/math/rightthreetimes.svgz +%%DATADIR%%/images/math/rightturn.svgz +%%DATADIR%%/images/math/risingdotseq.svgz +%%DATADIR%%/images/math/root.svgz +%%DATADIR%%/images/math/rparen.svgz +%%DATADIR%%/images/math/rrbracket.svgz +%%DATADIR%%/images/math/rrceil.svgz +%%DATADIR%%/images/math/rrfloor.svgz +%%DATADIR%%/images/math/rrparenthesis.svgz +%%DATADIR%%/images/math/rtimes.svgz +%%DATADIR%%/images/math/sagittarius.svgz +%%DATADIR%%/images/math/saturn.svgz +%%DATADIR%%/images/math/scorpio.svgz +%%DATADIR%%/images/math/searrow.svgz +%%DATADIR%%/images/math/setminus.svgz +%%DATADIR%%/images/math/sharp.svgz +%%DATADIR%%/images/math/shortdownarrow.svgz +%%DATADIR%%/images/math/shortleftarrow.svgz +%%DATADIR%%/images/math/shortmid.svgz +%%DATADIR%%/images/math/shortparallel.svgz +%%DATADIR%%/images/math/shortrightarrow.svgz +%%DATADIR%%/images/math/shortuparrow.svgz +%%DATADIR%%/images/math/sideset.svgz +%%DATADIR%%/images/math/sidesetl.svgz +%%DATADIR%%/images/math/sidesetn.svgz +%%DATADIR%%/images/math/sidesetr.svgz +%%DATADIR%%/images/math/sigma.svgz +%%DATADIR%%/images/math/sigma2.svgz +%%DATADIR%%/images/math/sim.svgz +%%DATADIR%%/images/math/simeq.svgz +%%DATADIR%%/images/math/slash.svgz +%%DATADIR%%/images/math/smallfrown.svgz +%%DATADIR%%/images/math/smallint.svgz +%%DATADIR%%/images/math/smallsetminus.svgz +%%DATADIR%%/images/math/smallsmile.svgz +%%DATADIR%%/images/math/smash.svgz +%%DATADIR%%/images/math/smashb.svgz +%%DATADIR%%/images/math/smasht.svgz +%%DATADIR%%/images/math/smile.svgz +%%DATADIR%%/images/math/smiley.svgz +%%DATADIR%%/images/math/space.svgz +%%DATADIR%%/images/math/spadesuit.svgz +%%DATADIR%%/images/math/sphericalangle.svgz +%%DATADIR%%/images/math/sqcap.svgz +%%DATADIR%%/images/math/sqcup.svgz +%%DATADIR%%/images/math/sqiint.svgz +%%DATADIR%%/images/math/sqiintop.svgz +%%DATADIR%%/images/math/sqint.svgz +%%DATADIR%%/images/math/sqintop.svgz +%%DATADIR%%/images/math/sqrt-square.svgz +%%DATADIR%%/images/math/sqrt.svgz +%%DATADIR%%/images/math/sqsubset.svgz +%%DATADIR%%/images/math/sqsubseteq.svgz +%%DATADIR%%/images/math/sqsupset.svgz +%%DATADIR%%/images/math/sqsupseteq.svgz +%%DATADIR%%/images/math/square.svgz +%%DATADIR%%/images/math/square2.svgz +%%DATADIR%%/images/math/ssearrow.svgz +%%DATADIR%%/images/math/sslash.svgz +%%DATADIR%%/images/math/sswarrow.svgz +%%DATADIR%%/images/math/stackrel.svgz +%%DATADIR%%/images/math/stackrelthree.svgz +%%DATADIR%%/images/math/star.svgz +%%DATADIR%%/images/math/style.svgz +%%DATADIR%%/images/math/sub.svgz +%%DATADIR%%/images/math/subset.svgz +%%DATADIR%%/images/math/subset2.svgz +%%DATADIR%%/images/math/subseteq.svgz +%%DATADIR%%/images/math/subseteqq.svgz +%%DATADIR%%/images/math/subsetneq.svgz +%%DATADIR%%/images/math/subsetneqq.svgz +%%DATADIR%%/images/math/subsetplus.svgz +%%DATADIR%%/images/math/subsetpluseq.svgz +%%DATADIR%%/images/math/succ.svgz +%%DATADIR%%/images/math/succapprox.svgz +%%DATADIR%%/images/math/succcurlyeq.svgz +%%DATADIR%%/images/math/succeq.svgz +%%DATADIR%%/images/math/succnapprox.svgz +%%DATADIR%%/images/math/succneqq.svgz +%%DATADIR%%/images/math/succnsim.svgz +%%DATADIR%%/images/math/succsim.svgz +%%DATADIR%%/images/math/sum.svgz +%%DATADIR%%/images/math/sun.svgz +%%DATADIR%%/images/math/super.svgz +%%DATADIR%%/images/math/supset.svgz +%%DATADIR%%/images/math/supset2.svgz +%%DATADIR%%/images/math/supseteq.svgz +%%DATADIR%%/images/math/supseteqq.svgz +%%DATADIR%%/images/math/supsetneq.svgz +%%DATADIR%%/images/math/supsetneqq.svgz +%%DATADIR%%/images/math/supsetplus.svgz +%%DATADIR%%/images/math/supsetpluseq.svgz +%%DATADIR%%/images/math/surd.svgz +%%DATADIR%%/images/math/swarrow.svgz +%%DATADIR%%/images/math/talloblong.svgz +%%DATADIR%%/images/math/tau.svgz +%%DATADIR%%/images/math/taurus.svgz +%%DATADIR%%/images/math/textdegree.svgz +%%DATADIR%%/images/math/textrm.svgz +%%DATADIR%%/images/math/textrm_AA.svgz +%%DATADIR%%/images/math/textrm_O.svgz +%%DATADIR%%/images/math/therefore.svgz +%%DATADIR%%/images/math/theta.svgz +%%DATADIR%%/images/math/theta2.svgz +%%DATADIR%%/images/math/thickapprox.svgz +%%DATADIR%%/images/math/thicksim.svgz +%%DATADIR%%/images/math/thorn.svgz +%%DATADIR%%/images/math/thorn2.svgz +%%DATADIR%%/images/math/tilde.svgz +%%DATADIR%%/images/math/times.svgz +%%DATADIR%%/images/math/to.svgz +%%DATADIR%%/images/math/top.svgz +%%DATADIR%%/images/math/triangle.svgz +%%DATADIR%%/images/math/triangledown.svgz +%%DATADIR%%/images/math/triangleleft.svgz +%%DATADIR%%/images/math/trianglelefteq.svgz +%%DATADIR%%/images/math/trianglelefteqslant.svgz +%%DATADIR%%/images/math/triangleq.svgz +%%DATADIR%%/images/math/triangleright.svgz +%%DATADIR%%/images/math/trianglerighteq.svgz +%%DATADIR%%/images/math/trianglerighteqslant.svgz +%%DATADIR%%/images/math/twoheadleftarrow.svgz +%%DATADIR%%/images/math/twoheadrightarrow.svgz +%%DATADIR%%/images/math/twonotes.svgz +%%DATADIR%%/images/math/ulcorner.svgz +%%DATADIR%%/images/math/underbar.svgz +%%DATADIR%%/images/math/underbrace.svgz +%%DATADIR%%/images/math/underleftarrow.svgz +%%DATADIR%%/images/math/underleftrightarrow.svgz +%%DATADIR%%/images/math/underline.svgz +%%DATADIR%%/images/math/underrightarrow.svgz +%%DATADIR%%/images/math/underscore.svgz +%%DATADIR%%/images/math/underset.svgz +%%DATADIR%%/images/math/undertilde.svgz +%%DATADIR%%/images/math/unlhd.svgz +%%DATADIR%%/images/math/unrhd.svgz +%%DATADIR%%/images/math/uparrow.svgz +%%DATADIR%%/images/math/uparrow2.svgz +%%DATADIR%%/images/math/uparrow3.svgz +%%DATADIR%%/images/math/updownarrow.svgz +%%DATADIR%%/images/math/updownarrow2.svgz +%%DATADIR%%/images/math/upharpoonleft.svgz +%%DATADIR%%/images/math/upharpoonright.svgz +%%DATADIR%%/images/math/uplus.svgz +%%DATADIR%%/images/math/upsilon.svgz +%%DATADIR%%/images/math/upsilon2.svgz +%%DATADIR%%/images/math/upuparrows.svgz +%%DATADIR%%/images/math/uranus.svgz +%%DATADIR%%/images/math/urcorner.svgz +%%DATADIR%%/images/math/utilde.svgz +%%DATADIR%%/images/math/varangle.svgz +%%DATADIR%%/images/math/varbigcirc.svgz +%%DATADIR%%/images/math/varcopyright.svgz +%%DATADIR%%/images/math/varcurlyvee.svgz +%%DATADIR%%/images/math/varcurlywedge.svgz +%%DATADIR%%/images/math/vardelta2.svgz +%%DATADIR%%/images/math/varepsilon.svgz +%%DATADIR%%/images/math/vargamma2.svgz +%%DATADIR%%/images/math/varhexagon.svgz +%%DATADIR%%/images/math/varhexstar.svgz +%%DATADIR%%/images/math/variiint.svgz +%%DATADIR%%/images/math/variiintop.svgz +%%DATADIR%%/images/math/variint.svgz +%%DATADIR%%/images/math/variintop.svgz +%%DATADIR%%/images/math/varint.svgz +%%DATADIR%%/images/math/varintop.svgz +%%DATADIR%%/images/math/varkappa.svgz +%%DATADIR%%/images/math/varlambda2.svgz +%%DATADIR%%/images/math/varnothing.svgz +%%DATADIR%%/images/math/varoast.svgz +%%DATADIR%%/images/math/varobar.svgz +%%DATADIR%%/images/math/varobslash.svgz +%%DATADIR%%/images/math/varocircle.svgz +%%DATADIR%%/images/math/varodot.svgz +%%DATADIR%%/images/math/varogreaterthan.svgz +%%DATADIR%%/images/math/varoiint.svgz +%%DATADIR%%/images/math/varoiintop.svgz +%%DATADIR%%/images/math/varoint.svgz +%%DATADIR%%/images/math/varointclockwise.svgz +%%DATADIR%%/images/math/varointclockwiseop.svgz +%%DATADIR%%/images/math/varointctrclockwise.svgz +%%DATADIR%%/images/math/varointctrclockwiseop.svgz +%%DATADIR%%/images/math/varointop.svgz +%%DATADIR%%/images/math/varolessthan.svgz +%%DATADIR%%/images/math/varomega2.svgz +%%DATADIR%%/images/math/varominus.svgz +%%DATADIR%%/images/math/varoplus.svgz +%%DATADIR%%/images/math/varoslash.svgz +%%DATADIR%%/images/math/varotimes.svgz +%%DATADIR%%/images/math/varovee.svgz +%%DATADIR%%/images/math/varowedge.svgz +%%DATADIR%%/images/math/varphi.svgz +%%DATADIR%%/images/math/varphi2.svgz +%%DATADIR%%/images/math/varpi.svgz +%%DATADIR%%/images/math/varpi2.svgz +%%DATADIR%%/images/math/varpropto.svgz +%%DATADIR%%/images/math/varpsi2.svgz +%%DATADIR%%/images/math/varrho.svgz +%%DATADIR%%/images/math/varsigma.svgz +%%DATADIR%%/images/math/varsigma2.svgz +%%DATADIR%%/images/math/varsubsetneq.svgz +%%DATADIR%%/images/math/varsubsetneqq.svgz +%%DATADIR%%/images/math/varsupsetneq.svgz +%%DATADIR%%/images/math/varsupsetneqq.svgz +%%DATADIR%%/images/math/vartheta.svgz +%%DATADIR%%/images/math/vartheta2.svgz +%%DATADIR%%/images/math/vartimes.svgz +%%DATADIR%%/images/math/vartriangle.svgz +%%DATADIR%%/images/math/vartriangleleft.svgz +%%DATADIR%%/images/math/vartriangleright.svgz +%%DATADIR%%/images/math/varupsilon2.svgz +%%DATADIR%%/images/math/varxi2.svgz +%%DATADIR%%/images/math/vcentcolon.svgz +%%DATADIR%%/images/math/vdash.svgz +%%DATADIR%%/images/math/vdash2.svgz +%%DATADIR%%/images/math/vdash3.svgz +%%DATADIR%%/images/math/vdots.svgz +%%DATADIR%%/images/math/vec.svgz +%%DATADIR%%/images/math/vee.svgz +%%DATADIR%%/images/math/veebar.svgz +%%DATADIR%%/images/math/venus.svgz +%%DATADIR%%/images/math/vernal.svgz +%%DATADIR%%/images/math/vert.svgz +%%DATADIR%%/images/math/vert2.svgz +%%DATADIR%%/images/math/virgo.svgz +%%DATADIR%%/images/math/vphantom.svgz +%%DATADIR%%/images/math/wasylozenge.svgz +%%DATADIR%%/images/math/wasypropto.svgz +%%DATADIR%%/images/math/wasytherefore.svgz +%%DATADIR%%/images/math/wedge.svgz +%%DATADIR%%/images/math/widehat.svgz +%%DATADIR%%/images/math/widetilde.svgz +%%DATADIR%%/images/math/wp.svgz +%%DATADIR%%/images/math/wr.svgz +%%DATADIR%%/images/math/xbox3.svgz +%%DATADIR%%/images/math/xcancel.svgz +%%DATADIR%%/images/math/xi.svgz +%%DATADIR%%/images/math/xi2.svgz +%%DATADIR%%/images/math/xleftarrow.svgz +%%DATADIR%%/images/math/xrightarrow.svgz +%%DATADIR%%/images/math/yen.svgz +%%DATADIR%%/images/math/zeta.svgz +%%DATADIR%%/images/nomencl-insert.svgz +%%DATADIR%%/images/note-insert.svgz +%%DATADIR%%/images/note-next.svgz +%%DATADIR%%/images/outline-down.svgz +%%DATADIR%%/images/outline-in.svgz +%%DATADIR%%/images/outline-out.svgz +%%DATADIR%%/images/outline-up.svgz +%%DATADIR%%/images/oxygen/all-changes-accept.svgz +%%DATADIR%%/images/oxygen/all-changes-reject.svgz +%%DATADIR%%/images/oxygen/bookmark-goto.svgz +%%DATADIR%%/images/oxygen/bookmark-goto_0.svgz +%%DATADIR%%/images/oxygen/bookmark-save.svgz +%%DATADIR%%/images/oxygen/box-insert.svgz +%%DATADIR%%/images/oxygen/buffer-new.svgz +%%DATADIR%%/images/oxygen/buffer-reload.svgz +%%DATADIR%%/images/oxygen/buffer-toggle-output-sync.svgz +%%DATADIR%%/images/oxygen/buffer-update.svgz +%%DATADIR%%/images/oxygen/buffer-update_dvi.svgz +%%DATADIR%%/images/oxygen/buffer-update_dvi3.svgz +%%DATADIR%%/images/oxygen/buffer-update_pdf.svgz +%%DATADIR%%/images/oxygen/buffer-update_pdf2.svgz +%%DATADIR%%/images/oxygen/buffer-update_pdf3.svgz +%%DATADIR%%/images/oxygen/buffer-update_pdf4.svgz +%%DATADIR%%/images/oxygen/buffer-update_pdf5.svgz +%%DATADIR%%/images/oxygen/buffer-update_ps.svgz +%%DATADIR%%/images/oxygen/buffer-view.svgz +%%DATADIR%%/images/oxygen/buffer-view_dvi.svgz +%%DATADIR%%/images/oxygen/buffer-view_dvi3.svgz +%%DATADIR%%/images/oxygen/buffer-view_pdf.svgz +%%DATADIR%%/images/oxygen/buffer-view_pdf2.svgz +%%DATADIR%%/images/oxygen/buffer-view_pdf3.svgz +%%DATADIR%%/images/oxygen/buffer-view_pdf4.svgz +%%DATADIR%%/images/oxygen/buffer-view_pdf5.svgz +%%DATADIR%%/images/oxygen/buffer-view_ps.svgz +%%DATADIR%%/images/oxygen/buffer-write-as.svgz +%%DATADIR%%/images/oxygen/buffer-write.svgz +%%DATADIR%%/images/oxygen/change-accept.svgz +%%DATADIR%%/images/oxygen/change-next.svgz +%%DATADIR%%/images/oxygen/change-reject.svgz +%%DATADIR%%/images/oxygen/changes-output.svgz +%%DATADIR%%/images/oxygen/changes-track.svgz +%%DATADIR%%/images/oxygen/closetab.svgz +%%DATADIR%%/images/oxygen/copy.svgz +%%DATADIR%%/images/oxygen/cut.svgz +%%DATADIR%%/images/oxygen/depth-decrement.svgz +%%DATADIR%%/images/oxygen/depth-increment.svgz +%%DATADIR%%/images/oxygen/dialog-show-new-inset_citation.svgz +%%DATADIR%%/images/oxygen/dialog-show-new-inset_graphics.svgz +%%DATADIR%%/images/oxygen/dialog-show-new-inset_include.svgz +%%DATADIR%%/images/oxygen/dialog-show-new-inset_ref.svgz +%%DATADIR%%/images/oxygen/dialog-show_character.svgz +%%DATADIR%%/images/oxygen/dialog-show_findreplace.svgz +%%DATADIR%%/images/oxygen/dialog-show_print.svgz +%%DATADIR%%/images/oxygen/dialog-show_spellchecker.svgz +%%DATADIR%%/images/oxygen/dialog-toggle_findreplaceadv.svgz +%%DATADIR%%/images/oxygen/dialog-toggle_toc.svgz +%%DATADIR%%/images/oxygen/ert-insert.svgz +%%DATADIR%%/images/oxygen/file-open.svgz +%%DATADIR%%/images/oxygen/float-insert_figure.svgz +%%DATADIR%%/images/oxygen/float-insert_table.svgz +%%DATADIR%%/images/oxygen/font-bold.svgz +%%DATADIR%%/images/oxygen/font-emph.svgz +%%DATADIR%%/images/oxygen/font-noun.svgz +%%DATADIR%%/images/oxygen/footnote-insert.svgz +%%DATADIR%%/images/oxygen/href-insert.svgz +%%DATADIR%%/images/oxygen/iconsize.png +%%DATADIR%%/images/oxygen/index-insert.svgz +%%DATADIR%%/images/oxygen/label-insert.svgz +%%DATADIR%%/images/oxygen/layout-document.svgz +%%DATADIR%%/images/oxygen/layout-paragraph.svgz +%%DATADIR%%/images/oxygen/layout.svgz +%%DATADIR%%/images/oxygen/layout_Description.svgz +%%DATADIR%%/images/oxygen/layout_Enumerate.svgz +%%DATADIR%%/images/oxygen/layout_Itemize.svgz +%%DATADIR%%/images/oxygen/layout_List.svgz +%%DATADIR%%/images/oxygen/lyx-quit.svgz +%%DATADIR%%/images/oxygen/marginalnote-insert.svgz +%%DATADIR%%/images/oxygen/master-buffer-update.svgz +%%DATADIR%%/images/oxygen/master-buffer-view.svgz +%%DATADIR%%/images/oxygen/math-macro_newmacroname_newcommand.svgz +%%DATADIR%%/images/oxygen/math-mode.svgz +%%DATADIR%%/images/oxygen/nomencl-insert.svgz +%%DATADIR%%/images/oxygen/note-insert.svgz +%%DATADIR%%/images/oxygen/note-next.svgz +%%DATADIR%%/images/oxygen/paste.svgz +%%DATADIR%%/images/oxygen/redo.svgz +%%DATADIR%%/images/oxygen/reload.svgz +%%DATADIR%%/images/oxygen/spelling-continuously.svgz +%%DATADIR%%/images/oxygen/tab-group-close.svgz +%%DATADIR%%/images/oxygen/tabular-insert.svgz +%%DATADIR%%/images/oxygen/textstyle-apply.svgz +%%DATADIR%%/images/oxygen/thesaurus-entry.svgz +%%DATADIR%%/images/oxygen/toolbar-toggle_math.svgz +%%DATADIR%%/images/oxygen/toolbar-toggle_table.svgz +%%DATADIR%%/images/oxygen/undo.svgz +%%DATADIR%%/images/oxygen/update-others.svgz +%%DATADIR%%/images/oxygen/url-insert.svgz +%%DATADIR%%/images/oxygen/vc-revert.svgz +%%DATADIR%%/images/oxygen/view-others.svgz +%%DATADIR%%/images/oxygen/view-split_horizontal.svgz +%%DATADIR%%/images/oxygen/view-split_vertical.svgz +%%DATADIR%%/images/paste.svgz %%DATADIR%%/images/psnfss1.png %%DATADIR%%/images/psnfss2.png %%DATADIR%%/images/psnfss3.png %%DATADIR%%/images/psnfss4.png -%%DATADIR%%/images/redo.png -%%DATADIR%%/images/reload.png -%%DATADIR%%/images/script-insert_subscript.png -%%DATADIR%%/images/script-insert_superscript.png -%%DATADIR%%/images/spelling-continuously.png +%%DATADIR%%/images/redo.svgz +%%DATADIR%%/images/reload.svgz +%%DATADIR%%/images/script-insert_subscript.svgz +%%DATADIR%%/images/script-insert_superscript.svgz +%%DATADIR%%/images/specialchar-insert_latex.svgz +%%DATADIR%%/images/specialchar-insert_latex2e.svgz +%%DATADIR%%/images/specialchar-insert_lyx.svgz +%%DATADIR%%/images/specialchar-insert_menu-separator.svgz +%%DATADIR%%/images/specialchar-insert_tex.svgz +%%DATADIR%%/images/spelling-continuously.svgz %%DATADIR%%/images/standard.png -%%DATADIR%%/images/tab-group-close.png -%%DATADIR%%/images/tabular-feature_align-decimal.png -%%DATADIR%%/images/tabular-feature_append-column.png -%%DATADIR%%/images/tabular-feature_append-row.png -%%DATADIR%%/images/tabular-feature_delete-column.png -%%DATADIR%%/images/tabular-feature_delete-row.png -%%DATADIR%%/images/tabular-feature_m-align-center.png -%%DATADIR%%/images/tabular-feature_m-align-left.png -%%DATADIR%%/images/tabular-feature_m-align-right.png -%%DATADIR%%/images/tabular-feature_m-valign-bottom.png -%%DATADIR%%/images/tabular-feature_m-valign-middle.png -%%DATADIR%%/images/tabular-feature_m-valign-top.png -%%DATADIR%%/images/tabular-feature_move-column-left.png -%%DATADIR%%/images/tabular-feature_move-column-right.png -%%DATADIR%%/images/tabular-feature_move-row-down.png -%%DATADIR%%/images/tabular-feature_move-row-up.png -%%DATADIR%%/images/tabular-feature_multicolumn.png -%%DATADIR%%/images/tabular-feature_multirow.png -%%DATADIR%%/images/tabular-feature_set-all-lines.png -%%DATADIR%%/images/tabular-feature_set-border-lines.png -%%DATADIR%%/images/tabular-feature_set-longtabular.png -%%DATADIR%%/images/tabular-feature_set-rotate-cell.png -%%DATADIR%%/images/tabular-feature_set-rotate-tabular.png -%%DATADIR%%/images/tabular-feature_toggle-line-bottom.png -%%DATADIR%%/images/tabular-feature_toggle-line-left.png -%%DATADIR%%/images/tabular-feature_toggle-line-right.png -%%DATADIR%%/images/tabular-feature_toggle-line-top.png -%%DATADIR%%/images/tabular-feature_toggle-rotate-cell.png -%%DATADIR%%/images/tabular-feature_toggle-rotate-tabular.png -%%DATADIR%%/images/tabular-feature_unset-all-lines.png -%%DATADIR%%/images/tabular-insert.png -%%DATADIR%%/images/textstyle-apply.png -%%DATADIR%%/images/thesaurus-entry.png -%%DATADIR%%/images/toolbar-toggle_math.png -%%DATADIR%%/images/toolbar-toggle_math_panels.png -%%DATADIR%%/images/toolbar-toggle_table.png -%%DATADIR%%/images/undo.png -%%DATADIR%%/images/unknown.png -%%DATADIR%%/images/up.png -%%DATADIR%%/images/update-others.png -%%DATADIR%%/images/url-insert.png -%%DATADIR%%/images/vc-check-in.png -%%DATADIR%%/images/vc-check-out.png -%%DATADIR%%/images/vc-compare.png -%%DATADIR%%/images/vc-compare_0.png -%%DATADIR%%/images/vc-locking-toggle.png -%%DATADIR%%/images/vc-register.png -%%DATADIR%%/images/vc-repo-update.png -%%DATADIR%%/images/vc-revert.png -%%DATADIR%%/images/view-others.png -%%DATADIR%%/images/view-split_horizontal.png -%%DATADIR%%/images/view-split_vertical.png +%%DATADIR%%/images/tab-group-close.svgz +%%DATADIR%%/images/tabular-feature_align-decimal.svgz +%%DATADIR%%/images/tabular-feature_append-column.svgz +%%DATADIR%%/images/tabular-feature_append-row.svgz +%%DATADIR%%/images/tabular-feature_delete-column.svgz +%%DATADIR%%/images/tabular-feature_delete-row.svgz +%%DATADIR%%/images/tabular-feature_m-align-center.svgz +%%DATADIR%%/images/tabular-feature_m-align-left.svgz +%%DATADIR%%/images/tabular-feature_m-align-right.svgz +%%DATADIR%%/images/tabular-feature_m-valign-bottom.svgz +%%DATADIR%%/images/tabular-feature_m-valign-middle.svgz +%%DATADIR%%/images/tabular-feature_m-valign-top.svgz +%%DATADIR%%/images/tabular-feature_move-column-left.svgz +%%DATADIR%%/images/tabular-feature_move-column-right.svgz +%%DATADIR%%/images/tabular-feature_move-row-down.svgz +%%DATADIR%%/images/tabular-feature_move-row-up.svgz +%%DATADIR%%/images/tabular-feature_multicolumn.svgz +%%DATADIR%%/images/tabular-feature_multirow.svgz +%%DATADIR%%/images/tabular-feature_set-all-lines.svgz +%%DATADIR%%/images/tabular-feature_set-border-lines.svgz +%%DATADIR%%/images/tabular-feature_set-longtabular.svgz +%%DATADIR%%/images/tabular-feature_set-rotate-cell.svgz +%%DATADIR%%/images/tabular-feature_set-rotate-tabular.svgz +%%DATADIR%%/images/tabular-feature_toggle-line-bottom.svgz +%%DATADIR%%/images/tabular-feature_toggle-line-left.svgz +%%DATADIR%%/images/tabular-feature_toggle-line-right.svgz +%%DATADIR%%/images/tabular-feature_toggle-line-top.svgz +%%DATADIR%%/images/tabular-feature_toggle-rotate-cell.svgz +%%DATADIR%%/images/tabular-feature_toggle-rotate-tabular.svgz +%%DATADIR%%/images/tabular-feature_unset-all-lines.svgz +%%DATADIR%%/images/tabular-insert.svgz +%%DATADIR%%/images/textstyle-apply.svgz +%%DATADIR%%/images/thesaurus-entry.svgz +%%DATADIR%%/images/toolbar-toggle_math.svgz +%%DATADIR%%/images/toolbar-toggle_math_panels.svgz +%%DATADIR%%/images/toolbar-toggle_table.svgz +%%DATADIR%%/images/undo.svgz +%%DATADIR%%/images/unknown.svgz +%%DATADIR%%/images/up.svgz +%%DATADIR%%/images/update-others.svgz +%%DATADIR%%/images/url-insert.svgz +%%DATADIR%%/images/vc-check-in.svgz +%%DATADIR%%/images/vc-check-out.svgz +%%DATADIR%%/images/vc-compare.svgz +%%DATADIR%%/images/vc-compare_0.svgz +%%DATADIR%%/images/vc-locking-toggle.svgz +%%DATADIR%%/images/vc-register.svgz +%%DATADIR%%/images/vc-repo-update.svgz +%%DATADIR%%/images/vc-revert.svgz +%%DATADIR%%/images/view-others.svgz +%%DATADIR%%/images/view-split_horizontal.svgz +%%DATADIR%%/images/view-split_vertical.svgz %%DATADIR%%/kbd/american-2.kmap %%DATADIR%%/kbd/american.kmap %%DATADIR%%/kbd/arabic.kmap @@ -1987,10 +2024,12 @@ share/icons/hicolor/scalable/apps/lyx.svg %%DATADIR%%/layouts/aapaper.inc %%DATADIR%%/layouts/aapaper.layout %%DATADIR%%/layouts/aastex.layout +%%DATADIR%%/layouts/aastex6.layout %%DATADIR%%/layouts/achemso.layout %%DATADIR%%/layouts/acm-sigs-alt.layout %%DATADIR%%/layouts/acm-sigs.inc %%DATADIR%%/layouts/acm-sigs.layout +%%DATADIR%%/layouts/acmsiggraph-0-92.layout %%DATADIR%%/layouts/acmsiggraph.layout %%DATADIR%%/layouts/agu-dtd.layout %%DATADIR%%/layouts/agu_stdclass.inc @@ -2017,6 +2056,7 @@ share/icons/hicolor/scalable/apps/lyx.svg %%DATADIR%%/layouts/book.layout %%DATADIR%%/layouts/braille.module %%DATADIR%%/layouts/broadway.layout +%%DATADIR%%/layouts/changebars.module %%DATADIR%%/layouts/chess.layout %%DATADIR%%/layouts/cl2emult.layout %%DATADIR%%/layouts/ctex-article.layout @@ -2048,6 +2088,7 @@ share/icons/hicolor/scalable/apps/lyx.svg %%DATADIR%%/layouts/entcs.layout %%DATADIR%%/layouts/enumitem.module %%DATADIR%%/layouts/eqs-within-sections.module +%%DATADIR%%/layouts/europasscv.layout %%DATADIR%%/layouts/europecv.layout %%DATADIR%%/layouts/extarticle.layout %%DATADIR%%/layouts/extbook.layout @@ -2056,20 +2097,24 @@ share/icons/hicolor/scalable/apps/lyx.svg %%DATADIR%%/layouts/figs-within-sections.module %%DATADIR%%/layouts/fix-cm.module %%DATADIR%%/layouts/fixltx2e.module +%%DATADIR%%/layouts/fixme.module %%DATADIR%%/layouts/foils.layout %%DATADIR%%/layouts/foottoend.module %%DATADIR%%/layouts/frletter.layout %%DATADIR%%/layouts/g-brief.layout %%DATADIR%%/layouts/g-brief2.layout +%%DATADIR%%/layouts/graphicboxes.module %%DATADIR%%/layouts/hanging.module %%DATADIR%%/layouts/heb-article.layout %%DATADIR%%/layouts/heb-letter.layout %%DATADIR%%/layouts/hollywood.layout +%%DATADIR%%/layouts/hpstatement.module %%DATADIR%%/layouts/ijmpc.layout %%DATADIR%%/layouts/ijmpd.layout %%DATADIR%%/layouts/initials.module %%DATADIR%%/layouts/iopart.layout %%DATADIR%%/layouts/isprs.layout +%%DATADIR%%/layouts/iucr.layout %%DATADIR%%/layouts/jarticle.layout %%DATADIR%%/layouts/jasatex.layout %%DATADIR%%/layouts/jbook.layout @@ -2105,6 +2150,7 @@ share/icons/hicolor/scalable/apps/lyx.svg %%DATADIR%%/layouts/numreport.inc %%DATADIR%%/layouts/numrevtex.inc %%DATADIR%%/layouts/paper.layout +%%DATADIR%%/layouts/paralist.module %%DATADIR%%/layouts/pdfcomment.module %%DATADIR%%/layouts/pdfform.module %%DATADIR%%/layouts/powerdot.layout @@ -2184,9 +2230,11 @@ share/icons/hicolor/scalable/apps/lyx.svg %%DATADIR%%/layouts/theorems-std.module %%DATADIR%%/layouts/theorems-without-preamble.inc %%DATADIR%%/layouts/theorems.inc +%%DATADIR%%/layouts/todonotes.module %%DATADIR%%/layouts/treport.layout %%DATADIR%%/layouts/tufte-book.layout %%DATADIR%%/layouts/tufte-handout.layout +%%DATADIR%%/layouts/varwidth.module %%DATADIR%%/layouttranslations %%DATADIR%%/lyx2lyx/LyX.py %%DATADIR%%/lyx2lyx/LyX.pyc @@ -2296,6 +2344,7 @@ share/icons/hicolor/scalable/apps/lyx.svg %%DATADIR%%/scripts/tex_copy.py %%DATADIR%%/symbols %%DATADIR%%/syntax.default +%%DATADIR%%/templates/ACM-SIGS.lyx %%DATADIR%%/templates/ACM-siggraph.lyx %%DATADIR%%/templates/ACM-sigplan.lyx %%DATADIR%%/templates/AEA.lyx @@ -2303,6 +2352,7 @@ share/icons/hicolor/scalable/apps/lyx.svg %%DATADIR%%/templates/APA.lyx %%DATADIR%%/templates/APA6.lyx %%DATADIR%%/templates/DocBook_article.lyx +%%DATADIR%%/templates/EPS-cropped.lyx %%DATADIR%%/templates/IEEEtran-CompSoc.lyx %%DATADIR%%/templates/IEEEtran-Conference.lyx %%DATADIR%%/templates/IEEEtran-Journal.lyx @@ -2310,12 +2360,14 @@ share/icons/hicolor/scalable/apps/lyx.svg %%DATADIR%%/templates/IJMPC.lyx %%DATADIR%%/templates/IJMPD.lyx %%DATADIR%%/templates/IOP-article.lyx +%%DATADIR%%/templates/IUCr-article.lyx %%DATADIR%%/templates/JASA.lyx %%DATADIR%%/templates/JSS-article.lyx +%%DATADIR%%/templates/PDF-cropped.lyx %%DATADIR%%/templates/README.new_templates %%DATADIR%%/templates/RJournal.lyx %%DATADIR%%/templates/aa.lyx -%%DATADIR%%/templates/aastex.lyx +%%DATADIR%%/templates/aastex6.lyx %%DATADIR%%/templates/beamer-conference-ornate-20min.lyx %%DATADIR%%/templates/ctex.lyx %%DATADIR%%/templates/de_beamer-conference-ornate-20min.lyx |