Page MenuHomeSolus

D8798.diff
No OneTemporary

D8798.diff

diff --git a/abi_used_libs b/abi_used_libs
new file mode 100644
--- /dev/null
+++ b/abi_used_libs
@@ -0,0 +1,6 @@
+ld-linux-x86-64.so.2
+libc.so.6
+libdl.so.2
+libgcc_s.so.1
+libm.so.6
+libpthread.so.0
diff --git a/files/0001-Move-aqt_data-to-sys.prefix-share.patch b/files/0001-Move-aqt_data-to-sys.prefix-share.patch
new file mode 100644
--- /dev/null
+++ b/files/0001-Move-aqt_data-to-sys.prefix-share.patch
@@ -0,0 +1,45 @@
+From d7ecae49a8a46e5ad5f25726044a25006fd1f006 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Johannes=20L=C3=B6thberg?= <johannes@kyriasis.com>
+Date: Sun, 29 Mar 2020 06:24:43 +0200
+Subject: [PATCH] Move aqt_data to sys.prefix/share
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+These files do _not_ belong right under sys.prefix.
+
+Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
+---
+ qt/aqt/utils.py | 2 +-
+ qt/setup.py | 2 +-
+ 2 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/qt/aqt/utils.py b/qt/aqt/utils.py
+index a0e12362..4d8c8c34 100644
+--- a/qt/aqt/utils.py
++++ b/qt/aqt/utils.py
+@@ -21,7 +21,7 @@ from aqt.theme import theme_manager
+
+ def aqt_data_folder() -> str:
+ # wheel install?
+- dir = os.path.join(sys.prefix, "aqt_data")
++ dir = os.path.join(sys.prefix,"share/anki", "aqt_data")
+ if not os.path.exists(dir) or not os.listdir(dir):
+ # running in place?
+ dir = os.path.join(os.path.dirname(__file__), "..", "aqt_data")
+diff --git a/qt/setup.py b/qt/setup.py
+index 6d498994..d67a8791 100644
+--- a/qt/setup.py
++++ b/qt/setup.py
+@@ -9,7 +9,7 @@ with open("../meta/version") as fh:
+ def package_files(directory):
+ entries = []
+ for (path, directories, filenames) in os.walk(directory):
+- entries.append((path, [os.path.join(path, f) for f in filenames]))
++ entries.append((os.path.join("share/anki", path), [os.path.join(path, f) for f in filenames]))
+ return entries
+
+
+--
+2.26.0
+
diff --git a/files/0002-fix-makefile.patch b/files/0002-fix-makefile.patch
new file mode 100644
--- /dev/null
+++ b/files/0002-fix-makefile.patch
@@ -0,0 +1,36 @@
+diff --git a/Makefile b/Makefile
+index e8fa05b6..2da77da1 100644
+--- a/Makefile
++++ b/Makefile
+@@ -63,8 +63,7 @@ pyenv:
+ # https://github.com/PyO3/maturin/issues/283
+ # Expected `python` to be a python interpreter inside a virtualenv
+ set -eu -o pipefail ${SHELLFLAGS}; \
+- "${PYTHON_BIN}" -m pip install virtualenv; \
+- "${PYTHON_BIN}" -m venv pyenv; \
++ "${PYTHON_BIN}" -m venv --system-site-packages pyenv; \
+ case "$$(uname -s)" in CYGWIN*|MINGW*|MSYS*) \
+ dos2unix "${ACTIVATE_SCRIPT}"; \
+ VIRTUAL_ENV="$$(pwd)"; \
+@@ -74,11 +73,7 @@ pyenv:
+ ;; esac; \
+ . "${ACTIVATE_SCRIPT}"; \
+ python --version; \
+- python -m pip install --upgrade pip setuptools; \
+- ${ANKI_EXTRA_PIP}; \
+- if ! python -c 'import PyQt5' 2>/dev/null; then \
+- python -m pip install -r qt/requirements.qt; \
+- fi;
++ ${ANKI_EXTRA_PIP};
+
+ # update build hash
+ .PHONY: buildhash
+@@ -117,7 +112,7 @@ qt/po/repo:
+ $(MAKE) pull-i18n
+
+ .PHONY: build
+-build: clean-dist build-rspy build-pylib build-qt add-buildhash
++build: buildhash prepare build-rspy build-pylib build-qt add-buildhash
+ @echo
+ @echo "Build complete."
+
diff --git a/files/0003-fix-translation-install.patch b/files/0003-fix-translation-install.patch
new file mode 100644
--- /dev/null
+++ b/files/0003-fix-translation-install.patch
@@ -0,0 +1,10 @@
+diff --git a/qt/po/scripts/copy-qt-files b/qt/po/scripts/copy-qt-files
+index a57ff947..9b79f623 100755
+--- a/qt/po/scripts/copy-qt-files
++++ b/qt/po/scripts/copy-qt-files
+@@ -13,4 +13,4 @@ case "$(uname -s)" in
+ ;;
+ esac
+
+-rsync -a "$qtTranslations/" "$out/"
++
diff --git a/files/fix_mpv.patch b/files/fix_mpv.patch
deleted file mode 100644
--- a/files/fix_mpv.patch
+++ /dev/null
@@ -1,168 +0,0 @@
-diff --git a/anki/mpv.py b/anki/mpv.py
-index f53d9d0b..92e003aa 100644
---- a/anki/mpv.py
-+++ b/anki/mpv.py
-@@ -25,40 +25,49 @@
- #
- # ------------------------------------------------------------------------------
-
--import sys
--import os
--import time
-+import inspect
- import json
--import socket
-+import os
- import select
-+import socket
-+import subprocess
-+import sys
- import tempfile
- import threading
--import subprocess
--import inspect
-+import time
-+from distutils.spawn import ( # pylint: disable=import-error,no-name-in-module
-+ find_executable,
-+)
-+from queue import Empty, Full, Queue
-+from typing import Dict, Optional
-
--from distutils.spawn import find_executable # pylint: disable=import-error,no-name-in-module
--from queue import Queue, Empty, Full
-+from anki.utils import isWin
-
-
- class MPVError(Exception):
- pass
-
-+
- class MPVProcessError(MPVError):
- pass
-
-+
- class MPVCommunicationError(MPVError):
- pass
-
-+
- class MPVCommandError(MPVError):
- pass
-
-+
- class MPVTimeoutError(MPVError):
- pass
-
--from anki.utils import isWin
-+
- if isWin:
- # pylint: disable=import-error
-- import win32file, win32pipe, pywintypes, winerror
-+ import win32file, win32pipe, pywintypes, winerror # pytype: disable=import-error
-+
-
- class MPVBase:
- """Base class for communication with the mpv media player via unix socket
-@@ -66,7 +75,7 @@ class MPVBase:
- """
-
- executable = find_executable("mpv")
-- popenEnv = None
-+ popenEnv: Optional[Dict[str, str]] = None
-
- default_argv = [
- "--idle",
-@@ -104,9 +113,9 @@ class MPVBase:
- """
- self.argv = [self.executable]
- self.argv += self.default_argv
-- self.argv += ["--input-ipc-server", self._sock_filename]
-+ self.argv += ["--input-ipc-server=" + self._sock_filename]
- if self.window_id is not None:
-- self.argv += ["--wid", str(self.window_id)]
-+ self.argv += ["--wid=" + str(self.window_id)]
-
- def _start_process(self):
- """Start the mpv process.
-@@ -142,18 +151,24 @@ class MPVBase:
- startup.
- """
- start = time.time()
-- while self.is_running() and time.time() < start+10:
-+ while self.is_running() and time.time() < start + 10:
- time.sleep(0.1)
-
- if isWin:
- # named pipe
- try:
-- self._sock = win32file.CreateFile(r'\\.\pipe\ankimpv',
-- win32file.GENERIC_READ | win32file.GENERIC_WRITE,
-- 0, None, win32file.OPEN_EXISTING, 0, None)
-- win32pipe.SetNamedPipeHandleState(self._sock,
-- 1, # PIPE_NOWAIT
-- None, None)
-+ self._sock = win32file.CreateFile(
-+ r"\\.\pipe\ankimpv",
-+ win32file.GENERIC_READ | win32file.GENERIC_WRITE,
-+ 0,
-+ None,
-+ win32file.OPEN_EXISTING,
-+ 0,
-+ None,
-+ )
-+ win32pipe.SetNamedPipeHandleState(
-+ self._sock, 1, None, None # PIPE_NOWAIT
-+ )
- except pywintypes.error as err:
- if err.args[0] == winerror.ERROR_FILE_NOT_FOUND:
- pass
-@@ -236,8 +251,8 @@ class MPVBase:
-
- newline = buf.find(b"\n")
- while newline >= 0:
-- data = buf[:newline + 1]
-- buf = buf[newline + 1:]
-+ data = buf[: newline + 1]
-+ buf = buf[newline + 1 :]
-
- if self.debug:
- sys.stdout.write("<<< " + data.decode("utf8", "replace"))
-@@ -254,7 +269,7 @@ class MPVBase:
- """Return a json representation from a message dictionary.
- """
- # XXX may be strict is too strict ;-)
-- data = json.dumps(message, separators=",:")
-+ data = json.dumps(message)
- return data.encode("utf8", "strict") + b"\n"
-
- def _parse_message(self, data):
-@@ -327,7 +342,9 @@ class MPVBase:
- specific data is returned.
- """
- try:
-- message = self._response_queues[self._thread_id()].get(block=True, timeout=timeout)
-+ message = self._response_queues[self._thread_id()].get(
-+ block=True, timeout=timeout
-+ )
- except Empty:
- raise MPVTimeoutError("unable to get response")
-
-@@ -359,7 +376,7 @@ class MPVBase:
- if _retry:
- print("mpv timed out, restarting")
- self._stop_process()
-- return self._send_request(message, timeout, _retry-1)
-+ return self._send_request(message, timeout, _retry - 1)
- else:
- raise
-
-@@ -546,7 +563,9 @@ class MPV(MPVBase):
- try:
- callbacks.remove(callback)
- except ValueError:
-- raise MPVError("callback %r not registered for property %r" % (callback, name))
-+ raise MPVError(
-+ "callback %r not registered for property %r" % (callback, name)
-+ )
-
- serial = self._property_serials.pop((name, callback))
- self.command("unobserve_property", serial)
diff --git a/files/series b/files/series
new file mode 100644
--- /dev/null
+++ b/files/series
@@ -0,0 +1,3 @@
+0001-Move-aqt_data-to-sys.prefix-share.patch
+0002-fix-makefile.patch
+0003-fix-translation-install.patch
diff --git a/package.yml b/package.yml
--- a/package.yml
+++ b/package.yml
@@ -1,29 +1,66 @@
name : anki
-version : 2.1.16
-release : 14
+version : 2.1.26
+release : 15
source :
- - https://github.com/dae/anki/archive/2.1.16.tar.gz : 0e434367b176087c194f276ba336405b785103354901dfa0c7ac0b9c4fa182f6
+ - https://github.com/ankitects/anki/archive/2.1.26.tar.gz : f5a0c41f3eebe0e77de9d46f2a5cbbe20f7c3a4787f0f02e1d33f298428acbdf
license : AGPL-3.0-or-later
component : office.notes
+networking : yes
summary : Spaced repetition flashcard program.
description: |
Anki is a spaced repetition flashcard program. "Anki" is the Japanese word for "memorization". The SM2 algorithm, created for SuperMemo in the late 1980s, forms the basis of the spaced repetition methods employed in the program.
builddeps :
+ - pkgconfig(portaudiocpp)
- pkgconfig(pyside)
+ - pkgconfig(python-3.7)
+ - git
+ - nodejs
+ - pip
+ - PyAudio
+ - pylint
+ - python-beautifulsoup4
+ - python-click
+ - python-decorator
+ - python-distro
+ - python-jsonschema
+ - python-markdown
+ - python-mock
+ - python-mypy
+ - python-protobuf
+ - python-pytest
- python-qtpy
+ - python-regex
+ - python-requests
+ - python-send2trash
+ - python-toml
+ - python-wheel
+ - pyparsing
+ - rsync
+ - rustup
rundeps :
- - PyAudio
+ - gtk2-engine-murrine
- mpv
+ - PyAudio
- python-decorator
- python-beautifulsoup4
- python-jsonschema
- python-markdown
+ - python-protobuf
- python-qtpy
- python-qtwebengine
- python-send2trash
setup : |
- %patch -p1 < $pkgfiles/fix_mpv.patch
+ #Fix Makefile and build scripts
+ %apply_patches
+
+ #create some binary links to satisfy rust build scripts
+ mkdir -p $workdir/.bin
+ ln -sv /usr/bin/ar $workdir/.bin/x86_64-solus-linux-ar
+ ln -sv /usr/bin/ranlib $workdir/.bin/x86_64-solus-linux-ranlib
build : |
- ./tools/build_ui.sh
+ export PATH="$PATH:$workdir/.bin/"
+ make build
install : |
- %make_install
+ pip3 install --isolated --root=$installdir --ignore-installed --no-deps $workdir/dist/*
+ install -Dm00755 qt/runanki $installdir/usr/bin/anki
+ install -Dm00644 qt/anki.desktop $installdir/usr/share/applications/anki.desktop
diff --git a/pspec_x86_64.xml b/pspec_x86_64.xml
--- a/pspec_x86_64.xml
+++ b/pspec_x86_64.xml
@@ -20,419 +20,640 @@
<PartOf>office.notes</PartOf>
<Files>
<Path fileType="executable">/usr/bin/anki</Path>
- <Path fileType="data">/usr/share/anki/anki/__init__.py</Path>
- <Path fileType="data">/usr/share/anki/anki/cards.py</Path>
- <Path fileType="data">/usr/share/anki/anki/collection.py</Path>
- <Path fileType="data">/usr/share/anki/anki/consts.py</Path>
- <Path fileType="data">/usr/share/anki/anki/db.py</Path>
- <Path fileType="data">/usr/share/anki/anki/decks.py</Path>
- <Path fileType="data">/usr/share/anki/anki/errors.py</Path>
- <Path fileType="data">/usr/share/anki/anki/exporting.py</Path>
- <Path fileType="data">/usr/share/anki/anki/find.py</Path>
- <Path fileType="data">/usr/share/anki/anki/hooks.py</Path>
- <Path fileType="data">/usr/share/anki/anki/importing/__init__.py</Path>
- <Path fileType="data">/usr/share/anki/anki/importing/anki2.py</Path>
- <Path fileType="data">/usr/share/anki/anki/importing/apkg.py</Path>
- <Path fileType="data">/usr/share/anki/anki/importing/base.py</Path>
- <Path fileType="data">/usr/share/anki/anki/importing/csvfile.py</Path>
- <Path fileType="data">/usr/share/anki/anki/importing/mnemo.py</Path>
- <Path fileType="data">/usr/share/anki/anki/importing/noteimp.py</Path>
- <Path fileType="data">/usr/share/anki/anki/importing/pauker.py</Path>
- <Path fileType="data">/usr/share/anki/anki/importing/supermemo_xml.py</Path>
- <Path fileType="data">/usr/share/anki/anki/lang.py</Path>
- <Path fileType="data">/usr/share/anki/anki/latex.py</Path>
- <Path fileType="data">/usr/share/anki/anki/media.py</Path>
- <Path fileType="data">/usr/share/anki/anki/models.py</Path>
- <Path fileType="data">/usr/share/anki/anki/mpv.py</Path>
- <Path fileType="data">/usr/share/anki/anki/notes.py</Path>
- <Path fileType="data">/usr/share/anki/anki/sched.py</Path>
- <Path fileType="data">/usr/share/anki/anki/schedv2.py</Path>
- <Path fileType="data">/usr/share/anki/anki/sound.py</Path>
- <Path fileType="data">/usr/share/anki/anki/stats.py</Path>
- <Path fileType="data">/usr/share/anki/anki/statsbg.py</Path>
- <Path fileType="data">/usr/share/anki/anki/stdmodels.py</Path>
- <Path fileType="data">/usr/share/anki/anki/storage.py</Path>
- <Path fileType="data">/usr/share/anki/anki/sync.py</Path>
- <Path fileType="data">/usr/share/anki/anki/tags.py</Path>
- <Path fileType="data">/usr/share/anki/anki/template/LICENSE</Path>
- <Path fileType="data">/usr/share/anki/anki/template/README.anki</Path>
- <Path fileType="data">/usr/share/anki/anki/template/__init__.py</Path>
- <Path fileType="data">/usr/share/anki/anki/template/furigana.py</Path>
- <Path fileType="data">/usr/share/anki/anki/template/hint.py</Path>
- <Path fileType="data">/usr/share/anki/anki/template/template.py</Path>
- <Path fileType="data">/usr/share/anki/anki/template/view.py</Path>
- <Path fileType="data">/usr/share/anki/anki/utils.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/__init__.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/about.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/addcards.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/addons.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/browser.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/clayout.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/customstudy.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/deckbrowser.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/deckchooser.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/deckconf.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/downloader.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/dyndeckconf.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/editcurrent.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/editor.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/errors.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/exporting.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/fields.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/__init__.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/about.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/addcards.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/addfield.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/addmodel.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/addonconf.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/addons.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/browser.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/browserdisp.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/browseropts.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/changemap.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/changemodel.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/clayout_top.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/customstudy.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/dconf.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/debug.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/dyndconf.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/editaddon.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/editcurrent.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/edithtml.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/exporting.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/fields.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/finddupes.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/findreplace.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/getaddons.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/icons_rc.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/importing.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/main.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/modelopts.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/models.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/preferences.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/preview.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/profiles.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/progress.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/reposition.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/reschedule.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/setgroup.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/setlang.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/stats.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/studydeck.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/taglimit.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/forms/template.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/importing.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/main.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/mediasrv.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/modelchooser.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/models.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/overview.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/pinnedmodules.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/preferences.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/profiles.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/progress.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/qt.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/reviewer.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/sound.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/stats.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/studydeck.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/sync.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/tagedit.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/taglimit.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/toolbar.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/update.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/utils.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/webview.py</Path>
- <Path fileType="data">/usr/share/anki/aqt/winpaths.py</Path>
- <Path fileType="data">/usr/share/anki/web/browsersel.js</Path>
- <Path fileType="data">/usr/share/anki/web/deckbrowser.css</Path>
- <Path fileType="data">/usr/share/anki/web/deckbrowser.js</Path>
- <Path fileType="data">/usr/share/anki/web/editor.css</Path>
- <Path fileType="data">/usr/share/anki/web/editor.js</Path>
- <Path fileType="data">/usr/share/anki/web/imgs/anki-logo-thin.png</Path>
- <Path fileType="data">/usr/share/anki/web/imgs/gears.svg</Path>
- <Path fileType="data">/usr/share/anki/web/imgs/media-record.png</Path>
- <Path fileType="data">/usr/share/anki/web/imgs/more.png</Path>
- <Path fileType="data">/usr/share/anki/web/imgs/paperclip.png</Path>
- <Path fileType="data">/usr/share/anki/web/imgs/text_bold.png</Path>
- <Path fileType="data">/usr/share/anki/web/imgs/text_clear.png</Path>
- <Path fileType="data">/usr/share/anki/web/imgs/text_cloze.png</Path>
- <Path fileType="data">/usr/share/anki/web/imgs/text_italic.png</Path>
- <Path fileType="data">/usr/share/anki/web/imgs/text_sub.png</Path>
- <Path fileType="data">/usr/share/anki/web/imgs/text_super.png</Path>
- <Path fileType="data">/usr/share/anki/web/imgs/text_under.png</Path>
- <Path fileType="data">/usr/share/anki/web/jquery-ui.js</Path>
- <Path fileType="data">/usr/share/anki/web/jquery.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/MathJax.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/conf.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/FontWarnings.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/HTML-CSS/handle-floats.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/HelpDialog.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/MatchWebFonts.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/MathEvents.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/MathMenu.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/MathZoom.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/Safe.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/TeX/AMScd.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/TeX/AMSmath.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/TeX/AMSsymbols.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/TeX/HTML.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/TeX/action.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/TeX/autobold.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/TeX/autoload-all.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/TeX/bbox.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/TeX/begingroup.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/TeX/boldsymbol.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/TeX/cancel.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/TeX/color.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/TeX/enclose.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/TeX/extpfeil.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/TeX/mathchoice.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/TeX/mediawiki-texvc.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/TeX/mhchem.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/TeX/mhchem3/mhchem.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/TeX/newcommand.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/TeX/noErrors.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/TeX/noUndefined.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/TeX/unicode.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/TeX/verb.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/asciimath2jax.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/fast-preview.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/jsMath2jax.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/mhchem.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/mml2jax.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/tex2jax.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/extensions/toMathML.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_AMS-Regular.woff</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Bold.woff</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Regular.woff</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Bold.woff</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Regular.woff</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Bold.woff</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Italic.woff</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Regular.woff</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Math-BoldItalic.woff</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Math-Italic.woff</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Math-Regular.woff</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Bold.woff</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Italic.woff</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Regular.woff</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Script-Regular.woff</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size1-Regular.woff</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size2-Regular.woff</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size3-Regular.woff</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size4-Regular.woff</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Typewriter-Regular.woff</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/element/mml/jax.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/element/mml/optable/Arrows.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/element/mml/optable/BasicLatin.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/element/mml/optable/CombDiacritMarks.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/element/mml/optable/CombDiactForSymbols.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/element/mml/optable/Dingbats.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/element/mml/optable/GeneralPunctuation.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/element/mml/optable/GeometricShapes.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/element/mml/optable/GreekAndCoptic.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/element/mml/optable/Latin1Supplement.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/element/mml/optable/LetterlikeSymbols.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/element/mml/optable/MathOperators.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/element/mml/optable/MiscMathSymbolsA.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/element/mml/optable/MiscMathSymbolsB.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/element/mml/optable/MiscSymbolsAndArrows.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/element/mml/optable/MiscTechnical.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/element/mml/optable/SpacingModLetters.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/element/mml/optable/SuppMathOperators.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/element/mml/optable/SupplementalArrowsA.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/element/mml/optable/SupplementalArrowsB.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/AsciiMath/config.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/AsciiMath/jax.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/MathML/config.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/MathML/entities/a.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/MathML/entities/b.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/MathML/entities/c.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/MathML/entities/d.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/MathML/entities/e.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/MathML/entities/f.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/MathML/entities/fr.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/MathML/entities/g.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/MathML/entities/h.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/MathML/entities/i.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/MathML/entities/j.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/MathML/entities/k.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/MathML/entities/l.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/MathML/entities/m.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/MathML/entities/n.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/MathML/entities/o.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/MathML/entities/opf.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/MathML/entities/p.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/MathML/entities/q.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/MathML/entities/r.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/MathML/entities/s.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/MathML/entities/scr.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/MathML/entities/t.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/MathML/entities/u.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/MathML/entities/v.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/MathML/entities/w.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/MathML/entities/x.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/MathML/entities/y.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/MathML/entities/z.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/MathML/jax.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/TeX/config.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/input/TeX/jax.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/CommonHTML/autoload/annotation-xml.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/CommonHTML/autoload/maction.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/CommonHTML/autoload/menclose.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/CommonHTML/autoload/mglyph.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/CommonHTML/autoload/mmultiscripts.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/CommonHTML/autoload/ms.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/CommonHTML/autoload/mtable.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/CommonHTML/autoload/multiline.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/CommonHTML/config.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/CommonHTML/fonts/TeX/AMS-Regular.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/CommonHTML/fonts/TeX/Caligraphic-Bold.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/CommonHTML/fonts/TeX/Fraktur-Bold.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/CommonHTML/fonts/TeX/Fraktur-Regular.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/CommonHTML/fonts/TeX/Main-Bold.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/CommonHTML/fonts/TeX/Math-BoldItalic.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/CommonHTML/fonts/TeX/SansSerif-Bold.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/CommonHTML/fonts/TeX/SansSerif-Italic.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/CommonHTML/fonts/TeX/SansSerif-Regular.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/CommonHTML/fonts/TeX/Script-Regular.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/CommonHTML/fonts/TeX/Typewriter-Regular.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/CommonHTML/fonts/TeX/fontdata-extra.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/CommonHTML/fonts/TeX/fontdata.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/CommonHTML/jax.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/autoload/annotation-xml.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/autoload/maction.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/autoload/menclose.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/autoload/mglyph.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/autoload/mmultiscripts.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/autoload/ms.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/autoload/mtable.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/autoload/multiline.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/config.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Arrows.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BBBold.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BoxDrawing.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/CombDiacritMarks.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/EnclosedAlphanum.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeneralPunctuation.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeometricShapes.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Latin1Supplement.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LetterlikeSymbols.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Main.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MathOperators.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscSymbols.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/PUA.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SpacingModLetters.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SuppMathOperators.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Bold/Main.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Regular/Main.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/BasicLatin.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Main.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/PUA.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/BasicLatin.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Main.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/PUA.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Greek/Bold/Main.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Greek/BoldItalic/Main.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Greek/Italic/Main.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Greek/Regular/Main.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Arrows.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiacritMarks.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiactForSymbols.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeneralPunctuation.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeometricShapes.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Latin1Supplement.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedA.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedB.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LetterlikeSymbols.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Main.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MathOperators.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscMathSymbolsA.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscSymbols.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscTechnical.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SpacingModLetters.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SuppMathOperators.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SupplementalArrowsA.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/CombDiacritMarks.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/GeneralPunctuation.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Latin1Supplement.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LetterlikeSymbols.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Main.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/CombDiacritMarks.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeometricShapes.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/Main.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscSymbols.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SpacingModLetters.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Math/BoldItalic/Main.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Math/Italic/Main.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/BasicLatin.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Main.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Other.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/BasicLatin.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Main.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Other.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/BasicLatin.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Main.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Other.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/BasicLatin.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Main.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Other.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Size1/Regular/Main.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Size2/Regular/Main.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Size3/Regular/Main.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Size4/Regular/Main.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/BasicLatin.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Main.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Other.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/WinChrome/Regular/Main.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/AMS.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Bold.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Main.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/fontdata-extra.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/fonts/TeX/fontdata.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/imageFonts.js</Path>
- <Path fileType="data">/usr/share/anki/web/mathjax/jax/output/HTML-CSS/jax.js</Path>
- <Path fileType="data">/usr/share/anki/web/overview.css</Path>
- <Path fileType="data">/usr/share/anki/web/overview.js</Path>
- <Path fileType="data">/usr/share/anki/web/plot.js</Path>
- <Path fileType="data">/usr/share/anki/web/reviewer-bottom.css</Path>
- <Path fileType="data">/usr/share/anki/web/reviewer-bottom.js</Path>
- <Path fileType="data">/usr/share/anki/web/reviewer.css</Path>
- <Path fileType="data">/usr/share/anki/web/reviewer.js</Path>
- <Path fileType="data">/usr/share/anki/web/toolbar-bottom.css</Path>
- <Path fileType="data">/usr/share/anki/web/toolbar.css</Path>
- <Path fileType="data">/usr/share/anki/web/webview.css</Path>
- <Path fileType="data">/usr/share/anki/web/webview.js</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki-2.1.26.dist-info/INSTALLER</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki-2.1.26.dist-info/METADATA</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki-2.1.26.dist-info/RECORD</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki-2.1.26.dist-info/WHEEL</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki-2.1.26.dist-info/top_level.txt</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/__init__.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/backend_pb2.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/buildinfo.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/cards.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/collection.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/config.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/consts.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/db.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/dbproxy.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/decks.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/errors.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/exporting.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/find.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/fluent_pb2.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/hooks.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/httpclient.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/lang.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/latex.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/media.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/models.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/notes.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/pybackend.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/rsbackend.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/sched.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/schedv2.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/sound.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/stats.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/statsbg.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/stdmodels.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/storage.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/sync.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/tags.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/template.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/template_legacy.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/types.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/__pycache__/utils.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/backend_pb2.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/buildinfo.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/cards.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/collection.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/config.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/consts.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/db.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/dbproxy.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/decks.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/errors.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/exporting.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/find.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/fluent_pb2.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/hooks.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/httpclient.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/importing/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/importing/__pycache__/__init__.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/importing/__pycache__/anki2.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/importing/__pycache__/apkg.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/importing/__pycache__/base.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/importing/__pycache__/csvfile.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/importing/__pycache__/mnemo.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/importing/__pycache__/noteimp.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/importing/__pycache__/pauker.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/importing/__pycache__/supermemo_xml.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/importing/anki2.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/importing/apkg.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/importing/base.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/importing/csvfile.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/importing/mnemo.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/importing/noteimp.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/importing/pauker.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/importing/supermemo_xml.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/lang.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/latex.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/media.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/models.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/notes.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/py.typed</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/pybackend.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/rsbackend.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/sched.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/schedv2.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/sound.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/stats.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/statsbg.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/stdmodels.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/storage.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/sync.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/tags.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/template.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/template_legacy.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/types.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/anki/utils.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/ankirspy-2.1.26.dist-info/INSTALLER</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/ankirspy-2.1.26.dist-info/METADATA</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/ankirspy-2.1.26.dist-info/RECORD</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/ankirspy-2.1.26.dist-info/WHEEL</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/ankirspy.cpython-37m-x86_64-linux-gnu.so</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt-2.1.26.dist-info/INSTALLER</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt-2.1.26.dist-info/METADATA</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt-2.1.26.dist-info/RECORD</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt-2.1.26.dist-info/WHEEL</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt-2.1.26.dist-info/top_level.txt</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/__init__.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/about.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/addcards.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/addons.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/browser.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/buildinfo.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/clayout.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/colors.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/customstudy.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/deckbrowser.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/deckchooser.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/deckconf.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/dyndeckconf.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/editcurrent.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/editor.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/errors.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/exporting.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/fields.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/gui_hooks.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/importing.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/legacy.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/main.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/mediacheck.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/mediasrv.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/mediasync.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/modelchooser.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/models.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/mpv.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/overview.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/pinnedmodules.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/preferences.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/previewer.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/profiles.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/progress.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/qt.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/reviewer.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/sound.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/stats.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/studydeck.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/sync.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/tagedit.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/taglimit.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/taskman.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/theme.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/toolbar.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/tts.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/update.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/utils.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/webview.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/__pycache__/winpaths.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/about.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/addcards.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/addons.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/browser.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/buildinfo.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/clayout.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/colors.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/customstudy.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/deckbrowser.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/deckchooser.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/deckconf.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/dyndeckconf.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/editcurrent.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/editor.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/errors.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/exporting.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/fields.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/__init__.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/about.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/addcards.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/addfield.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/addmodel.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/addonconf.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/addons.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/browser.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/browserdisp.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/browseropts.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/changemap.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/changemodel.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/clayout_top.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/customstudy.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/dconf.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/debug.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/dyndconf.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/editaddon.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/editcurrent.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/edithtml.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/exporting.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/fields.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/finddupes.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/findreplace.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/getaddons.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/icons_rc.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/importing.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/main.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/modelopts.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/models.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/preferences.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/preview.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/profiles.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/progress.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/reposition.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/reschedule.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/setgroup.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/setlang.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/stats.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/studydeck.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/synclog.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/taglimit.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/__pycache__/template.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/about.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/addcards.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/addfield.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/addmodel.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/addonconf.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/addons.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/browser.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/browserdisp.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/browseropts.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/changemap.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/changemodel.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/clayout_top.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/customstudy.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/dconf.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/debug.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/dyndconf.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/editaddon.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/editcurrent.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/edithtml.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/exporting.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/fields.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/finddupes.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/findreplace.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/getaddons.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/icons_rc.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/importing.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/main.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/modelopts.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/models.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/preferences.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/preview.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/profiles.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/progress.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/reposition.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/reschedule.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/setgroup.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/setlang.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/stats.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/studydeck.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/synclog.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/taglimit.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/forms/template.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/gui_hooks.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/importing.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/legacy.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/main.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/mediacheck.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/mediasrv.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/mediasync.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/modelchooser.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/models.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/mpv.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/overview.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/pinnedmodules.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/preferences.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/previewer.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/profiles.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/progress.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/py.typed</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/qt.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/reviewer.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/sound.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/stats.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/studydeck.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/sync.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/tagedit.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/taglimit.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/taskman.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/theme.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/toolbar.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/tts.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/update.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/utils.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/webview.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/aqt/winpaths.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/tools/__init__.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/tools/__pycache__/__init__.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/tools/__pycache__/diff-sched.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/tools/__pycache__/genhooks.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/tools/__pycache__/hookslib.cpython-37.pyc</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/tools/diff-sched.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/tools/genhooks.py</Path>
+ <Path fileType="library">/usr/lib/python3.7/site-packages/tools/hookslib.py</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/af/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/ar/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/bg/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/ca/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/cs/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/da/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/de/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/el/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/en-GB/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/eo/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/es/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/et/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/eu/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/fa/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/fi/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/fr/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/ga-IE/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/gl/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/he/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/hr/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/hu/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/hy-AM/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/it/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/ja/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/jbo/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/kab/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/ko/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/la/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/mn/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/mr/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/ms/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/nb-NO/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/nl/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/nn-NO/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/oc/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/pl/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/pt-BR/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/pt-PT/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/ro/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/ru/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/sk/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/sl/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/sr/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/sv-SE/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/th/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/tr/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/uk/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/vi/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/zh-CN/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/locale/gettext/zh-TW/LC_MESSAGES/anki.mo</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/.gitignore</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/browsersel.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/deckbrowser.css</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/deckbrowser.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/editor.css</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/editor.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/imgs/anki-logo-thin.png</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/imgs/gears.svg</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/imgs/media-record.png</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/imgs/more.png</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/imgs/paperclip.png</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/imgs/refresh.svg</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/imgs/text_bold.png</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/imgs/text_clear.png</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/imgs/text_cloze.png</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/imgs/text_italic.png</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/imgs/text_sub.png</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/imgs/text_super.png</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/imgs/text_under.png</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/jquery-ui.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/jquery.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/MathJax.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/conf.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/FontWarnings.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/HTML-CSS/handle-floats.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/HelpDialog.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/MatchWebFonts.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/MathEvents.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/MathMenu.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/MathZoom.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/Safe.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/TeX/AMScd.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/TeX/AMSmath.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/TeX/AMSsymbols.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/TeX/HTML.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/TeX/action.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/TeX/autobold.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/TeX/autoload-all.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/TeX/bbox.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/TeX/begingroup.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/TeX/boldsymbol.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/TeX/cancel.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/TeX/color.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/TeX/enclose.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/TeX/extpfeil.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/TeX/mathchoice.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/TeX/mediawiki-texvc.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/TeX/mhchem.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/TeX/mhchem3/mhchem.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/TeX/newcommand.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/TeX/noErrors.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/TeX/noUndefined.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/TeX/unicode.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/TeX/verb.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/asciimath2jax.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/fast-preview.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/jsMath2jax.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/mhchem.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/mml2jax.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/tex2jax.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/extensions/toMathML.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_AMS-Regular.woff</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Bold.woff</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Regular.woff</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Bold.woff</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Regular.woff</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Bold.woff</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Italic.woff</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Regular.woff</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Math-BoldItalic.woff</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Math-Italic.woff</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Math-Regular.woff</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Bold.woff</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Italic.woff</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Regular.woff</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Script-Regular.woff</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size1-Regular.woff</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size2-Regular.woff</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size3-Regular.woff</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size4-Regular.woff</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Typewriter-Regular.woff</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/element/mml/jax.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/element/mml/optable/Arrows.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/element/mml/optable/BasicLatin.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/element/mml/optable/CombDiacritMarks.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/element/mml/optable/CombDiactForSymbols.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/element/mml/optable/Dingbats.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/element/mml/optable/GeneralPunctuation.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/element/mml/optable/GeometricShapes.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/element/mml/optable/GreekAndCoptic.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/element/mml/optable/Latin1Supplement.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/element/mml/optable/LetterlikeSymbols.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/element/mml/optable/MathOperators.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/element/mml/optable/MiscMathSymbolsA.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/element/mml/optable/MiscMathSymbolsB.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/element/mml/optable/MiscSymbolsAndArrows.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/element/mml/optable/MiscTechnical.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/element/mml/optable/SpacingModLetters.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/element/mml/optable/SuppMathOperators.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/element/mml/optable/SupplementalArrowsA.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/element/mml/optable/SupplementalArrowsB.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/AsciiMath/config.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/AsciiMath/jax.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/MathML/config.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/MathML/entities/a.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/MathML/entities/b.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/MathML/entities/c.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/MathML/entities/d.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/MathML/entities/e.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/MathML/entities/f.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/MathML/entities/fr.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/MathML/entities/g.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/MathML/entities/h.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/MathML/entities/i.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/MathML/entities/j.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/MathML/entities/k.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/MathML/entities/l.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/MathML/entities/m.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/MathML/entities/n.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/MathML/entities/o.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/MathML/entities/opf.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/MathML/entities/p.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/MathML/entities/q.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/MathML/entities/r.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/MathML/entities/s.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/MathML/entities/scr.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/MathML/entities/t.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/MathML/entities/u.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/MathML/entities/v.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/MathML/entities/w.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/MathML/entities/x.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/MathML/entities/y.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/MathML/entities/z.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/MathML/jax.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/TeX/config.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/input/TeX/jax.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/CommonHTML/autoload/annotation-xml.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/CommonHTML/autoload/maction.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/CommonHTML/autoload/menclose.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/CommonHTML/autoload/mglyph.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/CommonHTML/autoload/mmultiscripts.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/CommonHTML/autoload/ms.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/CommonHTML/autoload/mtable.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/CommonHTML/autoload/multiline.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/CommonHTML/config.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/CommonHTML/fonts/TeX/AMS-Regular.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/CommonHTML/fonts/TeX/Caligraphic-Bold.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/CommonHTML/fonts/TeX/Fraktur-Bold.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/CommonHTML/fonts/TeX/Fraktur-Regular.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/CommonHTML/fonts/TeX/Main-Bold.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/CommonHTML/fonts/TeX/Math-BoldItalic.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/CommonHTML/fonts/TeX/SansSerif-Bold.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/CommonHTML/fonts/TeX/SansSerif-Italic.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/CommonHTML/fonts/TeX/SansSerif-Regular.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/CommonHTML/fonts/TeX/Script-Regular.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/CommonHTML/fonts/TeX/Typewriter-Regular.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/CommonHTML/fonts/TeX/fontdata-extra.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/CommonHTML/fonts/TeX/fontdata.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/CommonHTML/jax.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/autoload/annotation-xml.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/autoload/maction.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/autoload/menclose.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/autoload/mglyph.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/autoload/mmultiscripts.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/autoload/ms.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/autoload/mtable.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/autoload/multiline.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/config.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Arrows.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BBBold.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BoxDrawing.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/CombDiacritMarks.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/EnclosedAlphanum.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeneralPunctuation.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeometricShapes.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Latin1Supplement.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LetterlikeSymbols.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Main.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MathOperators.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscSymbols.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/PUA.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SpacingModLetters.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SuppMathOperators.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Bold/Main.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Regular/Main.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/BasicLatin.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Main.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/PUA.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/BasicLatin.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Main.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/PUA.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Greek/Bold/Main.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Greek/BoldItalic/Main.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Greek/Italic/Main.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Greek/Regular/Main.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Arrows.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiacritMarks.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiactForSymbols.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeneralPunctuation.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeometricShapes.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Latin1Supplement.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedA.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedB.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LetterlikeSymbols.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Main.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MathOperators.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscMathSymbolsA.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscSymbols.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscTechnical.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SpacingModLetters.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SuppMathOperators.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SupplementalArrowsA.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/CombDiacritMarks.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/GeneralPunctuation.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Latin1Supplement.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LetterlikeSymbols.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Main.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/CombDiacritMarks.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeometricShapes.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/Main.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscSymbols.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SpacingModLetters.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Math/BoldItalic/Main.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Math/Italic/Main.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/BasicLatin.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Main.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Other.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/BasicLatin.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Main.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Other.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/BasicLatin.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Main.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Other.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/BasicLatin.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Main.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Other.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Size1/Regular/Main.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Size2/Regular/Main.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Size3/Regular/Main.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Size4/Regular/Main.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/BasicLatin.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Main.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Other.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/WinChrome/Regular/Main.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/AMS.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Bold.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Main.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/fontdata-extra.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/fonts/TeX/fontdata.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/imageFonts.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/mathjax/jax/output/HTML-CSS/jax.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/overview.css</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/overview.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/plot.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/reviewer-bottom.css</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/reviewer-bottom.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/reviewer.css</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/reviewer.js</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/toolbar-bottom.css</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/toolbar.css</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/webview.css</Path>
+ <Path fileType="data">/usr/share/anki/aqt_data/web/webview.js</Path>
<Path fileType="data">/usr/share/applications/anki.desktop</Path>
- <Path fileType="doc">/usr/share/doc/anki/LICENSE</Path>
- <Path fileType="doc">/usr/share/doc/anki/LICENSE.logo</Path>
- <Path fileType="doc">/usr/share/doc/anki/README.contributing</Path>
- <Path fileType="doc">/usr/share/doc/anki/README.development</Path>
- <Path fileType="doc">/usr/share/doc/anki/README.md</Path>
- <Path fileType="man">/usr/share/man/man1/anki.1</Path>
- <Path fileType="data">/usr/share/pixmaps/anki.png</Path>
- <Path fileType="data">/usr/share/pixmaps/anki.xpm</Path>
</Files>
</Package>
<History>
- <Update release="14">
- <Date>2020-02-27</Date>
- <Version>2.1.16</Version>
+ <Update release="15">
+ <Date>2020-05-09</Date>
+ <Version>2.1.26</Version>
<Comment>Packaging update</Comment>
<Name>Thomas Staudinger</Name>
<Email>Staudi.Kaos@gmail.com</Email>
</Update>
</History>
</PISI>
\ No newline at end of file

File Metadata

Mime Type
text/plain
Expires
Jun 15 2023, 9:01 PM (8 w, 1 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5836894
Default Alt Text
D8798.diff (120 KB)

Event Timeline