diff options
author | brnrd <brnrd@FreeBSD.org> | 2018-04-04 15:11:09 +0800 |
---|---|---|
committer | brnrd <brnrd@FreeBSD.org> | 2018-04-04 15:11:09 +0800 |
commit | eb4b2f5cfbbfe959b0bee17689e4915b418348c4 (patch) | |
tree | 5c089ab390a744a7132cd7cec978272891c5c803 | |
parent | f3e6a15bb58df10eace0b409ad64ec343655fd27 (diff) | |
download | freebsd-ports-gnome-eb4b2f5cfbbfe959b0bee17689e4915b418348c4.tar.gz freebsd-ports-gnome-eb4b2f5cfbbfe959b0bee17689e4915b418348c4.tar.zst freebsd-ports-gnome-eb4b2f5cfbbfe959b0bee17689e4915b418348c4.zip |
www/nextcloud: Update to 13.0.1
- Includes breaking rename of $WWWDIR/apps path
- Add fix file and warnings
- Add OpCache option
- Alphabetic ordering
- Migration from ownCloud is stale
- Take maintainership
PR: 227133
Approved by: Loic Blot <loic blot unix-experience fr> (maintainer)
-rw-r--r-- | UPDATING | 12 | ||||
-rw-r--r-- | www/nextcloud/Makefile | 18 | ||||
-rw-r--r-- | www/nextcloud/distinfo | 6 | ||||
-rw-r--r-- | www/nextcloud/files/fix-apps_paths.json | 14 | ||||
-rw-r--r-- | www/nextcloud/files/patch-config_config.sample.php | 14 | ||||
-rw-r--r-- | www/nextcloud/files/pkg-message.in | 42 | ||||
-rw-r--r-- | www/nextcloud/pkg-plist | 13533 |
7 files changed, 6900 insertions, 6739 deletions
@@ -5,6 +5,18 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20180404: + AFFECTS: users of www/nextcloud + AUTHOR: brnrd@FreeBSD.org + + With the 13.0.1 update the path for Apps bundled with the package has + changed from "apps" to "apps-pkg". You must add an entry to the + "apps_paths" array in config/config.php of your nextcloud installation, + a patch for the default installation can be applied with: + + # cd /usr/local/www/nextcloud + # su -m www -c "php ./occ config:import < /usr/local/share/nextcloud/fix-apps_paths.json + 20180401: AFFECTS: users of mail/dovecot and mail/dovecot-pigeonhole AUTHOR: adamw@FreeBSD.org diff --git a/www/nextcloud/Makefile b/www/nextcloud/Makefile index 9d5f95814fab..ef5ed1b189f4 100644 --- a/www/nextcloud/Makefile +++ b/www/nextcloud/Makefile @@ -1,11 +1,11 @@ # $FreeBSD$ PORTNAME= nextcloud -DISTVERSION= 13.0.0 +DISTVERSION= 13.0.1 CATEGORIES= www MASTER_SITES= https://download.nextcloud.com/server/prereleases/ -MAINTAINER= loic.blot@unix-experience.fr +MAINTAINER= brnrd@FreeBSD.org COMMENT= Personal cloud which runs on your own server LICENSE= AGPLv3 @@ -25,31 +25,37 @@ SUB_FILES= pkg-message PLIST_SUB= NEXTCLOUD_USERNAME=${NEXTCLOUD_USERNAME} \ NEXTCLOUD_GROUPNAME=${NEXTCLOUD_GROUPNAME} -OPTIONS_DEFINE= EXIF LDAP SMB SSL +OPTIONS_DEFINE= EXIF LDAP OPCACHE SMB SSL OPTIONS_MULTI= DB OPTIONS_MULTI_DB= MYSQL PGSQL SQLITE -OPTIONS_DEFAULT= EXIF LDAP MYSQL SMB SSL +OPTIONS_DEFAULT= EXIF LDAP MYSQL OPCACHE SMB SSL DB_DESC= Database backend(s) EXIF_DESC= Image rotation support +OPCACHE_DESC= Enable (Nextcloud recommended) OpCache EXIF_USE= PHP=exif LDAP_USE= PHP=ldap MYSQL_USES= mysql MYSQL_USE= PHP=pdo_mysql +OPCACHE_USE= PHP=opcache PGSQL_USES= pgsql PGSQL_USE= PHP=pdo_pgsql,pgsql +SMB_RUN_DEPENDS= ${PECL_PKGNAMEPREFIX}smbclient>=0.9.0:net/pecl-smbclient@${PHP_FLAVOR} SQLITE_USE= PHP=pdo_sqlite,sqlite3 -SMB_RUN_DEPENDS= ${PECL_PKGNAMEPREFIX}smbclient>=0.8.0:net/pecl-smbclient@${PHP_FLAVOR} SSL_USE= PHP=openssl post-patch: - @${REINPLACE_CMD} -e 's|/var/www/|${WWWDIR}|' ${WRKSRC}/config/config.sample.php + @${REINPLACE_CMD} -e 's|/var/www/${PORTNAME}|${WWWDIR}|' ${WRKSRC}/config/config.sample.php + @${MV} ${WRKSRC}/apps ${WRKSRC}/apps-pkg do-install: @${MKDIR} -m 0755 ${STAGEDIR}${WWWDIR} @cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR} @${RM} ${STAGEDIR}${WWWDIR}/updater/updater.phar @${MKDIR} ${STAGEDIR}${WWWDIR}/data + @${MKDIR} ${STAGEDIR}${WWWDIR}/apps + @${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${FILESDIR}/fix-apps_paths.json ${STAGEDIR}${DATADIR}/fix-apps_paths.json .include <bsd.port.mk> diff --git a/www/nextcloud/distinfo b/www/nextcloud/distinfo index 8ed63f294a5b..4f0df97ae56e 100644 --- a/www/nextcloud/distinfo +++ b/www/nextcloud/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1517914004 -SHA256 (nextcloud-13.0.0.tar.bz2) = 38e6064432a2d1a044f219028d3fd46cb7a943a47e11eef346810bd289705aec -SIZE (nextcloud-13.0.0.tar.bz2) = 43397247 +TIMESTAMP = 1521629500 +SHA256 (nextcloud-13.0.1.tar.bz2) = 5743314a71e972ae46a14b36b37394d4545915aa5f32d9e12ba786d04c1f1d11 +SIZE (nextcloud-13.0.1.tar.bz2) = 44183890 diff --git a/www/nextcloud/files/fix-apps_paths.json b/www/nextcloud/files/fix-apps_paths.json new file mode 100644 index 000000000000..c602a13a6def --- /dev/null +++ b/www/nextcloud/files/fix-apps_paths.json @@ -0,0 +1,14 @@ +{"system": {"apps_paths": + [ + { + "path": "\/usr\/local\/www\/nextcloud\/apps", + "url": "\/apps", + "writable": true + }, + { + "path": "\/usr\/local\/www\/nextcloud\/apps-pkg", + "url": "\/apps-pkg", + "writable": false + } + ] +}} diff --git a/www/nextcloud/files/patch-config_config.sample.php b/www/nextcloud/files/patch-config_config.sample.php new file mode 100644 index 000000000000..370970ba87ad --- /dev/null +++ b/www/nextcloud/files/patch-config_config.sample.php @@ -0,0 +1,14 @@ +--- config/config.sample.php.orig 2018-03-13 18:47:31 UTC ++++ config/config.sample.php +@@ -818,6 +818,11 @@ $CONFIG = array( + 'url' => '/apps', + 'writable' => true, + ), ++ array( ++ 'path'=> '/var/www/nextcloud/apps-pkg', ++ 'url' => '/var/www/apps-pkg', ++ 'writable' => false, ++ ), + ), + + /** diff --git a/www/nextcloud/files/pkg-message.in b/www/nextcloud/files/pkg-message.in index d13d54a5cf6b..9fe75476f32f 100644 --- a/www/nextcloud/files/pkg-message.in +++ b/www/nextcloud/files/pkg-message.in @@ -1,19 +1,3 @@ - -*********************************************************************** -* MIGRATION FROM OWNCLOUD * -*********************************************************************** - -If you are migrating from existing owncloud instance, you should do -the following steps: - -- Copy/Move owncloud/data directory to nextcloud/data (don't forget - hidden files) -- Copy/Move owncloud/config/config.php to nextcloud/config/config.php -- Change the datadirectory in nextcloud/config/config.php -- Ensure nextcloud/data and nextcloud/config/config.php are owned by - www user and group - - *********************************************************************** * POST INSTALL CONFIGURATION * *********************************************************************** @@ -39,5 +23,27 @@ And restart Apache. After a version migration you should upgrade your nextcloud instance using command line: -* cd /usr/local/www/nextcloud -* su -m www -c "php ./occ upgrade" + cd %%WWWDIR%% + su -m www -c "php ./occ upgrade" + +!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + + /!\ NEXTCLOUD 13.0.1 UPDATE /!\ + +The nextcloud 13.0.1 package changes the location of the bundled apps. +After updating to 13.0.1 you MUST adapt your configuration. You MUST +add an additional entry to the "apps-paths" array in config/config.php + + 1 => + array ( + 'path' => '%%WWWDIR%%/apps-pkg', + 'url' => '/apps-pkg', + 'writable' => false, + ), + +For the default installation, the fix can be applied with: + + cd %%WWWDIR%% + su -m www -c "php ./occ config:import < %%DATADIR%%/fix-apps_paths.json + +!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! diff --git a/www/nextcloud/pkg-plist b/www/nextcloud/pkg-plist index 5918ab08099a..53fd57c41698 100644 --- a/www/nextcloud/pkg-plist +++ b/www/nextcloud/pkg-plist @@ -1,3 +1,4 @@ +%%DATADIR%%/fix-apps_paths.json @(root,%%NEXTCLOUD_GROUPNAME%%,644) %%WWWDIR%%/.htaccess @(%%NEXTCLOUD_USERNAME%%,%%NEXTCLOUD_GROUPNAME%%,664) %%WWWDIR%%/.user.ini %%WWWDIR%%/3rdparty/.drone.yml @@ -4044,6691 +4045,6732 @@ %%WWWDIR%%/3rdparty/symfony/translation/composer.json %%WWWDIR%%/3rdparty/symfony/translation/phpunit.xml.dist %%WWWDIR%%/AUTHORS -%%WWWDIR%%/apps/activity/appinfo/app.php -%%WWWDIR%%/apps/activity/appinfo/info.xml -%%WWWDIR%%/apps/activity/appinfo/routes.php -%%WWWDIR%%/apps/activity/appinfo/signature.json -%%WWWDIR%%/apps/activity/appinfo/update.php -%%WWWDIR%%/apps/activity/css/settings.css -%%WWWDIR%%/apps/activity/css/style.css -%%WWWDIR%%/apps/activity/docs/create.md -%%WWWDIR%%/apps/activity/docs/endpoint-v2.md -%%WWWDIR%%/apps/activity/docs/filter.md -%%WWWDIR%%/apps/activity/docs/provider.md -%%WWWDIR%%/apps/activity/docs/setting.md -%%WWWDIR%%/apps/activity/img/activity-dark.svg -%%WWWDIR%%/apps/activity/img/activity.svg -%%WWWDIR%%/apps/activity/img/add-color.svg -%%WWWDIR%%/apps/activity/img/change.svg -%%WWWDIR%%/apps/activity/img/delete-color.svg -%%WWWDIR%%/apps/activity/js/activity-sidebar.json -%%WWWDIR%%/apps/activity/js/activitycollection.js -%%WWWDIR%%/apps/activity/js/activitymodel.js -%%WWWDIR%%/apps/activity/js/activitytabview.js -%%WWWDIR%%/apps/activity/js/admin.js -%%WWWDIR%%/apps/activity/js/feedSettings.js -%%WWWDIR%%/apps/activity/js/filesplugin.js -%%WWWDIR%%/apps/activity/js/richObjectStringParser.js -%%WWWDIR%%/apps/activity/js/script.js -%%WWWDIR%%/apps/activity/js/settings.js -%%WWWDIR%%/apps/activity/l10n/.gitkeep -%%WWWDIR%%/apps/activity/l10n/.tx/config -%%WWWDIR%%/apps/activity/l10n/af.js -%%WWWDIR%%/apps/activity/l10n/af.json -%%WWWDIR%%/apps/activity/l10n/ar.js -%%WWWDIR%%/apps/activity/l10n/ar.json -%%WWWDIR%%/apps/activity/l10n/ast.js -%%WWWDIR%%/apps/activity/l10n/ast.json -%%WWWDIR%%/apps/activity/l10n/az.js -%%WWWDIR%%/apps/activity/l10n/az.json -%%WWWDIR%%/apps/activity/l10n/bg.js -%%WWWDIR%%/apps/activity/l10n/bg.json -%%WWWDIR%%/apps/activity/l10n/bn_BD.js -%%WWWDIR%%/apps/activity/l10n/bn_BD.json -%%WWWDIR%%/apps/activity/l10n/br.js -%%WWWDIR%%/apps/activity/l10n/br.json -%%WWWDIR%%/apps/activity/l10n/ca.js -%%WWWDIR%%/apps/activity/l10n/ca.json -%%WWWDIR%%/apps/activity/l10n/cs.js -%%WWWDIR%%/apps/activity/l10n/cs.json -%%WWWDIR%%/apps/activity/l10n/da.js -%%WWWDIR%%/apps/activity/l10n/da.json -%%WWWDIR%%/apps/activity/l10n/de.js -%%WWWDIR%%/apps/activity/l10n/de.json -%%WWWDIR%%/apps/activity/l10n/de_DE.js -%%WWWDIR%%/apps/activity/l10n/de_DE.json -%%WWWDIR%%/apps/activity/l10n/el.js -%%WWWDIR%%/apps/activity/l10n/el.json -%%WWWDIR%%/apps/activity/l10n/en_GB.js -%%WWWDIR%%/apps/activity/l10n/en_GB.json -%%WWWDIR%%/apps/activity/l10n/eo.js -%%WWWDIR%%/apps/activity/l10n/eo.json -%%WWWDIR%%/apps/activity/l10n/es.js -%%WWWDIR%%/apps/activity/l10n/es.json -%%WWWDIR%%/apps/activity/l10n/es_419.js -%%WWWDIR%%/apps/activity/l10n/es_419.json -%%WWWDIR%%/apps/activity/l10n/es_AR.js -%%WWWDIR%%/apps/activity/l10n/es_AR.json -%%WWWDIR%%/apps/activity/l10n/es_CL.js -%%WWWDIR%%/apps/activity/l10n/es_CL.json -%%WWWDIR%%/apps/activity/l10n/es_CO.js -%%WWWDIR%%/apps/activity/l10n/es_CO.json -%%WWWDIR%%/apps/activity/l10n/es_CR.js -%%WWWDIR%%/apps/activity/l10n/es_CR.json -%%WWWDIR%%/apps/activity/l10n/es_DO.js -%%WWWDIR%%/apps/activity/l10n/es_DO.json -%%WWWDIR%%/apps/activity/l10n/es_EC.js -%%WWWDIR%%/apps/activity/l10n/es_EC.json -%%WWWDIR%%/apps/activity/l10n/es_GT.js -%%WWWDIR%%/apps/activity/l10n/es_GT.json -%%WWWDIR%%/apps/activity/l10n/es_HN.js -%%WWWDIR%%/apps/activity/l10n/es_HN.json -%%WWWDIR%%/apps/activity/l10n/es_MX.js -%%WWWDIR%%/apps/activity/l10n/es_MX.json -%%WWWDIR%%/apps/activity/l10n/es_NI.js -%%WWWDIR%%/apps/activity/l10n/es_NI.json -%%WWWDIR%%/apps/activity/l10n/es_PA.js -%%WWWDIR%%/apps/activity/l10n/es_PA.json -%%WWWDIR%%/apps/activity/l10n/es_PE.js -%%WWWDIR%%/apps/activity/l10n/es_PE.json -%%WWWDIR%%/apps/activity/l10n/es_PR.js -%%WWWDIR%%/apps/activity/l10n/es_PR.json -%%WWWDIR%%/apps/activity/l10n/es_PY.js -%%WWWDIR%%/apps/activity/l10n/es_PY.json -%%WWWDIR%%/apps/activity/l10n/es_SV.js -%%WWWDIR%%/apps/activity/l10n/es_SV.json -%%WWWDIR%%/apps/activity/l10n/es_UY.js -%%WWWDIR%%/apps/activity/l10n/es_UY.json -%%WWWDIR%%/apps/activity/l10n/et_EE.js -%%WWWDIR%%/apps/activity/l10n/et_EE.json -%%WWWDIR%%/apps/activity/l10n/eu.js -%%WWWDIR%%/apps/activity/l10n/eu.json -%%WWWDIR%%/apps/activity/l10n/fa.js -%%WWWDIR%%/apps/activity/l10n/fa.json -%%WWWDIR%%/apps/activity/l10n/fi.js -%%WWWDIR%%/apps/activity/l10n/fi.json -%%WWWDIR%%/apps/activity/l10n/fr.js -%%WWWDIR%%/apps/activity/l10n/fr.json -%%WWWDIR%%/apps/activity/l10n/gl.js -%%WWWDIR%%/apps/activity/l10n/gl.json -%%WWWDIR%%/apps/activity/l10n/he.js -%%WWWDIR%%/apps/activity/l10n/he.json -%%WWWDIR%%/apps/activity/l10n/hr.js -%%WWWDIR%%/apps/activity/l10n/hr.json -%%WWWDIR%%/apps/activity/l10n/hu.js -%%WWWDIR%%/apps/activity/l10n/hu.json -%%WWWDIR%%/apps/activity/l10n/ia.js -%%WWWDIR%%/apps/activity/l10n/ia.json -%%WWWDIR%%/apps/activity/l10n/id.js -%%WWWDIR%%/apps/activity/l10n/id.json -%%WWWDIR%%/apps/activity/l10n/is.js -%%WWWDIR%%/apps/activity/l10n/is.json -%%WWWDIR%%/apps/activity/l10n/it.js -%%WWWDIR%%/apps/activity/l10n/it.json -%%WWWDIR%%/apps/activity/l10n/ja.js -%%WWWDIR%%/apps/activity/l10n/ja.json -%%WWWDIR%%/apps/activity/l10n/ka_GE.js -%%WWWDIR%%/apps/activity/l10n/ka_GE.json -%%WWWDIR%%/apps/activity/l10n/kab.js -%%WWWDIR%%/apps/activity/l10n/kab.json -%%WWWDIR%%/apps/activity/l10n/km.js -%%WWWDIR%%/apps/activity/l10n/km.json -%%WWWDIR%%/apps/activity/l10n/ko.js -%%WWWDIR%%/apps/activity/l10n/ko.json -%%WWWDIR%%/apps/activity/l10n/lb.js -%%WWWDIR%%/apps/activity/l10n/lb.json -%%WWWDIR%%/apps/activity/l10n/lt_LT.js -%%WWWDIR%%/apps/activity/l10n/lt_LT.json -%%WWWDIR%%/apps/activity/l10n/lv.js -%%WWWDIR%%/apps/activity/l10n/lv.json -%%WWWDIR%%/apps/activity/l10n/mk.js -%%WWWDIR%%/apps/activity/l10n/mk.json -%%WWWDIR%%/apps/activity/l10n/mn.js -%%WWWDIR%%/apps/activity/l10n/mn.json -%%WWWDIR%%/apps/activity/l10n/nb.js -%%WWWDIR%%/apps/activity/l10n/nb.json -%%WWWDIR%%/apps/activity/l10n/ne.js -%%WWWDIR%%/apps/activity/l10n/ne.json -%%WWWDIR%%/apps/activity/l10n/nl.js -%%WWWDIR%%/apps/activity/l10n/nl.json -%%WWWDIR%%/apps/activity/l10n/nn_NO.js -%%WWWDIR%%/apps/activity/l10n/nn_NO.json -%%WWWDIR%%/apps/activity/l10n/no-php -%%WWWDIR%%/apps/activity/l10n/pl.js -%%WWWDIR%%/apps/activity/l10n/pl.json -%%WWWDIR%%/apps/activity/l10n/pt_BR.js -%%WWWDIR%%/apps/activity/l10n/pt_BR.json -%%WWWDIR%%/apps/activity/l10n/pt_PT.js -%%WWWDIR%%/apps/activity/l10n/pt_PT.json -%%WWWDIR%%/apps/activity/l10n/ro.js -%%WWWDIR%%/apps/activity/l10n/ro.json -%%WWWDIR%%/apps/activity/l10n/ru.js -%%WWWDIR%%/apps/activity/l10n/ru.json -%%WWWDIR%%/apps/activity/l10n/si_LK.js -%%WWWDIR%%/apps/activity/l10n/si_LK.json -%%WWWDIR%%/apps/activity/l10n/sk.js -%%WWWDIR%%/apps/activity/l10n/sk.json -%%WWWDIR%%/apps/activity/l10n/sl.js -%%WWWDIR%%/apps/activity/l10n/sl.json -%%WWWDIR%%/apps/activity/l10n/sq.js -%%WWWDIR%%/apps/activity/l10n/sq.json -%%WWWDIR%%/apps/activity/l10n/sr.js -%%WWWDIR%%/apps/activity/l10n/sr.json -%%WWWDIR%%/apps/activity/l10n/sv.js -%%WWWDIR%%/apps/activity/l10n/sv.json -%%WWWDIR%%/apps/activity/l10n/th.js -%%WWWDIR%%/apps/activity/l10n/th.json -%%WWWDIR%%/apps/activity/l10n/tr.js -%%WWWDIR%%/apps/activity/l10n/tr.json -%%WWWDIR%%/apps/activity/l10n/uk.js -%%WWWDIR%%/apps/activity/l10n/uk.json -%%WWWDIR%%/apps/activity/l10n/vi.js -%%WWWDIR%%/apps/activity/l10n/vi.json -%%WWWDIR%%/apps/activity/l10n/zh_CN.js -%%WWWDIR%%/apps/activity/l10n/zh_CN.json -%%WWWDIR%%/apps/activity/l10n/zh_HK.js -%%WWWDIR%%/apps/activity/l10n/zh_HK.json -%%WWWDIR%%/apps/activity/l10n/zh_TW.js -%%WWWDIR%%/apps/activity/l10n/zh_TW.json -%%WWWDIR%%/apps/activity/lib/AppInfo/Application.php -%%WWWDIR%%/apps/activity/lib/BackgroundJob/EmailNotification.php -%%WWWDIR%%/apps/activity/lib/BackgroundJob/ExpireActivities.php -%%WWWDIR%%/apps/activity/lib/BackgroundJob/RemoteActivity.php -%%WWWDIR%%/apps/activity/lib/Capabilities.php -%%WWWDIR%%/apps/activity/lib/Command/SendEmails.php -%%WWWDIR%%/apps/activity/lib/Consumer.php -%%WWWDIR%%/apps/activity/lib/Controller/APIv1.php -%%WWWDIR%%/apps/activity/lib/Controller/APIv2.php -%%WWWDIR%%/apps/activity/lib/Controller/Activities.php -%%WWWDIR%%/apps/activity/lib/Controller/Feed.php -%%WWWDIR%%/apps/activity/lib/Controller/RemoteActivity.php -%%WWWDIR%%/apps/activity/lib/Controller/Settings.php -%%WWWDIR%%/apps/activity/lib/CurrentUser.php -%%WWWDIR%%/apps/activity/lib/Data.php -%%WWWDIR%%/apps/activity/lib/DataHelper.php -%%WWWDIR%%/apps/activity/lib/Exception/InvalidFilterException.php -%%WWWDIR%%/apps/activity/lib/Extension/Files.php -%%WWWDIR%%/apps/activity/lib/Extension/Files_Sharing.php -%%WWWDIR%%/apps/activity/lib/Extension/LegacyParser.php -%%WWWDIR%%/apps/activity/lib/FilesHooks.php -%%WWWDIR%%/apps/activity/lib/FilesHooksStatic.php -%%WWWDIR%%/apps/activity/lib/Filter/AllFilter.php -%%WWWDIR%%/apps/activity/lib/Filter/ByFilter.php -%%WWWDIR%%/apps/activity/lib/Filter/SelfFilter.php -%%WWWDIR%%/apps/activity/lib/Formatter/BaseFormatter.php -%%WWWDIR%%/apps/activity/lib/Formatter/CloudIDFormatter.php -%%WWWDIR%%/apps/activity/lib/Formatter/FileFormatter.php -%%WWWDIR%%/apps/activity/lib/Formatter/IFormatter.php -%%WWWDIR%%/apps/activity/lib/Formatter/UserFormatter.php -%%WWWDIR%%/apps/activity/lib/GroupHelper.php -%%WWWDIR%%/apps/activity/lib/GroupHelperDisabled.php -%%WWWDIR%%/apps/activity/lib/Hooks.php -%%WWWDIR%%/apps/activity/lib/MailQueueHandler.php -%%WWWDIR%%/apps/activity/lib/Migration/Version2006Date20170808154933.php -%%WWWDIR%%/apps/activity/lib/Migration/Version2006Date20170808155040.php -%%WWWDIR%%/apps/activity/lib/Migration/Version2006Date20170919095939.php -%%WWWDIR%%/apps/activity/lib/Navigation.php -%%WWWDIR%%/apps/activity/lib/Parameter/Collection.php -%%WWWDIR%%/apps/activity/lib/Parameter/Factory.php -%%WWWDIR%%/apps/activity/lib/Parameter/IParameter.php -%%WWWDIR%%/apps/activity/lib/Parameter/Parameter.php -%%WWWDIR%%/apps/activity/lib/PlainTextParser.php -%%WWWDIR%%/apps/activity/lib/Settings/Admin.php -%%WWWDIR%%/apps/activity/lib/Settings/Section.php -%%WWWDIR%%/apps/activity/lib/UserSettings.php -%%WWWDIR%%/apps/activity/lib/ViewInfoCache.php -%%WWWDIR%%/apps/activity/personal.php -%%WWWDIR%%/apps/activity/templates/rss.php -%%WWWDIR%%/apps/activity/templates/settings/admin.php -%%WWWDIR%%/apps/activity/templates/settings/form.php -%%WWWDIR%%/apps/activity/templates/settings/personal.php -%%WWWDIR%%/apps/activity/templates/stream.app.navigation.php -%%WWWDIR%%/apps/activity/templates/stream.body.php -%%WWWDIR%%/apps/admin_audit/appinfo/app.php -%%WWWDIR%%/apps/admin_audit/appinfo/info.xml -%%WWWDIR%%/apps/admin_audit/appinfo/signature.json -%%WWWDIR%%/apps/admin_audit/composer/autoload.php -%%WWWDIR%%/apps/admin_audit/composer/composer.json -%%WWWDIR%%/apps/admin_audit/composer/composer/ClassLoader.php -%%WWWDIR%%/apps/admin_audit/composer/composer/LICENSE -%%WWWDIR%%/apps/admin_audit/composer/composer/autoload_classmap.php -%%WWWDIR%%/apps/admin_audit/composer/composer/autoload_namespaces.php -%%WWWDIR%%/apps/admin_audit/composer/composer/autoload_psr4.php -%%WWWDIR%%/apps/admin_audit/composer/composer/autoload_real.php -%%WWWDIR%%/apps/admin_audit/composer/composer/autoload_static.php -%%WWWDIR%%/apps/admin_audit/lib/Actions/Action.php -%%WWWDIR%%/apps/admin_audit/lib/Actions/AppManagement.php -%%WWWDIR%%/apps/admin_audit/lib/Actions/Auth.php -%%WWWDIR%%/apps/admin_audit/lib/Actions/Console.php -%%WWWDIR%%/apps/admin_audit/lib/Actions/Files.php -%%WWWDIR%%/apps/admin_audit/lib/Actions/GroupManagement.php -%%WWWDIR%%/apps/admin_audit/lib/Actions/Sharing.php -%%WWWDIR%%/apps/admin_audit/lib/Actions/Trashbin.php -%%WWWDIR%%/apps/admin_audit/lib/Actions/UserManagement.php -%%WWWDIR%%/apps/admin_audit/lib/Actions/Versions.php -%%WWWDIR%%/apps/admin_audit/lib/AppInfo/Application.php -%%WWWDIR%%/apps/comments/.bowerrc -%%WWWDIR%%/apps/comments/appinfo/app.php -%%WWWDIR%%/apps/comments/appinfo/info.xml -%%WWWDIR%%/apps/comments/appinfo/routes.php -%%WWWDIR%%/apps/comments/appinfo/signature.json -%%WWWDIR%%/apps/comments/composer/autoload.php -%%WWWDIR%%/apps/comments/composer/composer.json -%%WWWDIR%%/apps/comments/composer/composer/ClassLoader.php -%%WWWDIR%%/apps/comments/composer/composer/LICENSE -%%WWWDIR%%/apps/comments/composer/composer/autoload_classmap.php -%%WWWDIR%%/apps/comments/composer/composer/autoload_namespaces.php -%%WWWDIR%%/apps/comments/composer/composer/autoload_psr4.php -%%WWWDIR%%/apps/comments/composer/composer/autoload_real.php -%%WWWDIR%%/apps/comments/composer/composer/autoload_static.php -%%WWWDIR%%/apps/comments/css/autocomplete.scss -%%WWWDIR%%/apps/comments/css/comments.css -%%WWWDIR%%/apps/comments/img/comments-dark.svg -%%WWWDIR%%/apps/comments/img/comments.svg -%%WWWDIR%%/apps/comments/js/activitytabviewplugin.js -%%WWWDIR%%/apps/comments/js/app.js -%%WWWDIR%%/apps/comments/js/commentcollection.js -%%WWWDIR%%/apps/comments/js/commentmodel.js -%%WWWDIR%%/apps/comments/js/commentstabview.js -%%WWWDIR%%/apps/comments/js/commentsummarymodel.js -%%WWWDIR%%/apps/comments/js/filesplugin.js -%%WWWDIR%%/apps/comments/js/merged.json -%%WWWDIR%%/apps/comments/js/vendor/At.js/dist/js/jquery.atwho.min.js -%%WWWDIR%%/apps/comments/js/vendor/Caret.js/dist/jquery.caret.min.js -%%WWWDIR%%/apps/comments/l10n/.gitkeep -%%WWWDIR%%/apps/comments/l10n/af.js -%%WWWDIR%%/apps/comments/l10n/af.json -%%WWWDIR%%/apps/comments/l10n/af_ZA.js -%%WWWDIR%%/apps/comments/l10n/af_ZA.json -%%WWWDIR%%/apps/comments/l10n/ar.js -%%WWWDIR%%/apps/comments/l10n/ar.json -%%WWWDIR%%/apps/comments/l10n/ast.js -%%WWWDIR%%/apps/comments/l10n/ast.json -%%WWWDIR%%/apps/comments/l10n/az.js -%%WWWDIR%%/apps/comments/l10n/az.json -%%WWWDIR%%/apps/comments/l10n/bg.js -%%WWWDIR%%/apps/comments/l10n/bg.json -%%WWWDIR%%/apps/comments/l10n/bg_BG.js -%%WWWDIR%%/apps/comments/l10n/bg_BG.json -%%WWWDIR%%/apps/comments/l10n/bn_BD.js -%%WWWDIR%%/apps/comments/l10n/bn_BD.json -%%WWWDIR%%/apps/comments/l10n/bn_IN.js -%%WWWDIR%%/apps/comments/l10n/bn_IN.json -%%WWWDIR%%/apps/comments/l10n/bs.js -%%WWWDIR%%/apps/comments/l10n/bs.json -%%WWWDIR%%/apps/comments/l10n/ca.js -%%WWWDIR%%/apps/comments/l10n/ca.json -%%WWWDIR%%/apps/comments/l10n/cs.js -%%WWWDIR%%/apps/comments/l10n/cs.json -%%WWWDIR%%/apps/comments/l10n/cs_CZ.js -%%WWWDIR%%/apps/comments/l10n/cs_CZ.json -%%WWWDIR%%/apps/comments/l10n/cy_GB.js -%%WWWDIR%%/apps/comments/l10n/cy_GB.json -%%WWWDIR%%/apps/comments/l10n/da.js -%%WWWDIR%%/apps/comments/l10n/da.json -%%WWWDIR%%/apps/comments/l10n/de.js -%%WWWDIR%%/apps/comments/l10n/de.json -%%WWWDIR%%/apps/comments/l10n/de_AT.js -%%WWWDIR%%/apps/comments/l10n/de_AT.json -%%WWWDIR%%/apps/comments/l10n/de_DE.js -%%WWWDIR%%/apps/comments/l10n/de_DE.json -%%WWWDIR%%/apps/comments/l10n/el.js -%%WWWDIR%%/apps/comments/l10n/el.json -%%WWWDIR%%/apps/comments/l10n/en_GB.js -%%WWWDIR%%/apps/comments/l10n/en_GB.json -%%WWWDIR%%/apps/comments/l10n/eo.js -%%WWWDIR%%/apps/comments/l10n/eo.json -%%WWWDIR%%/apps/comments/l10n/es.js -%%WWWDIR%%/apps/comments/l10n/es.json -%%WWWDIR%%/apps/comments/l10n/es_419.js -%%WWWDIR%%/apps/comments/l10n/es_419.json -%%WWWDIR%%/apps/comments/l10n/es_AR.js -%%WWWDIR%%/apps/comments/l10n/es_AR.json -%%WWWDIR%%/apps/comments/l10n/es_CL.js -%%WWWDIR%%/apps/comments/l10n/es_CL.json -%%WWWDIR%%/apps/comments/l10n/es_CO.js -%%WWWDIR%%/apps/comments/l10n/es_CO.json -%%WWWDIR%%/apps/comments/l10n/es_CR.js -%%WWWDIR%%/apps/comments/l10n/es_CR.json -%%WWWDIR%%/apps/comments/l10n/es_DO.js -%%WWWDIR%%/apps/comments/l10n/es_DO.json -%%WWWDIR%%/apps/comments/l10n/es_EC.js -%%WWWDIR%%/apps/comments/l10n/es_EC.json -%%WWWDIR%%/apps/comments/l10n/es_GT.js -%%WWWDIR%%/apps/comments/l10n/es_GT.json -%%WWWDIR%%/apps/comments/l10n/es_HN.js -%%WWWDIR%%/apps/comments/l10n/es_HN.json -%%WWWDIR%%/apps/comments/l10n/es_MX.js -%%WWWDIR%%/apps/comments/l10n/es_MX.json -%%WWWDIR%%/apps/comments/l10n/es_NI.js -%%WWWDIR%%/apps/comments/l10n/es_NI.json -%%WWWDIR%%/apps/comments/l10n/es_PA.js -%%WWWDIR%%/apps/comments/l10n/es_PA.json -%%WWWDIR%%/apps/comments/l10n/es_PE.js -%%WWWDIR%%/apps/comments/l10n/es_PE.json -%%WWWDIR%%/apps/comments/l10n/es_PR.js -%%WWWDIR%%/apps/comments/l10n/es_PR.json -%%WWWDIR%%/apps/comments/l10n/es_PY.js -%%WWWDIR%%/apps/comments/l10n/es_PY.json -%%WWWDIR%%/apps/comments/l10n/es_SV.js -%%WWWDIR%%/apps/comments/l10n/es_SV.json -%%WWWDIR%%/apps/comments/l10n/es_UY.js -%%WWWDIR%%/apps/comments/l10n/es_UY.json -%%WWWDIR%%/apps/comments/l10n/et_EE.js -%%WWWDIR%%/apps/comments/l10n/et_EE.json -%%WWWDIR%%/apps/comments/l10n/eu.js -%%WWWDIR%%/apps/comments/l10n/eu.json -%%WWWDIR%%/apps/comments/l10n/fa.js -%%WWWDIR%%/apps/comments/l10n/fa.json -%%WWWDIR%%/apps/comments/l10n/fi.js -%%WWWDIR%%/apps/comments/l10n/fi.json -%%WWWDIR%%/apps/comments/l10n/fi_FI.js -%%WWWDIR%%/apps/comments/l10n/fi_FI.json -%%WWWDIR%%/apps/comments/l10n/fil.js -%%WWWDIR%%/apps/comments/l10n/fil.json -%%WWWDIR%%/apps/comments/l10n/fr.js -%%WWWDIR%%/apps/comments/l10n/fr.json -%%WWWDIR%%/apps/comments/l10n/gl.js -%%WWWDIR%%/apps/comments/l10n/gl.json -%%WWWDIR%%/apps/comments/l10n/he.js -%%WWWDIR%%/apps/comments/l10n/he.json -%%WWWDIR%%/apps/comments/l10n/hi.js -%%WWWDIR%%/apps/comments/l10n/hi.json -%%WWWDIR%%/apps/comments/l10n/hr.js -%%WWWDIR%%/apps/comments/l10n/hr.json -%%WWWDIR%%/apps/comments/l10n/hu.js -%%WWWDIR%%/apps/comments/l10n/hu.json -%%WWWDIR%%/apps/comments/l10n/hu_HU.js -%%WWWDIR%%/apps/comments/l10n/hu_HU.json -%%WWWDIR%%/apps/comments/l10n/hy.js -%%WWWDIR%%/apps/comments/l10n/hy.json -%%WWWDIR%%/apps/comments/l10n/ia.js -%%WWWDIR%%/apps/comments/l10n/ia.json -%%WWWDIR%%/apps/comments/l10n/id.js -%%WWWDIR%%/apps/comments/l10n/id.json -%%WWWDIR%%/apps/comments/l10n/is.js -%%WWWDIR%%/apps/comments/l10n/is.json -%%WWWDIR%%/apps/comments/l10n/it.js -%%WWWDIR%%/apps/comments/l10n/it.json -%%WWWDIR%%/apps/comments/l10n/ja.js -%%WWWDIR%%/apps/comments/l10n/ja.json -%%WWWDIR%%/apps/comments/l10n/ka_GE.js -%%WWWDIR%%/apps/comments/l10n/ka_GE.json -%%WWWDIR%%/apps/comments/l10n/km.js -%%WWWDIR%%/apps/comments/l10n/km.json -%%WWWDIR%%/apps/comments/l10n/kn.js -%%WWWDIR%%/apps/comments/l10n/kn.json -%%WWWDIR%%/apps/comments/l10n/ko.js -%%WWWDIR%%/apps/comments/l10n/ko.json -%%WWWDIR%%/apps/comments/l10n/ku_IQ.js -%%WWWDIR%%/apps/comments/l10n/ku_IQ.json -%%WWWDIR%%/apps/comments/l10n/lb.js -%%WWWDIR%%/apps/comments/l10n/lb.json -%%WWWDIR%%/apps/comments/l10n/lt_LT.js -%%WWWDIR%%/apps/comments/l10n/lt_LT.json -%%WWWDIR%%/apps/comments/l10n/lv.js -%%WWWDIR%%/apps/comments/l10n/lv.json -%%WWWDIR%%/apps/comments/l10n/mk.js -%%WWWDIR%%/apps/comments/l10n/mk.json -%%WWWDIR%%/apps/comments/l10n/mn.js -%%WWWDIR%%/apps/comments/l10n/mn.json -%%WWWDIR%%/apps/comments/l10n/ms_MY.js -%%WWWDIR%%/apps/comments/l10n/ms_MY.json -%%WWWDIR%%/apps/comments/l10n/my_MM.js -%%WWWDIR%%/apps/comments/l10n/my_MM.json -%%WWWDIR%%/apps/comments/l10n/nb.js -%%WWWDIR%%/apps/comments/l10n/nb.json -%%WWWDIR%%/apps/comments/l10n/nb_NO.js -%%WWWDIR%%/apps/comments/l10n/nb_NO.json -%%WWWDIR%%/apps/comments/l10n/nds.js -%%WWWDIR%%/apps/comments/l10n/nds.json -%%WWWDIR%%/apps/comments/l10n/nl.js -%%WWWDIR%%/apps/comments/l10n/nl.json -%%WWWDIR%%/apps/comments/l10n/nn_NO.js -%%WWWDIR%%/apps/comments/l10n/nn_NO.json -%%WWWDIR%%/apps/comments/l10n/oc.js -%%WWWDIR%%/apps/comments/l10n/oc.json -%%WWWDIR%%/apps/comments/l10n/pa.js -%%WWWDIR%%/apps/comments/l10n/pa.json -%%WWWDIR%%/apps/comments/l10n/pl.js -%%WWWDIR%%/apps/comments/l10n/pl.json -%%WWWDIR%%/apps/comments/l10n/pt_BR.js -%%WWWDIR%%/apps/comments/l10n/pt_BR.json -%%WWWDIR%%/apps/comments/l10n/pt_PT.js -%%WWWDIR%%/apps/comments/l10n/pt_PT.json -%%WWWDIR%%/apps/comments/l10n/ro.js -%%WWWDIR%%/apps/comments/l10n/ro.json -%%WWWDIR%%/apps/comments/l10n/ru.js -%%WWWDIR%%/apps/comments/l10n/ru.json -%%WWWDIR%%/apps/comments/l10n/si_LK.js -%%WWWDIR%%/apps/comments/l10n/si_LK.json -%%WWWDIR%%/apps/comments/l10n/sk.js -%%WWWDIR%%/apps/comments/l10n/sk.json -%%WWWDIR%%/apps/comments/l10n/sk_SK.js -%%WWWDIR%%/apps/comments/l10n/sk_SK.json -%%WWWDIR%%/apps/comments/l10n/sl.js -%%WWWDIR%%/apps/comments/l10n/sl.json -%%WWWDIR%%/apps/comments/l10n/sq.js -%%WWWDIR%%/apps/comments/l10n/sq.json -%%WWWDIR%%/apps/comments/l10n/sr.js -%%WWWDIR%%/apps/comments/l10n/sr.json -%%WWWDIR%%/apps/comments/l10n/sr@latin.js -%%WWWDIR%%/apps/comments/l10n/sr@latin.json -%%WWWDIR%%/apps/comments/l10n/sv.js -%%WWWDIR%%/apps/comments/l10n/sv.json -%%WWWDIR%%/apps/comments/l10n/ta_LK.js -%%WWWDIR%%/apps/comments/l10n/ta_LK.json -%%WWWDIR%%/apps/comments/l10n/te.js -%%WWWDIR%%/apps/comments/l10n/te.json -%%WWWDIR%%/apps/comments/l10n/th_TH.js -%%WWWDIR%%/apps/comments/l10n/th_TH.json -%%WWWDIR%%/apps/comments/l10n/tr.js -%%WWWDIR%%/apps/comments/l10n/tr.json -%%WWWDIR%%/apps/comments/l10n/ug.js -%%WWWDIR%%/apps/comments/l10n/ug.json -%%WWWDIR%%/apps/comments/l10n/uk.js -%%WWWDIR%%/apps/comments/l10n/uk.json -%%WWWDIR%%/apps/comments/l10n/ur_PK.js -%%WWWDIR%%/apps/comments/l10n/ur_PK.json -%%WWWDIR%%/apps/comments/l10n/vi.js -%%WWWDIR%%/apps/comments/l10n/vi.json -%%WWWDIR%%/apps/comments/l10n/zh_CN.js -%%WWWDIR%%/apps/comments/l10n/zh_CN.json -%%WWWDIR%%/apps/comments/l10n/zh_HK.js -%%WWWDIR%%/apps/comments/l10n/zh_HK.json -%%WWWDIR%%/apps/comments/l10n/zh_TW.js -%%WWWDIR%%/apps/comments/l10n/zh_TW.json -%%WWWDIR%%/apps/comments/lib/Activity/Filter.php -%%WWWDIR%%/apps/comments/lib/Activity/Listener.php -%%WWWDIR%%/apps/comments/lib/Activity/Provider.php -%%WWWDIR%%/apps/comments/lib/Activity/Setting.php -%%WWWDIR%%/apps/comments/lib/AppInfo/Application.php -%%WWWDIR%%/apps/comments/lib/Collaboration/CommentersSorter.php -%%WWWDIR%%/apps/comments/lib/Controller/Notifications.php -%%WWWDIR%%/apps/comments/lib/EventHandler.php -%%WWWDIR%%/apps/comments/lib/JSSettingsHelper.php -%%WWWDIR%%/apps/comments/lib/Notification/Listener.php -%%WWWDIR%%/apps/comments/lib/Notification/Notifier.php -%%WWWDIR%%/apps/dav/appinfo/app.php -%%WWWDIR%%/apps/dav/appinfo/info.xml -%%WWWDIR%%/apps/dav/appinfo/routes.php -%%WWWDIR%%/apps/dav/appinfo/signature.json -%%WWWDIR%%/apps/dav/appinfo/v1/caldav.php -%%WWWDIR%%/apps/dav/appinfo/v1/carddav.php -%%WWWDIR%%/apps/dav/appinfo/v1/publicwebdav.php -%%WWWDIR%%/apps/dav/appinfo/v1/webdav.php -%%WWWDIR%%/apps/dav/appinfo/v2/remote.php -%%WWWDIR%%/apps/dav/bin/chunkperf.php -%%WWWDIR%%/apps/dav/composer/autoload.php -%%WWWDIR%%/apps/dav/composer/composer.json -%%WWWDIR%%/apps/dav/composer/composer/ClassLoader.php -%%WWWDIR%%/apps/dav/composer/composer/LICENSE -%%WWWDIR%%/apps/dav/composer/composer/autoload_classmap.php -%%WWWDIR%%/apps/dav/composer/composer/autoload_namespaces.php -%%WWWDIR%%/apps/dav/composer/composer/autoload_psr4.php -%%WWWDIR%%/apps/dav/composer/composer/autoload_real.php -%%WWWDIR%%/apps/dav/composer/composer/autoload_static.php -%%WWWDIR%%/apps/dav/js/settings-admin-caldav.js -%%WWWDIR%%/apps/dav/l10n/.gitkeep -%%WWWDIR%%/apps/dav/l10n/bg.js -%%WWWDIR%%/apps/dav/l10n/bg.json -%%WWWDIR%%/apps/dav/l10n/bg_BG.js -%%WWWDIR%%/apps/dav/l10n/bg_BG.json -%%WWWDIR%%/apps/dav/l10n/ca.js -%%WWWDIR%%/apps/dav/l10n/ca.json -%%WWWDIR%%/apps/dav/l10n/cs.js -%%WWWDIR%%/apps/dav/l10n/cs.json -%%WWWDIR%%/apps/dav/l10n/cs_CZ.js -%%WWWDIR%%/apps/dav/l10n/cs_CZ.json -%%WWWDIR%%/apps/dav/l10n/da.js -%%WWWDIR%%/apps/dav/l10n/da.json -%%WWWDIR%%/apps/dav/l10n/de.js -%%WWWDIR%%/apps/dav/l10n/de.json -%%WWWDIR%%/apps/dav/l10n/de_DE.js -%%WWWDIR%%/apps/dav/l10n/de_DE.json -%%WWWDIR%%/apps/dav/l10n/el.js -%%WWWDIR%%/apps/dav/l10n/el.json -%%WWWDIR%%/apps/dav/l10n/en_GB.js -%%WWWDIR%%/apps/dav/l10n/en_GB.json -%%WWWDIR%%/apps/dav/l10n/es.js -%%WWWDIR%%/apps/dav/l10n/es.json -%%WWWDIR%%/apps/dav/l10n/es_419.js -%%WWWDIR%%/apps/dav/l10n/es_419.json -%%WWWDIR%%/apps/dav/l10n/es_AR.js -%%WWWDIR%%/apps/dav/l10n/es_AR.json -%%WWWDIR%%/apps/dav/l10n/es_CL.js -%%WWWDIR%%/apps/dav/l10n/es_CL.json -%%WWWDIR%%/apps/dav/l10n/es_CO.js -%%WWWDIR%%/apps/dav/l10n/es_CO.json -%%WWWDIR%%/apps/dav/l10n/es_CR.js -%%WWWDIR%%/apps/dav/l10n/es_CR.json -%%WWWDIR%%/apps/dav/l10n/es_DO.js -%%WWWDIR%%/apps/dav/l10n/es_DO.json -%%WWWDIR%%/apps/dav/l10n/es_EC.js -%%WWWDIR%%/apps/dav/l10n/es_EC.json -%%WWWDIR%%/apps/dav/l10n/es_GT.js -%%WWWDIR%%/apps/dav/l10n/es_GT.json -%%WWWDIR%%/apps/dav/l10n/es_HN.js -%%WWWDIR%%/apps/dav/l10n/es_HN.json -%%WWWDIR%%/apps/dav/l10n/es_MX.js -%%WWWDIR%%/apps/dav/l10n/es_MX.json -%%WWWDIR%%/apps/dav/l10n/es_NI.js -%%WWWDIR%%/apps/dav/l10n/es_NI.json -%%WWWDIR%%/apps/dav/l10n/es_PA.js -%%WWWDIR%%/apps/dav/l10n/es_PA.json -%%WWWDIR%%/apps/dav/l10n/es_PE.js -%%WWWDIR%%/apps/dav/l10n/es_PE.json -%%WWWDIR%%/apps/dav/l10n/es_PR.js -%%WWWDIR%%/apps/dav/l10n/es_PR.json -%%WWWDIR%%/apps/dav/l10n/es_PY.js -%%WWWDIR%%/apps/dav/l10n/es_PY.json -%%WWWDIR%%/apps/dav/l10n/es_SV.js -%%WWWDIR%%/apps/dav/l10n/es_SV.json -%%WWWDIR%%/apps/dav/l10n/es_UY.js -%%WWWDIR%%/apps/dav/l10n/es_UY.json -%%WWWDIR%%/apps/dav/l10n/et_EE.js -%%WWWDIR%%/apps/dav/l10n/et_EE.json -%%WWWDIR%%/apps/dav/l10n/eu.js -%%WWWDIR%%/apps/dav/l10n/eu.json -%%WWWDIR%%/apps/dav/l10n/fi.js -%%WWWDIR%%/apps/dav/l10n/fi.json -%%WWWDIR%%/apps/dav/l10n/fi_FI.js -%%WWWDIR%%/apps/dav/l10n/fi_FI.json -%%WWWDIR%%/apps/dav/l10n/fr.js -%%WWWDIR%%/apps/dav/l10n/fr.json -%%WWWDIR%%/apps/dav/l10n/gl.js -%%WWWDIR%%/apps/dav/l10n/gl.json -%%WWWDIR%%/apps/dav/l10n/hu.js -%%WWWDIR%%/apps/dav/l10n/hu.json -%%WWWDIR%%/apps/dav/l10n/hu_HU.js -%%WWWDIR%%/apps/dav/l10n/hu_HU.json -%%WWWDIR%%/apps/dav/l10n/id.js -%%WWWDIR%%/apps/dav/l10n/id.json -%%WWWDIR%%/apps/dav/l10n/is.js -%%WWWDIR%%/apps/dav/l10n/is.json -%%WWWDIR%%/apps/dav/l10n/it.js -%%WWWDIR%%/apps/dav/l10n/it.json -%%WWWDIR%%/apps/dav/l10n/ja.js -%%WWWDIR%%/apps/dav/l10n/ja.json -%%WWWDIR%%/apps/dav/l10n/ka_GE.js -%%WWWDIR%%/apps/dav/l10n/ka_GE.json -%%WWWDIR%%/apps/dav/l10n/ko.js -%%WWWDIR%%/apps/dav/l10n/ko.json -%%WWWDIR%%/apps/dav/l10n/lt_LT.js -%%WWWDIR%%/apps/dav/l10n/lt_LT.json -%%WWWDIR%%/apps/dav/l10n/lv.js -%%WWWDIR%%/apps/dav/l10n/lv.json -%%WWWDIR%%/apps/dav/l10n/nb.js -%%WWWDIR%%/apps/dav/l10n/nb.json -%%WWWDIR%%/apps/dav/l10n/nb_NO.js -%%WWWDIR%%/apps/dav/l10n/nb_NO.json -%%WWWDIR%%/apps/dav/l10n/nl.js -%%WWWDIR%%/apps/dav/l10n/nl.json -%%WWWDIR%%/apps/dav/l10n/pl.js -%%WWWDIR%%/apps/dav/l10n/pl.json -%%WWWDIR%%/apps/dav/l10n/pt_BR.js -%%WWWDIR%%/apps/dav/l10n/pt_BR.json -%%WWWDIR%%/apps/dav/l10n/ro.js -%%WWWDIR%%/apps/dav/l10n/ro.json -%%WWWDIR%%/apps/dav/l10n/ru.js -%%WWWDIR%%/apps/dav/l10n/ru.json -%%WWWDIR%%/apps/dav/l10n/sk.js -%%WWWDIR%%/apps/dav/l10n/sk.json -%%WWWDIR%%/apps/dav/l10n/sl.js -%%WWWDIR%%/apps/dav/l10n/sl.json -%%WWWDIR%%/apps/dav/l10n/sq.js -%%WWWDIR%%/apps/dav/l10n/sq.json -%%WWWDIR%%/apps/dav/l10n/sr.js -%%WWWDIR%%/apps/dav/l10n/sr.json -%%WWWDIR%%/apps/dav/l10n/sv.js -%%WWWDIR%%/apps/dav/l10n/sv.json -%%WWWDIR%%/apps/dav/l10n/tr.js -%%WWWDIR%%/apps/dav/l10n/tr.json -%%WWWDIR%%/apps/dav/l10n/zh_CN.js -%%WWWDIR%%/apps/dav/l10n/zh_CN.json -%%WWWDIR%%/apps/dav/l10n/zh_TW.js -%%WWWDIR%%/apps/dav/l10n/zh_TW.json -%%WWWDIR%%/apps/dav/lib/AppInfo/Application.php -%%WWWDIR%%/apps/dav/lib/AppInfo/PluginManager.php -%%WWWDIR%%/apps/dav/lib/Avatars/AvatarHome.php -%%WWWDIR%%/apps/dav/lib/Avatars/AvatarNode.php -%%WWWDIR%%/apps/dav/lib/Avatars/RootCollection.php -%%WWWDIR%%/apps/dav/lib/BackgroundJob/GenerateBirthdayCalendarBackgroundJob.php -%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Backend.php -%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Filter/Calendar.php -%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Filter/Todo.php -%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Provider/Base.php -%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Provider/Calendar.php -%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Provider/Event.php -%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Provider/Todo.php -%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Setting/Calendar.php -%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Setting/Event.php -%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Setting/Todo.php -%%WWWDIR%%/apps/dav/lib/CalDAV/BirthdayCalendar/EnablePlugin.php -%%WWWDIR%%/apps/dav/lib/CalDAV/BirthdayService.php -%%WWWDIR%%/apps/dav/lib/CalDAV/CalDavBackend.php -%%WWWDIR%%/apps/dav/lib/CalDAV/Calendar.php -%%WWWDIR%%/apps/dav/lib/CalDAV/CalendarHome.php -%%WWWDIR%%/apps/dav/lib/CalDAV/CalendarImpl.php -%%WWWDIR%%/apps/dav/lib/CalDAV/CalendarManager.php -%%WWWDIR%%/apps/dav/lib/CalDAV/CalendarObject.php -%%WWWDIR%%/apps/dav/lib/CalDAV/CalendarRoot.php -%%WWWDIR%%/apps/dav/lib/CalDAV/Plugin.php -%%WWWDIR%%/apps/dav/lib/CalDAV/Principal/Collection.php -%%WWWDIR%%/apps/dav/lib/CalDAV/Principal/User.php -%%WWWDIR%%/apps/dav/lib/CalDAV/PublicCalendar.php -%%WWWDIR%%/apps/dav/lib/CalDAV/PublicCalendarObject.php -%%WWWDIR%%/apps/dav/lib/CalDAV/PublicCalendarRoot.php -%%WWWDIR%%/apps/dav/lib/CalDAV/Publishing/PublishPlugin.php -%%WWWDIR%%/apps/dav/lib/CalDAV/Publishing/Xml/Publisher.php -%%WWWDIR%%/apps/dav/lib/CalDAV/Schedule/IMipPlugin.php -%%WWWDIR%%/apps/dav/lib/CalDAV/Schedule/Plugin.php -%%WWWDIR%%/apps/dav/lib/CalDAV/Search/SearchPlugin.php -%%WWWDIR%%/apps/dav/lib/CalDAV/Search/Xml/Filter/CompFilter.php -%%WWWDIR%%/apps/dav/lib/CalDAV/Search/Xml/Filter/LimitFilter.php -%%WWWDIR%%/apps/dav/lib/CalDAV/Search/Xml/Filter/OffsetFilter.php -%%WWWDIR%%/apps/dav/lib/CalDAV/Search/Xml/Filter/ParamFilter.php -%%WWWDIR%%/apps/dav/lib/CalDAV/Search/Xml/Filter/PropFilter.php -%%WWWDIR%%/apps/dav/lib/CalDAV/Search/Xml/Filter/SearchTermFilter.php -%%WWWDIR%%/apps/dav/lib/CalDAV/Search/Xml/Request/CalendarSearchReport.php -%%WWWDIR%%/apps/dav/lib/Capabilities.php -%%WWWDIR%%/apps/dav/lib/CardDAV/AddressBook.php -%%WWWDIR%%/apps/dav/lib/CardDAV/AddressBookImpl.php -%%WWWDIR%%/apps/dav/lib/CardDAV/AddressBookRoot.php -%%WWWDIR%%/apps/dav/lib/CardDAV/CardDavBackend.php -%%WWWDIR%%/apps/dav/lib/CardDAV/ContactsManager.php -%%WWWDIR%%/apps/dav/lib/CardDAV/Converter.php -%%WWWDIR%%/apps/dav/lib/CardDAV/ImageExportPlugin.php -%%WWWDIR%%/apps/dav/lib/CardDAV/PhotoCache.php -%%WWWDIR%%/apps/dav/lib/CardDAV/Plugin.php -%%WWWDIR%%/apps/dav/lib/CardDAV/SyncService.php -%%WWWDIR%%/apps/dav/lib/CardDAV/UserAddressBooks.php -%%WWWDIR%%/apps/dav/lib/CardDAV/Xml/Groups.php -%%WWWDIR%%/apps/dav/lib/Command/CreateAddressBook.php -%%WWWDIR%%/apps/dav/lib/Command/CreateCalendar.php -%%WWWDIR%%/apps/dav/lib/Command/SyncBirthdayCalendar.php -%%WWWDIR%%/apps/dav/lib/Command/SyncSystemAddressBook.php -%%WWWDIR%%/apps/dav/lib/Comments/CommentNode.php -%%WWWDIR%%/apps/dav/lib/Comments/CommentsPlugin.php -%%WWWDIR%%/apps/dav/lib/Comments/EntityCollection.php -%%WWWDIR%%/apps/dav/lib/Comments/EntityTypeCollection.php -%%WWWDIR%%/apps/dav/lib/Comments/RootCollection.php -%%WWWDIR%%/apps/dav/lib/Connector/LegacyDAVACL.php -%%WWWDIR%%/apps/dav/lib/Connector/PublicAuth.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/AppEnabledPlugin.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/Auth.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/BearerAuth.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/BlockLegacyClientPlugin.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/CachingTree.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/ChecksumList.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/CommentPropertiesPlugin.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/CopyEtagHeaderPlugin.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/CustomPropertiesBackend.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/DavAclPlugin.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/Directory.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/DummyGetResponsePlugin.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/Exception/EntityTooLarge.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/Exception/FileLocked.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/Exception/Forbidden.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/Exception/InvalidPath.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/Exception/PasswordLoginForbidden.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/Exception/UnsupportedMediaType.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/ExceptionLoggerPlugin.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/FakeLockerPlugin.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/File.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/FilesPlugin.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/FilesReportPlugin.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/LockPlugin.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/MaintenancePlugin.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/Node.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/ObjectTree.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/Principal.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/QuotaPlugin.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/Server.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/ServerFactory.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/ShareTypeList.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/SharesPlugin.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/TagList.php -%%WWWDIR%%/apps/dav/lib/Connector/Sabre/TagsPlugin.php -%%WWWDIR%%/apps/dav/lib/Controller/BirthdayCalendarController.php -%%WWWDIR%%/apps/dav/lib/DAV/CustomPropertiesBackend.php -%%WWWDIR%%/apps/dav/lib/DAV/GroupPrincipalBackend.php -%%WWWDIR%%/apps/dav/lib/DAV/PublicAuth.php -%%WWWDIR%%/apps/dav/lib/DAV/Sharing/Backend.php -%%WWWDIR%%/apps/dav/lib/DAV/Sharing/IShareable.php -%%WWWDIR%%/apps/dav/lib/DAV/Sharing/Plugin.php -%%WWWDIR%%/apps/dav/lib/DAV/Sharing/Xml/Invite.php -%%WWWDIR%%/apps/dav/lib/DAV/Sharing/Xml/ShareRequest.php -%%WWWDIR%%/apps/dav/lib/DAV/SystemPrincipalBackend.php -%%WWWDIR%%/apps/dav/lib/Files/BrowserErrorPagePlugin.php -%%WWWDIR%%/apps/dav/lib/Files/FileSearchBackend.php -%%WWWDIR%%/apps/dav/lib/Files/FilesHome.php -%%WWWDIR%%/apps/dav/lib/Files/RootCollection.php -%%WWWDIR%%/apps/dav/lib/Files/Sharing/FilesDropPlugin.php -%%WWWDIR%%/apps/dav/lib/Files/Sharing/PublicLinkCheckPlugin.php -%%WWWDIR%%/apps/dav/lib/HookManager.php -%%WWWDIR%%/apps/dav/lib/Migration/BuildCalendarSearchIndex.php -%%WWWDIR%%/apps/dav/lib/Migration/BuildCalendarSearchIndexBackgroundJob.php -%%WWWDIR%%/apps/dav/lib/Migration/CalDAVRemoveEmptyValue.php -%%WWWDIR%%/apps/dav/lib/Migration/FixBirthdayCalendarComponent.php -%%WWWDIR%%/apps/dav/lib/Migration/Version1004Date20170825134824.php -%%WWWDIR%%/apps/dav/lib/Migration/Version1004Date20170919104507.php -%%WWWDIR%%/apps/dav/lib/Migration/Version1004Date20170924124212.php -%%WWWDIR%%/apps/dav/lib/Migration/Version1004Date20170926103422.php -%%WWWDIR%%/apps/dav/lib/RootCollection.php -%%WWWDIR%%/apps/dav/lib/Server.php -%%WWWDIR%%/apps/dav/lib/Settings/CalDAVSettings.php -%%WWWDIR%%/apps/dav/lib/SystemTag/SystemTagMappingNode.php -%%WWWDIR%%/apps/dav/lib/SystemTag/SystemTagNode.php -%%WWWDIR%%/apps/dav/lib/SystemTag/SystemTagPlugin.php -%%WWWDIR%%/apps/dav/lib/SystemTag/SystemTagsByIdCollection.php -%%WWWDIR%%/apps/dav/lib/SystemTag/SystemTagsObjectMappingCollection.php -%%WWWDIR%%/apps/dav/lib/SystemTag/SystemTagsObjectTypeCollection.php -%%WWWDIR%%/apps/dav/lib/SystemTag/SystemTagsRelationsCollection.php -%%WWWDIR%%/apps/dav/lib/Upload/AssemblyStream.php -%%WWWDIR%%/apps/dav/lib/Upload/ChunkingPlugin.php -%%WWWDIR%%/apps/dav/lib/Upload/FutureFile.php -%%WWWDIR%%/apps/dav/lib/Upload/RootCollection.php -%%WWWDIR%%/apps/dav/lib/Upload/UploadFolder.php -%%WWWDIR%%/apps/dav/lib/Upload/UploadHome.php -%%WWWDIR%%/apps/dav/templates/exception.php -%%WWWDIR%%/apps/dav/templates/settings-admin-caldav.php -%%WWWDIR%%/apps/encryption/appinfo/app.php -%%WWWDIR%%/apps/encryption/appinfo/info.xml -%%WWWDIR%%/apps/encryption/appinfo/routes.php -%%WWWDIR%%/apps/encryption/appinfo/signature.json -%%WWWDIR%%/apps/encryption/composer/autoload.php -%%WWWDIR%%/apps/encryption/composer/composer.json -%%WWWDIR%%/apps/encryption/composer/composer/ClassLoader.php -%%WWWDIR%%/apps/encryption/composer/composer/LICENSE -%%WWWDIR%%/apps/encryption/composer/composer/autoload_classmap.php -%%WWWDIR%%/apps/encryption/composer/composer/autoload_namespaces.php -%%WWWDIR%%/apps/encryption/composer/composer/autoload_psr4.php -%%WWWDIR%%/apps/encryption/composer/composer/autoload_real.php -%%WWWDIR%%/apps/encryption/composer/composer/autoload_static.php -%%WWWDIR%%/apps/encryption/css/settings-admin.css -%%WWWDIR%%/apps/encryption/css/settings-personal.css -%%WWWDIR%%/apps/encryption/img/app.svg -%%WWWDIR%%/apps/encryption/js/encryption.js -%%WWWDIR%%/apps/encryption/js/settings-admin.js -%%WWWDIR%%/apps/encryption/js/settings-personal.js -%%WWWDIR%%/apps/encryption/l10n/.gitkeep -%%WWWDIR%%/apps/encryption/l10n/ar.js -%%WWWDIR%%/apps/encryption/l10n/ar.json -%%WWWDIR%%/apps/encryption/l10n/ast.js -%%WWWDIR%%/apps/encryption/l10n/ast.json -%%WWWDIR%%/apps/encryption/l10n/az.js -%%WWWDIR%%/apps/encryption/l10n/az.json -%%WWWDIR%%/apps/encryption/l10n/bg_BG.js -%%WWWDIR%%/apps/encryption/l10n/bg_BG.json -%%WWWDIR%%/apps/encryption/l10n/bn_BD.js -%%WWWDIR%%/apps/encryption/l10n/bn_BD.json -%%WWWDIR%%/apps/encryption/l10n/bs.js -%%WWWDIR%%/apps/encryption/l10n/bs.json -%%WWWDIR%%/apps/encryption/l10n/ca.js -%%WWWDIR%%/apps/encryption/l10n/ca.json -%%WWWDIR%%/apps/encryption/l10n/cs.js -%%WWWDIR%%/apps/encryption/l10n/cs.json -%%WWWDIR%%/apps/encryption/l10n/cs_CZ.js -%%WWWDIR%%/apps/encryption/l10n/cs_CZ.json -%%WWWDIR%%/apps/encryption/l10n/da.js -%%WWWDIR%%/apps/encryption/l10n/da.json -%%WWWDIR%%/apps/encryption/l10n/de.js -%%WWWDIR%%/apps/encryption/l10n/de.json -%%WWWDIR%%/apps/encryption/l10n/de_AT.js -%%WWWDIR%%/apps/encryption/l10n/de_AT.json -%%WWWDIR%%/apps/encryption/l10n/de_DE.js -%%WWWDIR%%/apps/encryption/l10n/de_DE.json -%%WWWDIR%%/apps/encryption/l10n/el.js -%%WWWDIR%%/apps/encryption/l10n/el.json -%%WWWDIR%%/apps/encryption/l10n/en_GB.js -%%WWWDIR%%/apps/encryption/l10n/en_GB.json -%%WWWDIR%%/apps/encryption/l10n/eo.js -%%WWWDIR%%/apps/encryption/l10n/eo.json -%%WWWDIR%%/apps/encryption/l10n/es.js -%%WWWDIR%%/apps/encryption/l10n/es.json -%%WWWDIR%%/apps/encryption/l10n/es_419.js -%%WWWDIR%%/apps/encryption/l10n/es_419.json -%%WWWDIR%%/apps/encryption/l10n/es_AR.js -%%WWWDIR%%/apps/encryption/l10n/es_AR.json -%%WWWDIR%%/apps/encryption/l10n/es_CL.js -%%WWWDIR%%/apps/encryption/l10n/es_CL.json -%%WWWDIR%%/apps/encryption/l10n/es_CO.js -%%WWWDIR%%/apps/encryption/l10n/es_CO.json -%%WWWDIR%%/apps/encryption/l10n/es_CR.js -%%WWWDIR%%/apps/encryption/l10n/es_CR.json -%%WWWDIR%%/apps/encryption/l10n/es_DO.js -%%WWWDIR%%/apps/encryption/l10n/es_DO.json -%%WWWDIR%%/apps/encryption/l10n/es_EC.js -%%WWWDIR%%/apps/encryption/l10n/es_EC.json -%%WWWDIR%%/apps/encryption/l10n/es_GT.js -%%WWWDIR%%/apps/encryption/l10n/es_GT.json -%%WWWDIR%%/apps/encryption/l10n/es_HN.js -%%WWWDIR%%/apps/encryption/l10n/es_HN.json -%%WWWDIR%%/apps/encryption/l10n/es_MX.js -%%WWWDIR%%/apps/encryption/l10n/es_MX.json -%%WWWDIR%%/apps/encryption/l10n/es_NI.js -%%WWWDIR%%/apps/encryption/l10n/es_NI.json -%%WWWDIR%%/apps/encryption/l10n/es_PA.js -%%WWWDIR%%/apps/encryption/l10n/es_PA.json -%%WWWDIR%%/apps/encryption/l10n/es_PE.js -%%WWWDIR%%/apps/encryption/l10n/es_PE.json -%%WWWDIR%%/apps/encryption/l10n/es_PR.js -%%WWWDIR%%/apps/encryption/l10n/es_PR.json -%%WWWDIR%%/apps/encryption/l10n/es_PY.js -%%WWWDIR%%/apps/encryption/l10n/es_PY.json -%%WWWDIR%%/apps/encryption/l10n/es_SV.js -%%WWWDIR%%/apps/encryption/l10n/es_SV.json -%%WWWDIR%%/apps/encryption/l10n/es_UY.js -%%WWWDIR%%/apps/encryption/l10n/es_UY.json -%%WWWDIR%%/apps/encryption/l10n/et_EE.js -%%WWWDIR%%/apps/encryption/l10n/et_EE.json -%%WWWDIR%%/apps/encryption/l10n/eu.js -%%WWWDIR%%/apps/encryption/l10n/eu.json -%%WWWDIR%%/apps/encryption/l10n/fa.js -%%WWWDIR%%/apps/encryption/l10n/fa.json -%%WWWDIR%%/apps/encryption/l10n/fi.js -%%WWWDIR%%/apps/encryption/l10n/fi.json -%%WWWDIR%%/apps/encryption/l10n/fi_FI.js -%%WWWDIR%%/apps/encryption/l10n/fi_FI.json -%%WWWDIR%%/apps/encryption/l10n/fr.js -%%WWWDIR%%/apps/encryption/l10n/fr.json -%%WWWDIR%%/apps/encryption/l10n/gl.js -%%WWWDIR%%/apps/encryption/l10n/gl.json -%%WWWDIR%%/apps/encryption/l10n/he.js -%%WWWDIR%%/apps/encryption/l10n/he.json -%%WWWDIR%%/apps/encryption/l10n/hr.js -%%WWWDIR%%/apps/encryption/l10n/hr.json -%%WWWDIR%%/apps/encryption/l10n/hu.js -%%WWWDIR%%/apps/encryption/l10n/hu.json -%%WWWDIR%%/apps/encryption/l10n/hu_HU.js -%%WWWDIR%%/apps/encryption/l10n/hu_HU.json -%%WWWDIR%%/apps/encryption/l10n/ia.js -%%WWWDIR%%/apps/encryption/l10n/ia.json -%%WWWDIR%%/apps/encryption/l10n/id.js -%%WWWDIR%%/apps/encryption/l10n/id.json -%%WWWDIR%%/apps/encryption/l10n/is.js -%%WWWDIR%%/apps/encryption/l10n/is.json -%%WWWDIR%%/apps/encryption/l10n/it.js -%%WWWDIR%%/apps/encryption/l10n/it.json -%%WWWDIR%%/apps/encryption/l10n/ja.js -%%WWWDIR%%/apps/encryption/l10n/ja.json -%%WWWDIR%%/apps/encryption/l10n/ka_GE.js -%%WWWDIR%%/apps/encryption/l10n/ka_GE.json -%%WWWDIR%%/apps/encryption/l10n/km.js -%%WWWDIR%%/apps/encryption/l10n/km.json -%%WWWDIR%%/apps/encryption/l10n/kn.js -%%WWWDIR%%/apps/encryption/l10n/kn.json -%%WWWDIR%%/apps/encryption/l10n/ko.js -%%WWWDIR%%/apps/encryption/l10n/ko.json -%%WWWDIR%%/apps/encryption/l10n/lb.js -%%WWWDIR%%/apps/encryption/l10n/lb.json -%%WWWDIR%%/apps/encryption/l10n/lt_LT.js -%%WWWDIR%%/apps/encryption/l10n/lt_LT.json -%%WWWDIR%%/apps/encryption/l10n/lv.js -%%WWWDIR%%/apps/encryption/l10n/lv.json -%%WWWDIR%%/apps/encryption/l10n/mk.js -%%WWWDIR%%/apps/encryption/l10n/mk.json -%%WWWDIR%%/apps/encryption/l10n/nb.js -%%WWWDIR%%/apps/encryption/l10n/nb.json -%%WWWDIR%%/apps/encryption/l10n/nb_NO.js -%%WWWDIR%%/apps/encryption/l10n/nb_NO.json -%%WWWDIR%%/apps/encryption/l10n/nl.js -%%WWWDIR%%/apps/encryption/l10n/nl.json -%%WWWDIR%%/apps/encryption/l10n/oc.js -%%WWWDIR%%/apps/encryption/l10n/oc.json -%%WWWDIR%%/apps/encryption/l10n/pl.js -%%WWWDIR%%/apps/encryption/l10n/pl.json -%%WWWDIR%%/apps/encryption/l10n/pt_BR.js -%%WWWDIR%%/apps/encryption/l10n/pt_BR.json -%%WWWDIR%%/apps/encryption/l10n/pt_PT.js -%%WWWDIR%%/apps/encryption/l10n/pt_PT.json -%%WWWDIR%%/apps/encryption/l10n/ro.js -%%WWWDIR%%/apps/encryption/l10n/ro.json -%%WWWDIR%%/apps/encryption/l10n/ru.js -%%WWWDIR%%/apps/encryption/l10n/ru.json -%%WWWDIR%%/apps/encryption/l10n/sk.js -%%WWWDIR%%/apps/encryption/l10n/sk.json -%%WWWDIR%%/apps/encryption/l10n/sk_SK.js -%%WWWDIR%%/apps/encryption/l10n/sk_SK.json -%%WWWDIR%%/apps/encryption/l10n/sl.js -%%WWWDIR%%/apps/encryption/l10n/sl.json -%%WWWDIR%%/apps/encryption/l10n/sq.js -%%WWWDIR%%/apps/encryption/l10n/sq.json -%%WWWDIR%%/apps/encryption/l10n/sr.js -%%WWWDIR%%/apps/encryption/l10n/sr.json -%%WWWDIR%%/apps/encryption/l10n/sr@latin.js -%%WWWDIR%%/apps/encryption/l10n/sr@latin.json -%%WWWDIR%%/apps/encryption/l10n/sv.js -%%WWWDIR%%/apps/encryption/l10n/sv.json -%%WWWDIR%%/apps/encryption/l10n/th.js -%%WWWDIR%%/apps/encryption/l10n/th.json -%%WWWDIR%%/apps/encryption/l10n/th_TH.js -%%WWWDIR%%/apps/encryption/l10n/th_TH.json -%%WWWDIR%%/apps/encryption/l10n/tr.js -%%WWWDIR%%/apps/encryption/l10n/tr.json -%%WWWDIR%%/apps/encryption/l10n/uk.js -%%WWWDIR%%/apps/encryption/l10n/uk.json -%%WWWDIR%%/apps/encryption/l10n/ur_PK.js -%%WWWDIR%%/apps/encryption/l10n/ur_PK.json -%%WWWDIR%%/apps/encryption/l10n/vi.js -%%WWWDIR%%/apps/encryption/l10n/vi.json -%%WWWDIR%%/apps/encryption/l10n/zh_CN.js -%%WWWDIR%%/apps/encryption/l10n/zh_CN.json -%%WWWDIR%%/apps/encryption/l10n/zh_HK.js -%%WWWDIR%%/apps/encryption/l10n/zh_HK.json -%%WWWDIR%%/apps/encryption/l10n/zh_TW.js -%%WWWDIR%%/apps/encryption/l10n/zh_TW.json -%%WWWDIR%%/apps/encryption/lib/AppInfo/Application.php -%%WWWDIR%%/apps/encryption/lib/Command/DisableMasterKey.php -%%WWWDIR%%/apps/encryption/lib/Command/EnableMasterKey.php -%%WWWDIR%%/apps/encryption/lib/Command/MigrateKeys.php -%%WWWDIR%%/apps/encryption/lib/Controller/RecoveryController.php -%%WWWDIR%%/apps/encryption/lib/Controller/SettingsController.php -%%WWWDIR%%/apps/encryption/lib/Controller/StatusController.php -%%WWWDIR%%/apps/encryption/lib/Crypto/Crypt.php -%%WWWDIR%%/apps/encryption/lib/Crypto/DecryptAll.php -%%WWWDIR%%/apps/encryption/lib/Crypto/EncryptAll.php -%%WWWDIR%%/apps/encryption/lib/Crypto/Encryption.php -%%WWWDIR%%/apps/encryption/lib/Exceptions/MultiKeyDecryptException.php -%%WWWDIR%%/apps/encryption/lib/Exceptions/MultiKeyEncryptException.php -%%WWWDIR%%/apps/encryption/lib/Exceptions/PrivateKeyMissingException.php -%%WWWDIR%%/apps/encryption/lib/Exceptions/PublicKeyMissingException.php -%%WWWDIR%%/apps/encryption/lib/HookManager.php -%%WWWDIR%%/apps/encryption/lib/Hooks/Contracts/IHook.php -%%WWWDIR%%/apps/encryption/lib/Hooks/UserHooks.php -%%WWWDIR%%/apps/encryption/lib/KeyManager.php -%%WWWDIR%%/apps/encryption/lib/Migration.php -%%WWWDIR%%/apps/encryption/lib/Migration/SetMasterKeyStatus.php -%%WWWDIR%%/apps/encryption/lib/Recovery.php -%%WWWDIR%%/apps/encryption/lib/Session.php -%%WWWDIR%%/apps/encryption/lib/Settings/Admin.php -%%WWWDIR%%/apps/encryption/lib/Settings/Personal.php -%%WWWDIR%%/apps/encryption/lib/Users/Setup.php -%%WWWDIR%%/apps/encryption/lib/Util.php -%%WWWDIR%%/apps/encryption/templates/altmail.php -%%WWWDIR%%/apps/encryption/templates/mail.php -%%WWWDIR%%/apps/encryption/templates/settings-admin.php -%%WWWDIR%%/apps/encryption/templates/settings-personal.php -%%WWWDIR%%/apps/federatedfilesharing/appinfo/app.php -%%WWWDIR%%/apps/federatedfilesharing/appinfo/database.xml -%%WWWDIR%%/apps/federatedfilesharing/appinfo/info.xml -%%WWWDIR%%/apps/federatedfilesharing/appinfo/routes.php -%%WWWDIR%%/apps/federatedfilesharing/appinfo/signature.json -%%WWWDIR%%/apps/federatedfilesharing/composer/autoload.php -%%WWWDIR%%/apps/federatedfilesharing/composer/composer.json -%%WWWDIR%%/apps/federatedfilesharing/composer/composer/ClassLoader.php -%%WWWDIR%%/apps/federatedfilesharing/composer/composer/LICENSE -%%WWWDIR%%/apps/federatedfilesharing/composer/composer/autoload_classmap.php -%%WWWDIR%%/apps/federatedfilesharing/composer/composer/autoload_namespaces.php -%%WWWDIR%%/apps/federatedfilesharing/composer/composer/autoload_psr4.php -%%WWWDIR%%/apps/federatedfilesharing/composer/composer/autoload_real.php -%%WWWDIR%%/apps/federatedfilesharing/composer/composer/autoload_static.php -%%WWWDIR%%/apps/federatedfilesharing/css/settings-personal.css -%%WWWDIR%%/apps/federatedfilesharing/img/social-diaspora.svg -%%WWWDIR%%/apps/federatedfilesharing/img/social-facebook.svg -%%WWWDIR%%/apps/federatedfilesharing/img/social-googleplus.svg -%%WWWDIR%%/apps/federatedfilesharing/img/social-twitter.svg -%%WWWDIR%%/apps/federatedfilesharing/js/external.js -%%WWWDIR%%/apps/federatedfilesharing/js/settings-admin.js -%%WWWDIR%%/apps/federatedfilesharing/js/settings-personal.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/.gitkeep -%%WWWDIR%%/apps/federatedfilesharing/l10n/ar.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/ar.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/ast.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/ast.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/az.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/az.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/bg_BG.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/bg_BG.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/ca.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/ca.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/cs.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/cs.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/cs_CZ.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/cs_CZ.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/da.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/da.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/de.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/de.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/de_DE.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/de_DE.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/el.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/el.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/en_GB.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/en_GB.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/eo.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/eo.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/es.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/es.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_419.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_419.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_AR.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_AR.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_CL.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_CL.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_CO.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_CO.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_CR.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_CR.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_DO.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_DO.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_EC.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_EC.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_GT.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_GT.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_HN.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_HN.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_MX.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_MX.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_NI.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_NI.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_PA.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_PA.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_PE.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_PE.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_PR.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_PR.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_PY.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_PY.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_SV.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_SV.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_UY.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/es_UY.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/et_EE.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/et_EE.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/eu.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/eu.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/fa.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/fa.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/fi.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/fi.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/fi_FI.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/fi_FI.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/fr.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/fr.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/gl.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/gl.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/he.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/he.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/hr.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/hr.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/hu.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/hu.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/hu_HU.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/hu_HU.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/ia.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/ia.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/id.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/id.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/is.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/is.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/it.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/it.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/ja.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/ja.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/ka_GE.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/ka_GE.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/ko.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/ko.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/lb.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/lb.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/lt_LT.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/lt_LT.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/lv.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/lv.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/mk.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/mk.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/nb.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/nb.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/nb_NO.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/nb_NO.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/nl.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/nl.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/oc.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/oc.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/pl.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/pl.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/pt_BR.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/pt_BR.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/pt_PT.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/pt_PT.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/ro.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/ro.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/ru.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/ru.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/sk.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/sk.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/sk_SK.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/sk_SK.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/sl.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/sl.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/sq.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/sq.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/sr.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/sr.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/sr@latin.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/sr@latin.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/sv.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/sv.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/th_TH.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/th_TH.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/tr.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/tr.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/uk.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/uk.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/zh_CN.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/zh_CN.json -%%WWWDIR%%/apps/federatedfilesharing/l10n/zh_TW.js -%%WWWDIR%%/apps/federatedfilesharing/l10n/zh_TW.json -%%WWWDIR%%/apps/federatedfilesharing/lib/AddressHandler.php -%%WWWDIR%%/apps/federatedfilesharing/lib/AppInfo/Application.php -%%WWWDIR%%/apps/federatedfilesharing/lib/BackgroundJob/RetryJob.php -%%WWWDIR%%/apps/federatedfilesharing/lib/Controller/MountPublicLinkController.php -%%WWWDIR%%/apps/federatedfilesharing/lib/Controller/RequestHandlerController.php -%%WWWDIR%%/apps/federatedfilesharing/lib/FederatedShareProvider.php -%%WWWDIR%%/apps/federatedfilesharing/lib/Notifications.php -%%WWWDIR%%/apps/federatedfilesharing/lib/Notifier.php -%%WWWDIR%%/apps/federatedfilesharing/lib/Settings/Admin.php -%%WWWDIR%%/apps/federatedfilesharing/lib/Settings/Personal.php -%%WWWDIR%%/apps/federatedfilesharing/lib/Settings/PersonalSection.php -%%WWWDIR%%/apps/federatedfilesharing/lib/TokenHandler.php -%%WWWDIR%%/apps/federatedfilesharing/templates/settings-admin.php -%%WWWDIR%%/apps/federatedfilesharing/templates/settings-personal.php -%%WWWDIR%%/apps/federation/appinfo/app.php -%%WWWDIR%%/apps/federation/appinfo/database.xml -%%WWWDIR%%/apps/federation/appinfo/info.xml -%%WWWDIR%%/apps/federation/appinfo/routes.php -%%WWWDIR%%/apps/federation/appinfo/signature.json -%%WWWDIR%%/apps/federation/composer/autoload.php -%%WWWDIR%%/apps/federation/composer/composer.json -%%WWWDIR%%/apps/federation/composer/composer/ClassLoader.php -%%WWWDIR%%/apps/federation/composer/composer/LICENSE -%%WWWDIR%%/apps/federation/composer/composer/autoload_classmap.php -%%WWWDIR%%/apps/federation/composer/composer/autoload_namespaces.php -%%WWWDIR%%/apps/federation/composer/composer/autoload_psr4.php -%%WWWDIR%%/apps/federation/composer/composer/autoload_real.php -%%WWWDIR%%/apps/federation/composer/composer/autoload_static.php -%%WWWDIR%%/apps/federation/css/settings-admin.css -%%WWWDIR%%/apps/federation/img/app.svg -%%WWWDIR%%/apps/federation/js/settings-admin.js -%%WWWDIR%%/apps/federation/l10n/.gitkeep -%%WWWDIR%%/apps/federation/l10n/ar.js -%%WWWDIR%%/apps/federation/l10n/ar.json -%%WWWDIR%%/apps/federation/l10n/ast.js -%%WWWDIR%%/apps/federation/l10n/ast.json -%%WWWDIR%%/apps/federation/l10n/bg_BG.js -%%WWWDIR%%/apps/federation/l10n/bg_BG.json -%%WWWDIR%%/apps/federation/l10n/ca.js -%%WWWDIR%%/apps/federation/l10n/ca.json -%%WWWDIR%%/apps/federation/l10n/cs.js -%%WWWDIR%%/apps/federation/l10n/cs.json -%%WWWDIR%%/apps/federation/l10n/cs_CZ.js -%%WWWDIR%%/apps/federation/l10n/cs_CZ.json -%%WWWDIR%%/apps/federation/l10n/da.js -%%WWWDIR%%/apps/federation/l10n/da.json -%%WWWDIR%%/apps/federation/l10n/de.js -%%WWWDIR%%/apps/federation/l10n/de.json -%%WWWDIR%%/apps/federation/l10n/de_DE.js -%%WWWDIR%%/apps/federation/l10n/de_DE.json -%%WWWDIR%%/apps/federation/l10n/el.js -%%WWWDIR%%/apps/federation/l10n/el.json -%%WWWDIR%%/apps/federation/l10n/en_GB.js -%%WWWDIR%%/apps/federation/l10n/en_GB.json -%%WWWDIR%%/apps/federation/l10n/eo.js -%%WWWDIR%%/apps/federation/l10n/eo.json -%%WWWDIR%%/apps/federation/l10n/es.js -%%WWWDIR%%/apps/federation/l10n/es.json -%%WWWDIR%%/apps/federation/l10n/es_419.js -%%WWWDIR%%/apps/federation/l10n/es_419.json -%%WWWDIR%%/apps/federation/l10n/es_AR.js -%%WWWDIR%%/apps/federation/l10n/es_AR.json -%%WWWDIR%%/apps/federation/l10n/es_CL.js -%%WWWDIR%%/apps/federation/l10n/es_CL.json -%%WWWDIR%%/apps/federation/l10n/es_CO.js -%%WWWDIR%%/apps/federation/l10n/es_CO.json -%%WWWDIR%%/apps/federation/l10n/es_CR.js -%%WWWDIR%%/apps/federation/l10n/es_CR.json -%%WWWDIR%%/apps/federation/l10n/es_DO.js -%%WWWDIR%%/apps/federation/l10n/es_DO.json -%%WWWDIR%%/apps/federation/l10n/es_EC.js -%%WWWDIR%%/apps/federation/l10n/es_EC.json -%%WWWDIR%%/apps/federation/l10n/es_GT.js -%%WWWDIR%%/apps/federation/l10n/es_GT.json -%%WWWDIR%%/apps/federation/l10n/es_HN.js -%%WWWDIR%%/apps/federation/l10n/es_HN.json -%%WWWDIR%%/apps/federation/l10n/es_MX.js -%%WWWDIR%%/apps/federation/l10n/es_MX.json -%%WWWDIR%%/apps/federation/l10n/es_NI.js -%%WWWDIR%%/apps/federation/l10n/es_NI.json -%%WWWDIR%%/apps/federation/l10n/es_PA.js -%%WWWDIR%%/apps/federation/l10n/es_PA.json -%%WWWDIR%%/apps/federation/l10n/es_PE.js -%%WWWDIR%%/apps/federation/l10n/es_PE.json -%%WWWDIR%%/apps/federation/l10n/es_PR.js -%%WWWDIR%%/apps/federation/l10n/es_PR.json -%%WWWDIR%%/apps/federation/l10n/es_PY.js -%%WWWDIR%%/apps/federation/l10n/es_PY.json -%%WWWDIR%%/apps/federation/l10n/es_SV.js -%%WWWDIR%%/apps/federation/l10n/es_SV.json -%%WWWDIR%%/apps/federation/l10n/es_UY.js -%%WWWDIR%%/apps/federation/l10n/es_UY.json -%%WWWDIR%%/apps/federation/l10n/et_EE.js -%%WWWDIR%%/apps/federation/l10n/et_EE.json -%%WWWDIR%%/apps/federation/l10n/eu.js -%%WWWDIR%%/apps/federation/l10n/eu.json -%%WWWDIR%%/apps/federation/l10n/fi.js -%%WWWDIR%%/apps/federation/l10n/fi.json -%%WWWDIR%%/apps/federation/l10n/fi_FI.js -%%WWWDIR%%/apps/federation/l10n/fi_FI.json -%%WWWDIR%%/apps/federation/l10n/fr.js -%%WWWDIR%%/apps/federation/l10n/fr.json -%%WWWDIR%%/apps/federation/l10n/gl.js -%%WWWDIR%%/apps/federation/l10n/gl.json -%%WWWDIR%%/apps/federation/l10n/he.js -%%WWWDIR%%/apps/federation/l10n/he.json -%%WWWDIR%%/apps/federation/l10n/hu.js -%%WWWDIR%%/apps/federation/l10n/hu.json -%%WWWDIR%%/apps/federation/l10n/hu_HU.js -%%WWWDIR%%/apps/federation/l10n/hu_HU.json -%%WWWDIR%%/apps/federation/l10n/ia.js -%%WWWDIR%%/apps/federation/l10n/ia.json -%%WWWDIR%%/apps/federation/l10n/id.js -%%WWWDIR%%/apps/federation/l10n/id.json -%%WWWDIR%%/apps/federation/l10n/is.js -%%WWWDIR%%/apps/federation/l10n/is.json -%%WWWDIR%%/apps/federation/l10n/it.js -%%WWWDIR%%/apps/federation/l10n/it.json -%%WWWDIR%%/apps/federation/l10n/ja.js -%%WWWDIR%%/apps/federation/l10n/ja.json -%%WWWDIR%%/apps/federation/l10n/ka_GE.js -%%WWWDIR%%/apps/federation/l10n/ka_GE.json -%%WWWDIR%%/apps/federation/l10n/ko.js -%%WWWDIR%%/apps/federation/l10n/ko.json -%%WWWDIR%%/apps/federation/l10n/lb.js -%%WWWDIR%%/apps/federation/l10n/lb.json -%%WWWDIR%%/apps/federation/l10n/lt_LT.js -%%WWWDIR%%/apps/federation/l10n/lt_LT.json -%%WWWDIR%%/apps/federation/l10n/lv.js -%%WWWDIR%%/apps/federation/l10n/lv.json -%%WWWDIR%%/apps/federation/l10n/mn.js -%%WWWDIR%%/apps/federation/l10n/mn.json -%%WWWDIR%%/apps/federation/l10n/nb.js -%%WWWDIR%%/apps/federation/l10n/nb.json -%%WWWDIR%%/apps/federation/l10n/nb_NO.js -%%WWWDIR%%/apps/federation/l10n/nb_NO.json -%%WWWDIR%%/apps/federation/l10n/nl.js -%%WWWDIR%%/apps/federation/l10n/nl.json -%%WWWDIR%%/apps/federation/l10n/oc.js -%%WWWDIR%%/apps/federation/l10n/oc.json -%%WWWDIR%%/apps/federation/l10n/pl.js -%%WWWDIR%%/apps/federation/l10n/pl.json -%%WWWDIR%%/apps/federation/l10n/pt_BR.js -%%WWWDIR%%/apps/federation/l10n/pt_BR.json -%%WWWDIR%%/apps/federation/l10n/pt_PT.js -%%WWWDIR%%/apps/federation/l10n/pt_PT.json -%%WWWDIR%%/apps/federation/l10n/ro.js -%%WWWDIR%%/apps/federation/l10n/ro.json -%%WWWDIR%%/apps/federation/l10n/ru.js -%%WWWDIR%%/apps/federation/l10n/ru.json -%%WWWDIR%%/apps/federation/l10n/sk.js -%%WWWDIR%%/apps/federation/l10n/sk.json -%%WWWDIR%%/apps/federation/l10n/sl.js -%%WWWDIR%%/apps/federation/l10n/sl.json -%%WWWDIR%%/apps/federation/l10n/sq.js -%%WWWDIR%%/apps/federation/l10n/sq.json -%%WWWDIR%%/apps/federation/l10n/sr.js -%%WWWDIR%%/apps/federation/l10n/sr.json -%%WWWDIR%%/apps/federation/l10n/sv.js -%%WWWDIR%%/apps/federation/l10n/sv.json -%%WWWDIR%%/apps/federation/l10n/th_TH.js -%%WWWDIR%%/apps/federation/l10n/th_TH.json -%%WWWDIR%%/apps/federation/l10n/tr.js -%%WWWDIR%%/apps/federation/l10n/tr.json -%%WWWDIR%%/apps/federation/l10n/uk.js -%%WWWDIR%%/apps/federation/l10n/uk.json -%%WWWDIR%%/apps/federation/l10n/zh_CN.js -%%WWWDIR%%/apps/federation/l10n/zh_CN.json -%%WWWDIR%%/apps/federation/l10n/zh_TW.js -%%WWWDIR%%/apps/federation/l10n/zh_TW.json -%%WWWDIR%%/apps/federation/lib/AppInfo/Application.php -%%WWWDIR%%/apps/federation/lib/BackgroundJob/GetSharedSecret.php -%%WWWDIR%%/apps/federation/lib/BackgroundJob/RequestSharedSecret.php -%%WWWDIR%%/apps/federation/lib/Command/SyncFederationAddressBooks.php -%%WWWDIR%%/apps/federation/lib/Controller/OCSAuthAPIController.php -%%WWWDIR%%/apps/federation/lib/Controller/SettingsController.php -%%WWWDIR%%/apps/federation/lib/DAV/FedAuth.php -%%WWWDIR%%/apps/federation/lib/DbHandler.php -%%WWWDIR%%/apps/federation/lib/Hooks.php -%%WWWDIR%%/apps/federation/lib/Middleware/AddServerMiddleware.php -%%WWWDIR%%/apps/federation/lib/Settings/Admin.php -%%WWWDIR%%/apps/federation/lib/SyncFederationAddressBooks.php -%%WWWDIR%%/apps/federation/lib/SyncJob.php -%%WWWDIR%%/apps/federation/lib/TrustedServers.php -%%WWWDIR%%/apps/federation/templates/settings-admin.php -%%WWWDIR%%/apps/files/ajax/download.php -%%WWWDIR%%/apps/files/ajax/getstoragestats.php -%%WWWDIR%%/apps/files/ajax/list.php -%%WWWDIR%%/apps/files/appinfo/app.php -%%WWWDIR%%/apps/files/appinfo/info.xml -%%WWWDIR%%/apps/files/appinfo/routes.php -%%WWWDIR%%/apps/files/appinfo/signature.json -%%WWWDIR%%/apps/files/composer/autoload.php -%%WWWDIR%%/apps/files/composer/composer.json -%%WWWDIR%%/apps/files/composer/composer/ClassLoader.php -%%WWWDIR%%/apps/files/composer/composer/LICENSE -%%WWWDIR%%/apps/files/composer/composer/autoload_classmap.php -%%WWWDIR%%/apps/files/composer/composer/autoload_namespaces.php -%%WWWDIR%%/apps/files/composer/composer/autoload_psr4.php -%%WWWDIR%%/apps/files/composer/composer/autoload_real.php -%%WWWDIR%%/apps/files/composer/composer/autoload_static.php -%%WWWDIR%%/apps/files/css/detailsView.scss -%%WWWDIR%%/apps/files/css/files.scss -%%WWWDIR%%/apps/files/css/merged.scss -%%WWWDIR%%/apps/files/css/mobile.scss -%%WWWDIR%%/apps/files/css/upload.scss -%%WWWDIR%%/apps/files/download.php -%%WWWDIR%%/apps/files/img/add-color.png -%%WWWDIR%%/apps/files/img/add-color.svg -%%WWWDIR%%/apps/files/img/app.svg -%%WWWDIR%%/apps/files/img/change.png -%%WWWDIR%%/apps/files/img/change.svg -%%WWWDIR%%/apps/files/img/delete-color.png -%%WWWDIR%%/apps/files/img/delete-color.svg -%%WWWDIR%%/apps/files/img/delete.svg -%%WWWDIR%%/apps/files/img/external.svg -%%WWWDIR%%/apps/files/img/folder.svg -%%WWWDIR%%/apps/files/img/public.svg -%%WWWDIR%%/apps/files/img/quota.svg -%%WWWDIR%%/apps/files/img/recent.svg -%%WWWDIR%%/apps/files/img/share.svg -%%WWWDIR%%/apps/files/img/star.svg -%%WWWDIR%%/apps/files/js/admin.js -%%WWWDIR%%/apps/files/js/app.js -%%WWWDIR%%/apps/files/js/breadcrumb.js -%%WWWDIR%%/apps/files/js/detailfileinfoview.js -%%WWWDIR%%/apps/files/js/detailsview.js -%%WWWDIR%%/apps/files/js/detailtabview.js -%%WWWDIR%%/apps/files/js/favoritesfilelist.js -%%WWWDIR%%/apps/files/js/favoritesplugin.js -%%WWWDIR%%/apps/files/js/file-upload.js -%%WWWDIR%%/apps/files/js/fileactions.js -%%WWWDIR%%/apps/files/js/fileactionsmenu.js -%%WWWDIR%%/apps/files/js/fileinfomodel.js -%%WWWDIR%%/apps/files/js/filelist.js -%%WWWDIR%%/apps/files/js/files.js -%%WWWDIR%%/apps/files/js/filesummary.js -%%WWWDIR%%/apps/files/js/gotoplugin.js -%%WWWDIR%%/apps/files/js/jquery-visibility.js -%%WWWDIR%%/apps/files/js/jquery.fileupload.js -%%WWWDIR%%/apps/files/js/keyboardshortcuts.js -%%WWWDIR%%/apps/files/js/mainfileinfodetailview.js -%%WWWDIR%%/apps/files/js/merged-index.json -%%WWWDIR%%/apps/files/js/navigation.js -%%WWWDIR%%/apps/files/js/newfilemenu.js -%%WWWDIR%%/apps/files/js/recentfilelist.js -%%WWWDIR%%/apps/files/js/recentplugin.js -%%WWWDIR%%/apps/files/js/search.js -%%WWWDIR%%/apps/files/js/sidebarpreviewmanager.js -%%WWWDIR%%/apps/files/js/sidebarpreviewtext.js -%%WWWDIR%%/apps/files/js/tagsplugin.js -%%WWWDIR%%/apps/files/js/templates/detailsview.handlebars.js -%%WWWDIR%%/apps/files/js/upload.js -%%WWWDIR%%/apps/files/l10n/ach.js -%%WWWDIR%%/apps/files/l10n/ach.json -%%WWWDIR%%/apps/files/l10n/ady.js -%%WWWDIR%%/apps/files/l10n/ady.json -%%WWWDIR%%/apps/files/l10n/af_ZA.js -%%WWWDIR%%/apps/files/l10n/af_ZA.json -%%WWWDIR%%/apps/files/l10n/ak.js -%%WWWDIR%%/apps/files/l10n/ak.json -%%WWWDIR%%/apps/files/l10n/am_ET.js -%%WWWDIR%%/apps/files/l10n/am_ET.json -%%WWWDIR%%/apps/files/l10n/ar.js -%%WWWDIR%%/apps/files/l10n/ar.json -%%WWWDIR%%/apps/files/l10n/ast.js -%%WWWDIR%%/apps/files/l10n/ast.json -%%WWWDIR%%/apps/files/l10n/az.js -%%WWWDIR%%/apps/files/l10n/az.json -%%WWWDIR%%/apps/files/l10n/be.js -%%WWWDIR%%/apps/files/l10n/be.json -%%WWWDIR%%/apps/files/l10n/bg.js -%%WWWDIR%%/apps/files/l10n/bg.json -%%WWWDIR%%/apps/files/l10n/bg_BG.js -%%WWWDIR%%/apps/files/l10n/bg_BG.json -%%WWWDIR%%/apps/files/l10n/bn_BD.js -%%WWWDIR%%/apps/files/l10n/bn_BD.json -%%WWWDIR%%/apps/files/l10n/bn_IN.js -%%WWWDIR%%/apps/files/l10n/bn_IN.json -%%WWWDIR%%/apps/files/l10n/bs.js -%%WWWDIR%%/apps/files/l10n/bs.json -%%WWWDIR%%/apps/files/l10n/ca.js -%%WWWDIR%%/apps/files/l10n/ca.json -%%WWWDIR%%/apps/files/l10n/cs.js -%%WWWDIR%%/apps/files/l10n/cs.json -%%WWWDIR%%/apps/files/l10n/cs_CZ.js -%%WWWDIR%%/apps/files/l10n/cs_CZ.json -%%WWWDIR%%/apps/files/l10n/cy_GB.js -%%WWWDIR%%/apps/files/l10n/cy_GB.json -%%WWWDIR%%/apps/files/l10n/da.js -%%WWWDIR%%/apps/files/l10n/da.json -%%WWWDIR%%/apps/files/l10n/de.js -%%WWWDIR%%/apps/files/l10n/de.json -%%WWWDIR%%/apps/files/l10n/de_AT.js -%%WWWDIR%%/apps/files/l10n/de_AT.json -%%WWWDIR%%/apps/files/l10n/de_DE.js -%%WWWDIR%%/apps/files/l10n/de_DE.json -%%WWWDIR%%/apps/files/l10n/el.js -%%WWWDIR%%/apps/files/l10n/el.json -%%WWWDIR%%/apps/files/l10n/en_GB.js -%%WWWDIR%%/apps/files/l10n/en_GB.json -%%WWWDIR%%/apps/files/l10n/eo.js -%%WWWDIR%%/apps/files/l10n/eo.json -%%WWWDIR%%/apps/files/l10n/es.js -%%WWWDIR%%/apps/files/l10n/es.json -%%WWWDIR%%/apps/files/l10n/es_419.js -%%WWWDIR%%/apps/files/l10n/es_419.json -%%WWWDIR%%/apps/files/l10n/es_AR.js -%%WWWDIR%%/apps/files/l10n/es_AR.json -%%WWWDIR%%/apps/files/l10n/es_CL.js -%%WWWDIR%%/apps/files/l10n/es_CL.json -%%WWWDIR%%/apps/files/l10n/es_CO.js -%%WWWDIR%%/apps/files/l10n/es_CO.json -%%WWWDIR%%/apps/files/l10n/es_CR.js -%%WWWDIR%%/apps/files/l10n/es_CR.json -%%WWWDIR%%/apps/files/l10n/es_DO.js -%%WWWDIR%%/apps/files/l10n/es_DO.json -%%WWWDIR%%/apps/files/l10n/es_EC.js -%%WWWDIR%%/apps/files/l10n/es_EC.json -%%WWWDIR%%/apps/files/l10n/es_GT.js -%%WWWDIR%%/apps/files/l10n/es_GT.json -%%WWWDIR%%/apps/files/l10n/es_HN.js -%%WWWDIR%%/apps/files/l10n/es_HN.json -%%WWWDIR%%/apps/files/l10n/es_MX.js -%%WWWDIR%%/apps/files/l10n/es_MX.json -%%WWWDIR%%/apps/files/l10n/es_NI.js -%%WWWDIR%%/apps/files/l10n/es_NI.json -%%WWWDIR%%/apps/files/l10n/es_PA.js -%%WWWDIR%%/apps/files/l10n/es_PA.json -%%WWWDIR%%/apps/files/l10n/es_PE.js -%%WWWDIR%%/apps/files/l10n/es_PE.json -%%WWWDIR%%/apps/files/l10n/es_PR.js -%%WWWDIR%%/apps/files/l10n/es_PR.json -%%WWWDIR%%/apps/files/l10n/es_PY.js -%%WWWDIR%%/apps/files/l10n/es_PY.json -%%WWWDIR%%/apps/files/l10n/es_SV.js -%%WWWDIR%%/apps/files/l10n/es_SV.json -%%WWWDIR%%/apps/files/l10n/es_UY.js -%%WWWDIR%%/apps/files/l10n/es_UY.json -%%WWWDIR%%/apps/files/l10n/et_EE.js -%%WWWDIR%%/apps/files/l10n/et_EE.json -%%WWWDIR%%/apps/files/l10n/eu.js -%%WWWDIR%%/apps/files/l10n/eu.json -%%WWWDIR%%/apps/files/l10n/fa.js -%%WWWDIR%%/apps/files/l10n/fa.json -%%WWWDIR%%/apps/files/l10n/fi.js -%%WWWDIR%%/apps/files/l10n/fi.json -%%WWWDIR%%/apps/files/l10n/fi_FI.js -%%WWWDIR%%/apps/files/l10n/fi_FI.json -%%WWWDIR%%/apps/files/l10n/fil.js -%%WWWDIR%%/apps/files/l10n/fil.json -%%WWWDIR%%/apps/files/l10n/fr.js -%%WWWDIR%%/apps/files/l10n/fr.json -%%WWWDIR%%/apps/files/l10n/fy_NL.js -%%WWWDIR%%/apps/files/l10n/fy_NL.json -%%WWWDIR%%/apps/files/l10n/gl.js -%%WWWDIR%%/apps/files/l10n/gl.json -%%WWWDIR%%/apps/files/l10n/gu.js -%%WWWDIR%%/apps/files/l10n/gu.json -%%WWWDIR%%/apps/files/l10n/he.js -%%WWWDIR%%/apps/files/l10n/he.json -%%WWWDIR%%/apps/files/l10n/hi.js -%%WWWDIR%%/apps/files/l10n/hi.json -%%WWWDIR%%/apps/files/l10n/hr.js -%%WWWDIR%%/apps/files/l10n/hr.json -%%WWWDIR%%/apps/files/l10n/hu.js -%%WWWDIR%%/apps/files/l10n/hu.json -%%WWWDIR%%/apps/files/l10n/hu_HU.js -%%WWWDIR%%/apps/files/l10n/hu_HU.json -%%WWWDIR%%/apps/files/l10n/hy.js -%%WWWDIR%%/apps/files/l10n/hy.json -%%WWWDIR%%/apps/files/l10n/ia.js -%%WWWDIR%%/apps/files/l10n/ia.json -%%WWWDIR%%/apps/files/l10n/id.js -%%WWWDIR%%/apps/files/l10n/id.json -%%WWWDIR%%/apps/files/l10n/io.js -%%WWWDIR%%/apps/files/l10n/io.json -%%WWWDIR%%/apps/files/l10n/is.js -%%WWWDIR%%/apps/files/l10n/is.json -%%WWWDIR%%/apps/files/l10n/it.js -%%WWWDIR%%/apps/files/l10n/it.json -%%WWWDIR%%/apps/files/l10n/ja.js -%%WWWDIR%%/apps/files/l10n/ja.json -%%WWWDIR%%/apps/files/l10n/jv.js -%%WWWDIR%%/apps/files/l10n/jv.json -%%WWWDIR%%/apps/files/l10n/ka_GE.js -%%WWWDIR%%/apps/files/l10n/ka_GE.json -%%WWWDIR%%/apps/files/l10n/km.js -%%WWWDIR%%/apps/files/l10n/km.json -%%WWWDIR%%/apps/files/l10n/kn.js -%%WWWDIR%%/apps/files/l10n/kn.json -%%WWWDIR%%/apps/files/l10n/ko.js -%%WWWDIR%%/apps/files/l10n/ko.json -%%WWWDIR%%/apps/files/l10n/ku_IQ.js -%%WWWDIR%%/apps/files/l10n/ku_IQ.json -%%WWWDIR%%/apps/files/l10n/lb.js -%%WWWDIR%%/apps/files/l10n/lb.json -%%WWWDIR%%/apps/files/l10n/lo.js -%%WWWDIR%%/apps/files/l10n/lo.json -%%WWWDIR%%/apps/files/l10n/lt_LT.js -%%WWWDIR%%/apps/files/l10n/lt_LT.json -%%WWWDIR%%/apps/files/l10n/lv.js -%%WWWDIR%%/apps/files/l10n/lv.json -%%WWWDIR%%/apps/files/l10n/mg.js -%%WWWDIR%%/apps/files/l10n/mg.json -%%WWWDIR%%/apps/files/l10n/mk.js -%%WWWDIR%%/apps/files/l10n/mk.json -%%WWWDIR%%/apps/files/l10n/ml.js -%%WWWDIR%%/apps/files/l10n/ml.json -%%WWWDIR%%/apps/files/l10n/ml_IN.js -%%WWWDIR%%/apps/files/l10n/ml_IN.json -%%WWWDIR%%/apps/files/l10n/mn.js -%%WWWDIR%%/apps/files/l10n/mn.json -%%WWWDIR%%/apps/files/l10n/mr.js -%%WWWDIR%%/apps/files/l10n/mr.json -%%WWWDIR%%/apps/files/l10n/ms_MY.js -%%WWWDIR%%/apps/files/l10n/ms_MY.json -%%WWWDIR%%/apps/files/l10n/mt_MT.js -%%WWWDIR%%/apps/files/l10n/mt_MT.json -%%WWWDIR%%/apps/files/l10n/my_MM.js -%%WWWDIR%%/apps/files/l10n/my_MM.json -%%WWWDIR%%/apps/files/l10n/nb.js -%%WWWDIR%%/apps/files/l10n/nb.json -%%WWWDIR%%/apps/files/l10n/nb_NO.js -%%WWWDIR%%/apps/files/l10n/nb_NO.json -%%WWWDIR%%/apps/files/l10n/nds.js -%%WWWDIR%%/apps/files/l10n/nds.json -%%WWWDIR%%/apps/files/l10n/nl.js -%%WWWDIR%%/apps/files/l10n/nl.json -%%WWWDIR%%/apps/files/l10n/nn_NO.js -%%WWWDIR%%/apps/files/l10n/nn_NO.json -%%WWWDIR%%/apps/files/l10n/nqo.js -%%WWWDIR%%/apps/files/l10n/nqo.json -%%WWWDIR%%/apps/files/l10n/oc.js -%%WWWDIR%%/apps/files/l10n/oc.json -%%WWWDIR%%/apps/files/l10n/pa.js -%%WWWDIR%%/apps/files/l10n/pa.json -%%WWWDIR%%/apps/files/l10n/pl.js -%%WWWDIR%%/apps/files/l10n/pl.json -%%WWWDIR%%/apps/files/l10n/pt_BR.js -%%WWWDIR%%/apps/files/l10n/pt_BR.json -%%WWWDIR%%/apps/files/l10n/pt_PT.js -%%WWWDIR%%/apps/files/l10n/pt_PT.json -%%WWWDIR%%/apps/files/l10n/ro.js -%%WWWDIR%%/apps/files/l10n/ro.json -%%WWWDIR%%/apps/files/l10n/ru.js -%%WWWDIR%%/apps/files/l10n/ru.json -%%WWWDIR%%/apps/files/l10n/si_LK.js -%%WWWDIR%%/apps/files/l10n/si_LK.json -%%WWWDIR%%/apps/files/l10n/sk.js -%%WWWDIR%%/apps/files/l10n/sk.json -%%WWWDIR%%/apps/files/l10n/sk_SK.js -%%WWWDIR%%/apps/files/l10n/sk_SK.json -%%WWWDIR%%/apps/files/l10n/sl.js -%%WWWDIR%%/apps/files/l10n/sl.json -%%WWWDIR%%/apps/files/l10n/sq.js -%%WWWDIR%%/apps/files/l10n/sq.json -%%WWWDIR%%/apps/files/l10n/sr.js -%%WWWDIR%%/apps/files/l10n/sr.json -%%WWWDIR%%/apps/files/l10n/sr@latin.js -%%WWWDIR%%/apps/files/l10n/sr@latin.json -%%WWWDIR%%/apps/files/l10n/su.js -%%WWWDIR%%/apps/files/l10n/su.json -%%WWWDIR%%/apps/files/l10n/sv.js -%%WWWDIR%%/apps/files/l10n/sv.json -%%WWWDIR%%/apps/files/l10n/sw_KE.js -%%WWWDIR%%/apps/files/l10n/sw_KE.json -%%WWWDIR%%/apps/files/l10n/ta_IN.js -%%WWWDIR%%/apps/files/l10n/ta_IN.json -%%WWWDIR%%/apps/files/l10n/ta_LK.js -%%WWWDIR%%/apps/files/l10n/ta_LK.json -%%WWWDIR%%/apps/files/l10n/te.js -%%WWWDIR%%/apps/files/l10n/te.json -%%WWWDIR%%/apps/files/l10n/tg_TJ.js -%%WWWDIR%%/apps/files/l10n/tg_TJ.json -%%WWWDIR%%/apps/files/l10n/th_TH.js -%%WWWDIR%%/apps/files/l10n/th_TH.json -%%WWWDIR%%/apps/files/l10n/tl_PH.js -%%WWWDIR%%/apps/files/l10n/tl_PH.json -%%WWWDIR%%/apps/files/l10n/tr.js -%%WWWDIR%%/apps/files/l10n/tr.json -%%WWWDIR%%/apps/files/l10n/tzm.js -%%WWWDIR%%/apps/files/l10n/tzm.json -%%WWWDIR%%/apps/files/l10n/ug.js -%%WWWDIR%%/apps/files/l10n/ug.json -%%WWWDIR%%/apps/files/l10n/uk.js -%%WWWDIR%%/apps/files/l10n/uk.json -%%WWWDIR%%/apps/files/l10n/ur_PK.js -%%WWWDIR%%/apps/files/l10n/ur_PK.json -%%WWWDIR%%/apps/files/l10n/vi.js -%%WWWDIR%%/apps/files/l10n/vi.json -%%WWWDIR%%/apps/files/l10n/xgettextfiles -%%WWWDIR%%/apps/files/l10n/zh_CN.js -%%WWWDIR%%/apps/files/l10n/zh_CN.json -%%WWWDIR%%/apps/files/l10n/zh_HK.js -%%WWWDIR%%/apps/files/l10n/zh_HK.json -%%WWWDIR%%/apps/files/l10n/zh_TW.js -%%WWWDIR%%/apps/files/l10n/zh_TW.json -%%WWWDIR%%/apps/files/lib/Activity/FavoriteProvider.php -%%WWWDIR%%/apps/files/lib/Activity/Filter/Favorites.php -%%WWWDIR%%/apps/files/lib/Activity/Filter/FileChanges.php -%%WWWDIR%%/apps/files/lib/Activity/Helper.php -%%WWWDIR%%/apps/files/lib/Activity/Provider.php -%%WWWDIR%%/apps/files/lib/Activity/Settings/FavoriteAction.php -%%WWWDIR%%/apps/files/lib/Activity/Settings/FileChanged.php -%%WWWDIR%%/apps/files/lib/Activity/Settings/FileCreated.php -%%WWWDIR%%/apps/files/lib/Activity/Settings/FileDeleted.php -%%WWWDIR%%/apps/files/lib/Activity/Settings/FileFavorite.php -%%WWWDIR%%/apps/files/lib/Activity/Settings/FileRestored.php -%%WWWDIR%%/apps/files/lib/App.php -%%WWWDIR%%/apps/files/lib/AppInfo/Application.php -%%WWWDIR%%/apps/files/lib/BackgroundJob/CleanupFileLocks.php -%%WWWDIR%%/apps/files/lib/BackgroundJob/DeleteOrphanedItems.php -%%WWWDIR%%/apps/files/lib/BackgroundJob/ScanFiles.php -%%WWWDIR%%/apps/files/lib/Capabilities.php -%%WWWDIR%%/apps/files/lib/Command/DeleteOrphanedFiles.php -%%WWWDIR%%/apps/files/lib/Command/Scan.php -%%WWWDIR%%/apps/files/lib/Command/ScanAppData.php -%%WWWDIR%%/apps/files/lib/Command/TransferOwnership.php -%%WWWDIR%%/apps/files/lib/Controller/ApiController.php -%%WWWDIR%%/apps/files/lib/Controller/SettingsController.php -%%WWWDIR%%/apps/files/lib/Controller/ViewController.php -%%WWWDIR%%/apps/files/lib/Helper.php -%%WWWDIR%%/apps/files/lib/Service/TagService.php -%%WWWDIR%%/apps/files/lib/Settings/Admin.php -%%WWWDIR%%/apps/files/list.php -%%WWWDIR%%/apps/files/recentlist.php -%%WWWDIR%%/apps/files/simplelist.php -%%WWWDIR%%/apps/files/templates/admin.php -%%WWWDIR%%/apps/files/templates/appnavigation.php -%%WWWDIR%%/apps/files/templates/fileexists.html -%%WWWDIR%%/apps/files/templates/index.php -%%WWWDIR%%/apps/files/templates/list.php -%%WWWDIR%%/apps/files/templates/recentlist.php -%%WWWDIR%%/apps/files/templates/simplelist.php -%%WWWDIR%%/apps/files_external/3rdparty/.gitignore -%%WWWDIR%%/apps/files_external/3rdparty/autoload.php -%%WWWDIR%%/apps/files_external/3rdparty/composer.json -%%WWWDIR%%/apps/files_external/3rdparty/composer.lock -%%WWWDIR%%/apps/files_external/3rdparty/composer/ClassLoader.php -%%WWWDIR%%/apps/files_external/3rdparty/composer/LICENSE -%%WWWDIR%%/apps/files_external/3rdparty/composer/autoload_classmap.php -%%WWWDIR%%/apps/files_external/3rdparty/composer/autoload_namespaces.php -%%WWWDIR%%/apps/files_external/3rdparty/composer/autoload_psr4.php -%%WWWDIR%%/apps/files_external/3rdparty/composer/autoload_real.php -%%WWWDIR%%/apps/files_external/3rdparty/composer/autoload_static.php -%%WWWDIR%%/apps/files_external/3rdparty/composer/installed.json -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/.gitignore -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/LICENSE.txt -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/README.md -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/composer.json -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/AbstractShare.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Change.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Connection.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/ErrorCodes.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/AccessDeniedException.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/AlreadyExistsException.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/AuthenticationException.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/ConnectException.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/ConnectionException.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/ConnectionRefusedException.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/DependencyException.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/Exception.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/FileInUseException.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/ForbiddenException.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/HostDownException.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidHostException.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidParameterException.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidPathException.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidRequestException.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidResourceException.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidTypeException.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/NoLoginServerException.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/NoRouteToHostException.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/NotEmptyException.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/NotFoundException.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/OutOfSpaceException.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/RevisionMismatchException.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/TimedOutException.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/FileInfo.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/IFileInfo.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/INotifyHandler.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/IShare.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/NativeFileInfo.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/NativeReadStream.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/NativeServer.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/NativeShare.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/NativeState.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/NativeStream.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/NativeWriteStream.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/NotifyHandler.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Parser.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/RawConnection.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Server.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Share.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/System.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/TimeZoneProvider.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams-dummy/composer.json -%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/.gitignore -%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/.travis.yml -%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/LICENCE -%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/README.md -%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/composer.json -%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/CallbackWrapper.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/Directory.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/DirectoryFilter.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/DirectoryWrapper.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/File.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/IteratorDirectory.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/NullWrapper.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/Path.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/PathWrapper.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/RetryWrapper.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/SeekableWrapper.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/Url.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/UrlCallBack.php -%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/Wrapper.php -%%WWWDIR%%/apps/files_external/ajax/applicable.php -%%WWWDIR%%/apps/files_external/ajax/oauth2.php -%%WWWDIR%%/apps/files_external/appinfo/app.php -%%WWWDIR%%/apps/files_external/appinfo/database.xml -%%WWWDIR%%/apps/files_external/appinfo/info.xml -%%WWWDIR%%/apps/files_external/appinfo/routes.php -%%WWWDIR%%/apps/files_external/appinfo/signature.json -%%WWWDIR%%/apps/files_external/css/external.css -%%WWWDIR%%/apps/files_external/css/settings.css -%%WWWDIR%%/apps/files_external/img/app-dark.svg -%%WWWDIR%%/apps/files_external/img/app.svg -%%WWWDIR%%/apps/files_external/js/app.js -%%WWWDIR%%/apps/files_external/js/mountsfilelist.js -%%WWWDIR%%/apps/files_external/js/oauth1.js -%%WWWDIR%%/apps/files_external/js/oauth2.js -%%WWWDIR%%/apps/files_external/js/public_key.js -%%WWWDIR%%/apps/files_external/js/rollingqueue.js -%%WWWDIR%%/apps/files_external/js/settings.js -%%WWWDIR%%/apps/files_external/js/statusmanager.js -%%WWWDIR%%/apps/files_external/l10n/.gitkeep -%%WWWDIR%%/apps/files_external/l10n/af_ZA.js -%%WWWDIR%%/apps/files_external/l10n/af_ZA.json -%%WWWDIR%%/apps/files_external/l10n/ar.js -%%WWWDIR%%/apps/files_external/l10n/ar.json -%%WWWDIR%%/apps/files_external/l10n/ast.js -%%WWWDIR%%/apps/files_external/l10n/ast.json -%%WWWDIR%%/apps/files_external/l10n/az.js -%%WWWDIR%%/apps/files_external/l10n/az.json -%%WWWDIR%%/apps/files_external/l10n/bg_BG.js -%%WWWDIR%%/apps/files_external/l10n/bg_BG.json -%%WWWDIR%%/apps/files_external/l10n/bn_BD.js -%%WWWDIR%%/apps/files_external/l10n/bn_BD.json -%%WWWDIR%%/apps/files_external/l10n/bn_IN.js -%%WWWDIR%%/apps/files_external/l10n/bn_IN.json -%%WWWDIR%%/apps/files_external/l10n/bs.js -%%WWWDIR%%/apps/files_external/l10n/bs.json -%%WWWDIR%%/apps/files_external/l10n/ca.js -%%WWWDIR%%/apps/files_external/l10n/ca.json -%%WWWDIR%%/apps/files_external/l10n/cs.js -%%WWWDIR%%/apps/files_external/l10n/cs.json -%%WWWDIR%%/apps/files_external/l10n/cs_CZ.js -%%WWWDIR%%/apps/files_external/l10n/cs_CZ.json -%%WWWDIR%%/apps/files_external/l10n/cy_GB.js -%%WWWDIR%%/apps/files_external/l10n/cy_GB.json -%%WWWDIR%%/apps/files_external/l10n/da.js -%%WWWDIR%%/apps/files_external/l10n/da.json -%%WWWDIR%%/apps/files_external/l10n/de.js -%%WWWDIR%%/apps/files_external/l10n/de.json -%%WWWDIR%%/apps/files_external/l10n/de_AT.js -%%WWWDIR%%/apps/files_external/l10n/de_AT.json -%%WWWDIR%%/apps/files_external/l10n/de_DE.js -%%WWWDIR%%/apps/files_external/l10n/de_DE.json -%%WWWDIR%%/apps/files_external/l10n/el.js -%%WWWDIR%%/apps/files_external/l10n/el.json -%%WWWDIR%%/apps/files_external/l10n/en_GB.js -%%WWWDIR%%/apps/files_external/l10n/en_GB.json -%%WWWDIR%%/apps/files_external/l10n/eo.js -%%WWWDIR%%/apps/files_external/l10n/eo.json -%%WWWDIR%%/apps/files_external/l10n/es.js -%%WWWDIR%%/apps/files_external/l10n/es.json -%%WWWDIR%%/apps/files_external/l10n/es_419.js -%%WWWDIR%%/apps/files_external/l10n/es_419.json -%%WWWDIR%%/apps/files_external/l10n/es_AR.js -%%WWWDIR%%/apps/files_external/l10n/es_AR.json -%%WWWDIR%%/apps/files_external/l10n/es_CL.js -%%WWWDIR%%/apps/files_external/l10n/es_CL.json -%%WWWDIR%%/apps/files_external/l10n/es_CO.js -%%WWWDIR%%/apps/files_external/l10n/es_CO.json -%%WWWDIR%%/apps/files_external/l10n/es_CR.js -%%WWWDIR%%/apps/files_external/l10n/es_CR.json -%%WWWDIR%%/apps/files_external/l10n/es_DO.js -%%WWWDIR%%/apps/files_external/l10n/es_DO.json -%%WWWDIR%%/apps/files_external/l10n/es_EC.js -%%WWWDIR%%/apps/files_external/l10n/es_EC.json -%%WWWDIR%%/apps/files_external/l10n/es_GT.js -%%WWWDIR%%/apps/files_external/l10n/es_GT.json -%%WWWDIR%%/apps/files_external/l10n/es_HN.js -%%WWWDIR%%/apps/files_external/l10n/es_HN.json -%%WWWDIR%%/apps/files_external/l10n/es_MX.js -%%WWWDIR%%/apps/files_external/l10n/es_MX.json -%%WWWDIR%%/apps/files_external/l10n/es_NI.js -%%WWWDIR%%/apps/files_external/l10n/es_NI.json -%%WWWDIR%%/apps/files_external/l10n/es_PA.js -%%WWWDIR%%/apps/files_external/l10n/es_PA.json -%%WWWDIR%%/apps/files_external/l10n/es_PE.js -%%WWWDIR%%/apps/files_external/l10n/es_PE.json -%%WWWDIR%%/apps/files_external/l10n/es_PR.js -%%WWWDIR%%/apps/files_external/l10n/es_PR.json -%%WWWDIR%%/apps/files_external/l10n/es_PY.js -%%WWWDIR%%/apps/files_external/l10n/es_PY.json -%%WWWDIR%%/apps/files_external/l10n/es_SV.js -%%WWWDIR%%/apps/files_external/l10n/es_SV.json -%%WWWDIR%%/apps/files_external/l10n/es_UY.js -%%WWWDIR%%/apps/files_external/l10n/es_UY.json -%%WWWDIR%%/apps/files_external/l10n/et_EE.js -%%WWWDIR%%/apps/files_external/l10n/et_EE.json -%%WWWDIR%%/apps/files_external/l10n/eu.js -%%WWWDIR%%/apps/files_external/l10n/eu.json -%%WWWDIR%%/apps/files_external/l10n/fa.js -%%WWWDIR%%/apps/files_external/l10n/fa.json -%%WWWDIR%%/apps/files_external/l10n/fi.js -%%WWWDIR%%/apps/files_external/l10n/fi.json -%%WWWDIR%%/apps/files_external/l10n/fi_FI.js -%%WWWDIR%%/apps/files_external/l10n/fi_FI.json -%%WWWDIR%%/apps/files_external/l10n/fil.js -%%WWWDIR%%/apps/files_external/l10n/fil.json -%%WWWDIR%%/apps/files_external/l10n/fr.js -%%WWWDIR%%/apps/files_external/l10n/fr.json -%%WWWDIR%%/apps/files_external/l10n/gl.js -%%WWWDIR%%/apps/files_external/l10n/gl.json -%%WWWDIR%%/apps/files_external/l10n/he.js -%%WWWDIR%%/apps/files_external/l10n/he.json -%%WWWDIR%%/apps/files_external/l10n/hi.js -%%WWWDIR%%/apps/files_external/l10n/hi.json -%%WWWDIR%%/apps/files_external/l10n/hr.js -%%WWWDIR%%/apps/files_external/l10n/hr.json -%%WWWDIR%%/apps/files_external/l10n/hu.js -%%WWWDIR%%/apps/files_external/l10n/hu.json -%%WWWDIR%%/apps/files_external/l10n/hu_HU.js -%%WWWDIR%%/apps/files_external/l10n/hu_HU.json -%%WWWDIR%%/apps/files_external/l10n/hy.js -%%WWWDIR%%/apps/files_external/l10n/hy.json -%%WWWDIR%%/apps/files_external/l10n/ia.js -%%WWWDIR%%/apps/files_external/l10n/ia.json -%%WWWDIR%%/apps/files_external/l10n/id.js -%%WWWDIR%%/apps/files_external/l10n/id.json -%%WWWDIR%%/apps/files_external/l10n/is.js -%%WWWDIR%%/apps/files_external/l10n/is.json -%%WWWDIR%%/apps/files_external/l10n/it.js -%%WWWDIR%%/apps/files_external/l10n/it.json -%%WWWDIR%%/apps/files_external/l10n/ja.js -%%WWWDIR%%/apps/files_external/l10n/ja.json -%%WWWDIR%%/apps/files_external/l10n/jv.js -%%WWWDIR%%/apps/files_external/l10n/jv.json -%%WWWDIR%%/apps/files_external/l10n/ka_GE.js -%%WWWDIR%%/apps/files_external/l10n/ka_GE.json -%%WWWDIR%%/apps/files_external/l10n/km.js -%%WWWDIR%%/apps/files_external/l10n/km.json -%%WWWDIR%%/apps/files_external/l10n/kn.js -%%WWWDIR%%/apps/files_external/l10n/kn.json -%%WWWDIR%%/apps/files_external/l10n/ko.js -%%WWWDIR%%/apps/files_external/l10n/ko.json -%%WWWDIR%%/apps/files_external/l10n/ku_IQ.js -%%WWWDIR%%/apps/files_external/l10n/ku_IQ.json -%%WWWDIR%%/apps/files_external/l10n/lb.js -%%WWWDIR%%/apps/files_external/l10n/lb.json -%%WWWDIR%%/apps/files_external/l10n/lt_LT.js -%%WWWDIR%%/apps/files_external/l10n/lt_LT.json -%%WWWDIR%%/apps/files_external/l10n/lv.js -%%WWWDIR%%/apps/files_external/l10n/lv.json -%%WWWDIR%%/apps/files_external/l10n/mk.js -%%WWWDIR%%/apps/files_external/l10n/mk.json -%%WWWDIR%%/apps/files_external/l10n/mn.js -%%WWWDIR%%/apps/files_external/l10n/mn.json -%%WWWDIR%%/apps/files_external/l10n/ms_MY.js -%%WWWDIR%%/apps/files_external/l10n/ms_MY.json -%%WWWDIR%%/apps/files_external/l10n/my_MM.js -%%WWWDIR%%/apps/files_external/l10n/my_MM.json -%%WWWDIR%%/apps/files_external/l10n/nb.js -%%WWWDIR%%/apps/files_external/l10n/nb.json -%%WWWDIR%%/apps/files_external/l10n/nb_NO.js -%%WWWDIR%%/apps/files_external/l10n/nb_NO.json -%%WWWDIR%%/apps/files_external/l10n/nds.js -%%WWWDIR%%/apps/files_external/l10n/nds.json -%%WWWDIR%%/apps/files_external/l10n/nl.js -%%WWWDIR%%/apps/files_external/l10n/nl.json -%%WWWDIR%%/apps/files_external/l10n/nn_NO.js -%%WWWDIR%%/apps/files_external/l10n/nn_NO.json -%%WWWDIR%%/apps/files_external/l10n/oc.js -%%WWWDIR%%/apps/files_external/l10n/oc.json -%%WWWDIR%%/apps/files_external/l10n/pa.js -%%WWWDIR%%/apps/files_external/l10n/pa.json -%%WWWDIR%%/apps/files_external/l10n/pl.js -%%WWWDIR%%/apps/files_external/l10n/pl.json -%%WWWDIR%%/apps/files_external/l10n/pt_BR.js -%%WWWDIR%%/apps/files_external/l10n/pt_BR.json -%%WWWDIR%%/apps/files_external/l10n/pt_PT.js -%%WWWDIR%%/apps/files_external/l10n/pt_PT.json -%%WWWDIR%%/apps/files_external/l10n/ro.js -%%WWWDIR%%/apps/files_external/l10n/ro.json -%%WWWDIR%%/apps/files_external/l10n/ru.js -%%WWWDIR%%/apps/files_external/l10n/ru.json -%%WWWDIR%%/apps/files_external/l10n/si_LK.js -%%WWWDIR%%/apps/files_external/l10n/si_LK.json -%%WWWDIR%%/apps/files_external/l10n/sk.js -%%WWWDIR%%/apps/files_external/l10n/sk.json -%%WWWDIR%%/apps/files_external/l10n/sk_SK.js -%%WWWDIR%%/apps/files_external/l10n/sk_SK.json -%%WWWDIR%%/apps/files_external/l10n/sl.js -%%WWWDIR%%/apps/files_external/l10n/sl.json -%%WWWDIR%%/apps/files_external/l10n/sq.js -%%WWWDIR%%/apps/files_external/l10n/sq.json -%%WWWDIR%%/apps/files_external/l10n/sr.js -%%WWWDIR%%/apps/files_external/l10n/sr.json -%%WWWDIR%%/apps/files_external/l10n/sr@latin.js -%%WWWDIR%%/apps/files_external/l10n/sr@latin.json -%%WWWDIR%%/apps/files_external/l10n/sv.js -%%WWWDIR%%/apps/files_external/l10n/sv.json -%%WWWDIR%%/apps/files_external/l10n/ta_LK.js -%%WWWDIR%%/apps/files_external/l10n/ta_LK.json -%%WWWDIR%%/apps/files_external/l10n/te.js -%%WWWDIR%%/apps/files_external/l10n/te.json -%%WWWDIR%%/apps/files_external/l10n/th.js -%%WWWDIR%%/apps/files_external/l10n/th.json -%%WWWDIR%%/apps/files_external/l10n/th_TH.js -%%WWWDIR%%/apps/files_external/l10n/th_TH.json -%%WWWDIR%%/apps/files_external/l10n/tr.js -%%WWWDIR%%/apps/files_external/l10n/tr.json -%%WWWDIR%%/apps/files_external/l10n/ug.js -%%WWWDIR%%/apps/files_external/l10n/ug.json -%%WWWDIR%%/apps/files_external/l10n/uk.js -%%WWWDIR%%/apps/files_external/l10n/uk.json -%%WWWDIR%%/apps/files_external/l10n/ur_PK.js -%%WWWDIR%%/apps/files_external/l10n/ur_PK.json -%%WWWDIR%%/apps/files_external/l10n/vi.js -%%WWWDIR%%/apps/files_external/l10n/vi.json -%%WWWDIR%%/apps/files_external/l10n/zh_CN.js -%%WWWDIR%%/apps/files_external/l10n/zh_CN.json -%%WWWDIR%%/apps/files_external/l10n/zh_HK.js -%%WWWDIR%%/apps/files_external/l10n/zh_HK.json -%%WWWDIR%%/apps/files_external/l10n/zh_TW.js -%%WWWDIR%%/apps/files_external/l10n/zh_TW.json -%%WWWDIR%%/apps/files_external/lib/AppInfo/Application.php -%%WWWDIR%%/apps/files_external/lib/Command/Applicable.php -%%WWWDIR%%/apps/files_external/lib/Command/Backends.php -%%WWWDIR%%/apps/files_external/lib/Command/Config.php -%%WWWDIR%%/apps/files_external/lib/Command/Create.php -%%WWWDIR%%/apps/files_external/lib/Command/Delete.php -%%WWWDIR%%/apps/files_external/lib/Command/Export.php -%%WWWDIR%%/apps/files_external/lib/Command/Import.php -%%WWWDIR%%/apps/files_external/lib/Command/ListCommand.php -%%WWWDIR%%/apps/files_external/lib/Command/Notify.php -%%WWWDIR%%/apps/files_external/lib/Command/Option.php -%%WWWDIR%%/apps/files_external/lib/Command/Verify.php -%%WWWDIR%%/apps/files_external/lib/Config/ConfigAdapter.php -%%WWWDIR%%/apps/files_external/lib/Config/ExternalMountPoint.php -%%WWWDIR%%/apps/files_external/lib/Controller/AjaxController.php -%%WWWDIR%%/apps/files_external/lib/Controller/GlobalStoragesController.php -%%WWWDIR%%/apps/files_external/lib/Controller/StoragesController.php -%%WWWDIR%%/apps/files_external/lib/Controller/UserGlobalStoragesController.php -%%WWWDIR%%/apps/files_external/lib/Controller/UserStoragesController.php -%%WWWDIR%%/apps/files_external/lib/Lib/Api.php -%%WWWDIR%%/apps/files_external/lib/Lib/Auth/AmazonS3/AccessKey.php -%%WWWDIR%%/apps/files_external/lib/Lib/Auth/AuthMechanism.php -%%WWWDIR%%/apps/files_external/lib/Lib/Auth/Builtin.php -%%WWWDIR%%/apps/files_external/lib/Lib/Auth/IUserProvided.php -%%WWWDIR%%/apps/files_external/lib/Lib/Auth/InvalidAuth.php -%%WWWDIR%%/apps/files_external/lib/Lib/Auth/NullMechanism.php -%%WWWDIR%%/apps/files_external/lib/Lib/Auth/OAuth1/OAuth1.php -%%WWWDIR%%/apps/files_external/lib/Lib/Auth/OAuth2/OAuth2.php -%%WWWDIR%%/apps/files_external/lib/Lib/Auth/OpenStack/OpenStack.php -%%WWWDIR%%/apps/files_external/lib/Lib/Auth/OpenStack/Rackspace.php -%%WWWDIR%%/apps/files_external/lib/Lib/Auth/Password/GlobalAuth.php -%%WWWDIR%%/apps/files_external/lib/Lib/Auth/Password/LoginCredentials.php -%%WWWDIR%%/apps/files_external/lib/Lib/Auth/Password/Password.php -%%WWWDIR%%/apps/files_external/lib/Lib/Auth/Password/SessionCredentials.php -%%WWWDIR%%/apps/files_external/lib/Lib/Auth/Password/UserProvided.php -%%WWWDIR%%/apps/files_external/lib/Lib/Auth/PublicKey/RSA.php -%%WWWDIR%%/apps/files_external/lib/Lib/Backend/AmazonS3.php -%%WWWDIR%%/apps/files_external/lib/Lib/Backend/Backend.php -%%WWWDIR%%/apps/files_external/lib/Lib/Backend/DAV.php -%%WWWDIR%%/apps/files_external/lib/Lib/Backend/FTP.php -%%WWWDIR%%/apps/files_external/lib/Lib/Backend/InvalidBackend.php -%%WWWDIR%%/apps/files_external/lib/Lib/Backend/LegacyBackend.php -%%WWWDIR%%/apps/files_external/lib/Lib/Backend/Local.php -%%WWWDIR%%/apps/files_external/lib/Lib/Backend/OwnCloud.php -%%WWWDIR%%/apps/files_external/lib/Lib/Backend/SFTP.php -%%WWWDIR%%/apps/files_external/lib/Lib/Backend/SFTP_Key.php -%%WWWDIR%%/apps/files_external/lib/Lib/Backend/SMB.php -%%WWWDIR%%/apps/files_external/lib/Lib/Backend/SMB_OC.php -%%WWWDIR%%/apps/files_external/lib/Lib/Backend/Swift.php -%%WWWDIR%%/apps/files_external/lib/Lib/Config/IAuthMechanismProvider.php -%%WWWDIR%%/apps/files_external/lib/Lib/Config/IBackendProvider.php -%%WWWDIR%%/apps/files_external/lib/Lib/DefinitionParameter.php -%%WWWDIR%%/apps/files_external/lib/Lib/DependencyTrait.php -%%WWWDIR%%/apps/files_external/lib/Lib/FrontendDefinitionTrait.php -%%WWWDIR%%/apps/files_external/lib/Lib/IdentifierTrait.php -%%WWWDIR%%/apps/files_external/lib/Lib/InsufficientDataForMeaningfulAnswerException.php -%%WWWDIR%%/apps/files_external/lib/Lib/LegacyDependencyCheckPolyfill.php -%%WWWDIR%%/apps/files_external/lib/Lib/MissingDependency.php -%%WWWDIR%%/apps/files_external/lib/Lib/Notify/SMBNotifyHandler.php -%%WWWDIR%%/apps/files_external/lib/Lib/PersonalMount.php -%%WWWDIR%%/apps/files_external/lib/Lib/PriorityTrait.php -%%WWWDIR%%/apps/files_external/lib/Lib/SessionStorageWrapper.php -%%WWWDIR%%/apps/files_external/lib/Lib/Storage/AmazonS3.php -%%WWWDIR%%/apps/files_external/lib/Lib/Storage/FTP.php -%%WWWDIR%%/apps/files_external/lib/Lib/Storage/OwnCloud.php -%%WWWDIR%%/apps/files_external/lib/Lib/Storage/SFTP.php -%%WWWDIR%%/apps/files_external/lib/Lib/Storage/SMB.php -%%WWWDIR%%/apps/files_external/lib/Lib/Storage/StreamWrapper.php -%%WWWDIR%%/apps/files_external/lib/Lib/Storage/Swift.php -%%WWWDIR%%/apps/files_external/lib/Lib/StorageConfig.php -%%WWWDIR%%/apps/files_external/lib/Lib/StorageModifierTrait.php -%%WWWDIR%%/apps/files_external/lib/Lib/VisibilityTrait.php -%%WWWDIR%%/apps/files_external/lib/Migration/DummyUserSession.php -%%WWWDIR%%/apps/files_external/lib/Migration/StorageMigrator.php -%%WWWDIR%%/apps/files_external/lib/NotFoundException.php -%%WWWDIR%%/apps/files_external/lib/Service/BackendService.php -%%WWWDIR%%/apps/files_external/lib/Service/DBConfigService.php -%%WWWDIR%%/apps/files_external/lib/Service/GlobalStoragesService.php -%%WWWDIR%%/apps/files_external/lib/Service/ImportLegacyStoragesService.php -%%WWWDIR%%/apps/files_external/lib/Service/LegacyStoragesService.php -%%WWWDIR%%/apps/files_external/lib/Service/StoragesService.php -%%WWWDIR%%/apps/files_external/lib/Service/UserGlobalStoragesService.php -%%WWWDIR%%/apps/files_external/lib/Service/UserLegacyStoragesService.php -%%WWWDIR%%/apps/files_external/lib/Service/UserStoragesService.php -%%WWWDIR%%/apps/files_external/lib/Service/UserTrait.php -%%WWWDIR%%/apps/files_external/lib/Settings/Admin.php -%%WWWDIR%%/apps/files_external/lib/Settings/Personal.php -%%WWWDIR%%/apps/files_external/lib/Settings/PersonalSection.php -%%WWWDIR%%/apps/files_external/lib/Settings/Section.php -%%WWWDIR%%/apps/files_external/lib/config.php -%%WWWDIR%%/apps/files_external/list.php -%%WWWDIR%%/apps/files_external/templates/list.php -%%WWWDIR%%/apps/files_external/templates/settings.php -%%WWWDIR%%/apps/files_pdfviewer/.github/contributing.md -%%WWWDIR%%/apps/files_pdfviewer/.github/issue_template.md -%%WWWDIR%%/apps/files_pdfviewer/appinfo/app.php -%%WWWDIR%%/apps/files_pdfviewer/appinfo/info.xml -%%WWWDIR%%/apps/files_pdfviewer/appinfo/routes.php -%%WWWDIR%%/apps/files_pdfviewer/appinfo/signature.json -%%WWWDIR%%/apps/files_pdfviewer/controller/displaycontroller.php -%%WWWDIR%%/apps/files_pdfviewer/css/minmode.css -%%WWWDIR%%/apps/files_pdfviewer/css/style.css -%%WWWDIR%%/apps/files_pdfviewer/css/viewer.css -%%WWWDIR%%/apps/files_pdfviewer/img/app.png -%%WWWDIR%%/apps/files_pdfviewer/img/app.svg -%%WWWDIR%%/apps/files_pdfviewer/img/toolbarButton-secondaryToolbarClose.svg -%%WWWDIR%%/apps/files_pdfviewer/js/previewplugin.js -%%WWWDIR%%/apps/files_pdfviewer/js/workersrc.js -%%WWWDIR%%/apps/files_pdfviewer/templates/viewer.php -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/LICENSE -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/build/pdf.js -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/build/pdf.worker.js -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/78-EUC-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/78-EUC-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/78-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/78-RKSJ-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/78-RKSJ-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/78-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/78ms-RKSJ-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/78ms-RKSJ-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/83pv-RKSJ-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/90ms-RKSJ-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/90ms-RKSJ-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/90msp-RKSJ-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/90msp-RKSJ-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/90pv-RKSJ-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/90pv-RKSJ-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Add-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Add-RKSJ-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Add-RKSJ-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Add-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-0.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-1.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-2.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-3.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-4.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-5.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-6.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-UCS2.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-0.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-1.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-2.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-3.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-4.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-5.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-UCS2.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-0.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-1.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-2.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-3.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-4.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-5.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-6.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-UCS2.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Korea1-0.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Korea1-1.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Korea1-2.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Korea1-UCS2.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/B5-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/B5-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/B5pc-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/B5pc-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/CNS-EUC-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/CNS-EUC-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/CNS1-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/CNS1-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/CNS2-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/CNS2-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/ETHK-B5-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/ETHK-B5-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/ETen-B5-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/ETen-B5-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/ETenms-B5-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/ETenms-B5-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/EUC-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/EUC-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Ext-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Ext-RKSJ-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Ext-RKSJ-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Ext-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GB-EUC-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GB-EUC-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GB-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GB-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBK-EUC-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBK-EUC-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBK2K-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBK2K-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBKp-EUC-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBKp-EUC-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBT-EUC-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBT-EUC-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBT-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBT-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBTpc-EUC-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBTpc-EUC-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBpc-EUC-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/GBpc-EUC-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKdla-B5-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKdla-B5-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKdlb-B5-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKdlb-B5-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKgccs-B5-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKgccs-B5-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKm314-B5-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKm314-B5-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKm471-B5-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKm471-B5-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKscs-B5-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/HKscs-B5-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Hankaku.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Hiragana.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSC-EUC-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSC-EUC-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSC-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSC-Johab-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSC-Johab-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSC-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSCms-UHC-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSCms-UHC-HW-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSCms-UHC-HW-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSCms-UHC-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSCpc-EUC-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/KSCpc-EUC-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Katakana.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/LICENSE -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/NWP-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/NWP-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/RKSJ-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/RKSJ-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/Roman.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UCS2-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UCS2-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UTF16-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UTF16-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UTF32-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UTF32-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UTF8-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UTF8-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UCS2-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UCS2-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UTF16-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UTF16-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UTF32-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UTF32-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UTF8-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UTF8-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UCS2-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UCS2-HW-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UCS2-HW-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UCS2-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UTF16-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UTF16-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UTF32-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UTF32-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UTF8-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UTF8-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS2004-UTF16-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS2004-UTF16-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS2004-UTF32-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS2004-UTF32-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS2004-UTF8-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS2004-UTF8-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISPro-UCS2-HW-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISPro-UCS2-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISPro-UTF8-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISX0213-UTF32-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISX0213-UTF32-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISX02132004-UTF32-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISX02132004-UTF32-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UCS2-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UCS2-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UTF16-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UTF16-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UTF32-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UTF32-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UTF8-H.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UTF8-V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/V.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/cmaps/WP-Symbol.bcmap -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/compatibility.js -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/debugger.js -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/annotation-check.svg -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/annotation-comment.svg -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/annotation-help.svg -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/annotation-insert.svg -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/annotation-key.svg -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/annotation-newparagraph.svg -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/annotation-noicon.svg -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/annotation-note.svg -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/annotation-paragraph.svg -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-next-rtl.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-next-rtl@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-next.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-next@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-previous-rtl.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-previous-rtl@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-previous.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-previous@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/grab.cur -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/grabbing.cur -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/loading-icon.gif -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/loading-small.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/loading-small@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-documentProperties.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-documentProperties@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-firstPage.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-firstPage@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-handTool.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-handTool@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-lastPage.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-lastPage@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-rotateCcw.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-rotateCcw@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-rotateCw.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-rotateCw@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/shadow.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/texture.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-bookmark.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-bookmark@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-download.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-download@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-menuArrows.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-menuArrows@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-openFile.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-openFile@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageDown-rtl.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageDown-rtl@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageDown.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageDown@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageUp-rtl.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageUp-rtl@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageUp.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageUp@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-presentationMode.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-presentationMode@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-print.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-print@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-search.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-search@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-secondaryToolbarToggle-rtl.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-secondaryToolbarToggle-rtl@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-secondaryToolbarToggle.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-secondaryToolbarToggle@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-sidebarToggle-rtl.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-sidebarToggle-rtl@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-sidebarToggle.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-sidebarToggle@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewAttachments.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewAttachments@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewOutline-rtl.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewOutline-rtl@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewOutline.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewOutline@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewThumbnail.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewThumbnail@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-zoomIn.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-zoomIn@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-zoomOut.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-zoomOut@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/treeitem-collapsed-rtl.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/treeitem-collapsed-rtl@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/treeitem-collapsed.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/treeitem-collapsed@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/treeitem-expanded.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/images/treeitem-expanded@2x.png -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/l10n.js -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ach/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/af/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ak/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/an/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ar/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/as/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ast/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/az/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/be/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/bg/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/bn-BD/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/bn-IN/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/br/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/bs/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ca/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/cs/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/csb/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/cy/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/da/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/de/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/el/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/en-GB/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/en-US/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/en-ZA/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/eo/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/es-AR/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/es-CL/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/es-ES/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/es-MX/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/et/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/eu/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/fa/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ff/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/fi/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/fr/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/fy-NL/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ga-IE/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/gd/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/gl/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/gu-IN/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/he/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/hi-IN/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/hr/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/hu/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/hy-AM/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/id/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/is/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/it/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ja/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ka/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/kk/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/km/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/kn/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ko/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ku/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/lg/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/lij/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/locale.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/lt/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/lv/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/mai/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/mk/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ml/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/mn/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/mr/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ms/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/my/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/nb-NO/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/nl/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/nn-NO/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/nso/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/oc/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/or/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/pa-IN/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/pl/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/pt-BR/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/pt-PT/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/rm/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ro/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ru/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/rw/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/sah/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/si/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/sk/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/sl/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/son/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/sq/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/sr/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/sv-SE/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/sw/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ta-LK/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ta/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/te/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/th/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/tl/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/tn/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/tr/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/uk/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/ur/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/vi/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/wo/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/xh/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/zh-CN/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/zh-TW/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/zu/viewer.properties -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/viewer.css -%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/viewer.js -%%WWWDIR%%/apps/files_sharing/appinfo/app.php -%%WWWDIR%%/apps/files_sharing/appinfo/database.xml -%%WWWDIR%%/apps/files_sharing/appinfo/info.xml -%%WWWDIR%%/apps/files_sharing/appinfo/routes.php -%%WWWDIR%%/apps/files_sharing/appinfo/signature.json -%%WWWDIR%%/apps/files_sharing/composer/autoload.php -%%WWWDIR%%/apps/files_sharing/composer/composer.json -%%WWWDIR%%/apps/files_sharing/composer/composer/ClassLoader.php -%%WWWDIR%%/apps/files_sharing/composer/composer/LICENSE -%%WWWDIR%%/apps/files_sharing/composer/composer/autoload_classmap.php -%%WWWDIR%%/apps/files_sharing/composer/composer/autoload_namespaces.php -%%WWWDIR%%/apps/files_sharing/composer/composer/autoload_psr4.php -%%WWWDIR%%/apps/files_sharing/composer/composer/autoload_real.php -%%WWWDIR%%/apps/files_sharing/composer/composer/autoload_static.php -%%WWWDIR%%/apps/files_sharing/css/404.css -%%WWWDIR%%/apps/files_sharing/css/authenticate.css -%%WWWDIR%%/apps/files_sharing/css/mergedAdditionalStyles.scss -%%WWWDIR%%/apps/files_sharing/css/mobile.scss -%%WWWDIR%%/apps/files_sharing/css/public.scss -%%WWWDIR%%/apps/files_sharing/css/publicView.scss -%%WWWDIR%%/apps/files_sharing/css/sharebreadcrumb.scss -%%WWWDIR%%/apps/files_sharing/css/sharedfilelist.css -%%WWWDIR%%/apps/files_sharing/css/sharetabview.scss -%%WWWDIR%%/apps/files_sharing/img/app.svg -%%WWWDIR%%/apps/files_sharing/js/additionalScripts.json -%%WWWDIR%%/apps/files_sharing/js/app.js -%%WWWDIR%%/apps/files_sharing/js/authenticate.js -%%WWWDIR%%/apps/files_sharing/js/files_drop.js -%%WWWDIR%%/apps/files_sharing/js/public.js -%%WWWDIR%%/apps/files_sharing/js/share.js -%%WWWDIR%%/apps/files_sharing/js/sharebreadcrumbview.js -%%WWWDIR%%/apps/files_sharing/js/sharedfilelist.js -%%WWWDIR%%/apps/files_sharing/js/sharetabview.js -%%WWWDIR%%/apps/files_sharing/l10n/.gitkeep -%%WWWDIR%%/apps/files_sharing/l10n/af_ZA.js -%%WWWDIR%%/apps/files_sharing/l10n/af_ZA.json -%%WWWDIR%%/apps/files_sharing/l10n/ar.js -%%WWWDIR%%/apps/files_sharing/l10n/ar.json -%%WWWDIR%%/apps/files_sharing/l10n/ast.js -%%WWWDIR%%/apps/files_sharing/l10n/ast.json -%%WWWDIR%%/apps/files_sharing/l10n/az.js -%%WWWDIR%%/apps/files_sharing/l10n/az.json -%%WWWDIR%%/apps/files_sharing/l10n/bg_BG.js -%%WWWDIR%%/apps/files_sharing/l10n/bg_BG.json -%%WWWDIR%%/apps/files_sharing/l10n/bn_BD.js -%%WWWDIR%%/apps/files_sharing/l10n/bn_BD.json -%%WWWDIR%%/apps/files_sharing/l10n/bn_IN.js -%%WWWDIR%%/apps/files_sharing/l10n/bn_IN.json -%%WWWDIR%%/apps/files_sharing/l10n/bs.js -%%WWWDIR%%/apps/files_sharing/l10n/bs.json -%%WWWDIR%%/apps/files_sharing/l10n/ca.js -%%WWWDIR%%/apps/files_sharing/l10n/ca.json -%%WWWDIR%%/apps/files_sharing/l10n/cs.js -%%WWWDIR%%/apps/files_sharing/l10n/cs.json -%%WWWDIR%%/apps/files_sharing/l10n/cs_CZ.js -%%WWWDIR%%/apps/files_sharing/l10n/cs_CZ.json -%%WWWDIR%%/apps/files_sharing/l10n/cy_GB.js -%%WWWDIR%%/apps/files_sharing/l10n/cy_GB.json -%%WWWDIR%%/apps/files_sharing/l10n/da.js -%%WWWDIR%%/apps/files_sharing/l10n/da.json -%%WWWDIR%%/apps/files_sharing/l10n/de.js -%%WWWDIR%%/apps/files_sharing/l10n/de.json -%%WWWDIR%%/apps/files_sharing/l10n/de_AT.js -%%WWWDIR%%/apps/files_sharing/l10n/de_AT.json -%%WWWDIR%%/apps/files_sharing/l10n/de_DE.js -%%WWWDIR%%/apps/files_sharing/l10n/de_DE.json -%%WWWDIR%%/apps/files_sharing/l10n/el.js -%%WWWDIR%%/apps/files_sharing/l10n/el.json -%%WWWDIR%%/apps/files_sharing/l10n/en_GB.js -%%WWWDIR%%/apps/files_sharing/l10n/en_GB.json -%%WWWDIR%%/apps/files_sharing/l10n/eo.js -%%WWWDIR%%/apps/files_sharing/l10n/eo.json -%%WWWDIR%%/apps/files_sharing/l10n/es.js -%%WWWDIR%%/apps/files_sharing/l10n/es.json -%%WWWDIR%%/apps/files_sharing/l10n/es_419.js -%%WWWDIR%%/apps/files_sharing/l10n/es_419.json -%%WWWDIR%%/apps/files_sharing/l10n/es_AR.js -%%WWWDIR%%/apps/files_sharing/l10n/es_AR.json -%%WWWDIR%%/apps/files_sharing/l10n/es_CL.js -%%WWWDIR%%/apps/files_sharing/l10n/es_CL.json -%%WWWDIR%%/apps/files_sharing/l10n/es_CO.js -%%WWWDIR%%/apps/files_sharing/l10n/es_CO.json -%%WWWDIR%%/apps/files_sharing/l10n/es_CR.js -%%WWWDIR%%/apps/files_sharing/l10n/es_CR.json -%%WWWDIR%%/apps/files_sharing/l10n/es_DO.js -%%WWWDIR%%/apps/files_sharing/l10n/es_DO.json -%%WWWDIR%%/apps/files_sharing/l10n/es_EC.js -%%WWWDIR%%/apps/files_sharing/l10n/es_EC.json -%%WWWDIR%%/apps/files_sharing/l10n/es_GT.js -%%WWWDIR%%/apps/files_sharing/l10n/es_GT.json -%%WWWDIR%%/apps/files_sharing/l10n/es_HN.js -%%WWWDIR%%/apps/files_sharing/l10n/es_HN.json -%%WWWDIR%%/apps/files_sharing/l10n/es_MX.js -%%WWWDIR%%/apps/files_sharing/l10n/es_MX.json -%%WWWDIR%%/apps/files_sharing/l10n/es_NI.js -%%WWWDIR%%/apps/files_sharing/l10n/es_NI.json -%%WWWDIR%%/apps/files_sharing/l10n/es_PA.js -%%WWWDIR%%/apps/files_sharing/l10n/es_PA.json -%%WWWDIR%%/apps/files_sharing/l10n/es_PE.js -%%WWWDIR%%/apps/files_sharing/l10n/es_PE.json -%%WWWDIR%%/apps/files_sharing/l10n/es_PR.js -%%WWWDIR%%/apps/files_sharing/l10n/es_PR.json -%%WWWDIR%%/apps/files_sharing/l10n/es_PY.js -%%WWWDIR%%/apps/files_sharing/l10n/es_PY.json -%%WWWDIR%%/apps/files_sharing/l10n/es_SV.js -%%WWWDIR%%/apps/files_sharing/l10n/es_SV.json -%%WWWDIR%%/apps/files_sharing/l10n/es_UY.js -%%WWWDIR%%/apps/files_sharing/l10n/es_UY.json -%%WWWDIR%%/apps/files_sharing/l10n/et_EE.js -%%WWWDIR%%/apps/files_sharing/l10n/et_EE.json -%%WWWDIR%%/apps/files_sharing/l10n/eu.js -%%WWWDIR%%/apps/files_sharing/l10n/eu.json -%%WWWDIR%%/apps/files_sharing/l10n/fa.js -%%WWWDIR%%/apps/files_sharing/l10n/fa.json -%%WWWDIR%%/apps/files_sharing/l10n/fi.js -%%WWWDIR%%/apps/files_sharing/l10n/fi.json -%%WWWDIR%%/apps/files_sharing/l10n/fi_FI.js -%%WWWDIR%%/apps/files_sharing/l10n/fi_FI.json -%%WWWDIR%%/apps/files_sharing/l10n/fil.js -%%WWWDIR%%/apps/files_sharing/l10n/fil.json -%%WWWDIR%%/apps/files_sharing/l10n/fr.js -%%WWWDIR%%/apps/files_sharing/l10n/fr.json -%%WWWDIR%%/apps/files_sharing/l10n/gl.js -%%WWWDIR%%/apps/files_sharing/l10n/gl.json -%%WWWDIR%%/apps/files_sharing/l10n/he.js -%%WWWDIR%%/apps/files_sharing/l10n/he.json -%%WWWDIR%%/apps/files_sharing/l10n/hi.js -%%WWWDIR%%/apps/files_sharing/l10n/hi.json -%%WWWDIR%%/apps/files_sharing/l10n/hr.js -%%WWWDIR%%/apps/files_sharing/l10n/hr.json -%%WWWDIR%%/apps/files_sharing/l10n/hu.js -%%WWWDIR%%/apps/files_sharing/l10n/hu.json -%%WWWDIR%%/apps/files_sharing/l10n/hu_HU.js -%%WWWDIR%%/apps/files_sharing/l10n/hu_HU.json -%%WWWDIR%%/apps/files_sharing/l10n/hy.js -%%WWWDIR%%/apps/files_sharing/l10n/hy.json -%%WWWDIR%%/apps/files_sharing/l10n/ia.js -%%WWWDIR%%/apps/files_sharing/l10n/ia.json -%%WWWDIR%%/apps/files_sharing/l10n/id.js -%%WWWDIR%%/apps/files_sharing/l10n/id.json -%%WWWDIR%%/apps/files_sharing/l10n/is.js -%%WWWDIR%%/apps/files_sharing/l10n/is.json -%%WWWDIR%%/apps/files_sharing/l10n/it.js -%%WWWDIR%%/apps/files_sharing/l10n/it.json -%%WWWDIR%%/apps/files_sharing/l10n/ja.js -%%WWWDIR%%/apps/files_sharing/l10n/ja.json -%%WWWDIR%%/apps/files_sharing/l10n/jv.js -%%WWWDIR%%/apps/files_sharing/l10n/jv.json -%%WWWDIR%%/apps/files_sharing/l10n/ka_GE.js -%%WWWDIR%%/apps/files_sharing/l10n/ka_GE.json -%%WWWDIR%%/apps/files_sharing/l10n/km.js -%%WWWDIR%%/apps/files_sharing/l10n/km.json -%%WWWDIR%%/apps/files_sharing/l10n/kn.js -%%WWWDIR%%/apps/files_sharing/l10n/kn.json -%%WWWDIR%%/apps/files_sharing/l10n/ko.js -%%WWWDIR%%/apps/files_sharing/l10n/ko.json -%%WWWDIR%%/apps/files_sharing/l10n/ku_IQ.js -%%WWWDIR%%/apps/files_sharing/l10n/ku_IQ.json -%%WWWDIR%%/apps/files_sharing/l10n/lb.js -%%WWWDIR%%/apps/files_sharing/l10n/lb.json -%%WWWDIR%%/apps/files_sharing/l10n/lo.js -%%WWWDIR%%/apps/files_sharing/l10n/lo.json -%%WWWDIR%%/apps/files_sharing/l10n/lt_LT.js -%%WWWDIR%%/apps/files_sharing/l10n/lt_LT.json -%%WWWDIR%%/apps/files_sharing/l10n/lv.js -%%WWWDIR%%/apps/files_sharing/l10n/lv.json -%%WWWDIR%%/apps/files_sharing/l10n/mk.js -%%WWWDIR%%/apps/files_sharing/l10n/mk.json -%%WWWDIR%%/apps/files_sharing/l10n/ml_IN.js -%%WWWDIR%%/apps/files_sharing/l10n/ml_IN.json -%%WWWDIR%%/apps/files_sharing/l10n/mn.js -%%WWWDIR%%/apps/files_sharing/l10n/mn.json -%%WWWDIR%%/apps/files_sharing/l10n/ms_MY.js -%%WWWDIR%%/apps/files_sharing/l10n/ms_MY.json -%%WWWDIR%%/apps/files_sharing/l10n/my_MM.js -%%WWWDIR%%/apps/files_sharing/l10n/my_MM.json -%%WWWDIR%%/apps/files_sharing/l10n/nb.js -%%WWWDIR%%/apps/files_sharing/l10n/nb.json -%%WWWDIR%%/apps/files_sharing/l10n/nb_NO.js -%%WWWDIR%%/apps/files_sharing/l10n/nb_NO.json -%%WWWDIR%%/apps/files_sharing/l10n/nds.js -%%WWWDIR%%/apps/files_sharing/l10n/nds.json -%%WWWDIR%%/apps/files_sharing/l10n/nl.js -%%WWWDIR%%/apps/files_sharing/l10n/nl.json -%%WWWDIR%%/apps/files_sharing/l10n/nn_NO.js -%%WWWDIR%%/apps/files_sharing/l10n/nn_NO.json -%%WWWDIR%%/apps/files_sharing/l10n/oc.js -%%WWWDIR%%/apps/files_sharing/l10n/oc.json -%%WWWDIR%%/apps/files_sharing/l10n/pa.js -%%WWWDIR%%/apps/files_sharing/l10n/pa.json -%%WWWDIR%%/apps/files_sharing/l10n/pl.js -%%WWWDIR%%/apps/files_sharing/l10n/pl.json -%%WWWDIR%%/apps/files_sharing/l10n/pt_BR.js -%%WWWDIR%%/apps/files_sharing/l10n/pt_BR.json -%%WWWDIR%%/apps/files_sharing/l10n/pt_PT.js -%%WWWDIR%%/apps/files_sharing/l10n/pt_PT.json -%%WWWDIR%%/apps/files_sharing/l10n/ro.js -%%WWWDIR%%/apps/files_sharing/l10n/ro.json -%%WWWDIR%%/apps/files_sharing/l10n/ru.js -%%WWWDIR%%/apps/files_sharing/l10n/ru.json -%%WWWDIR%%/apps/files_sharing/l10n/si_LK.js -%%WWWDIR%%/apps/files_sharing/l10n/si_LK.json -%%WWWDIR%%/apps/files_sharing/l10n/sk.js -%%WWWDIR%%/apps/files_sharing/l10n/sk.json -%%WWWDIR%%/apps/files_sharing/l10n/sk_SK.js -%%WWWDIR%%/apps/files_sharing/l10n/sk_SK.json -%%WWWDIR%%/apps/files_sharing/l10n/sl.js -%%WWWDIR%%/apps/files_sharing/l10n/sl.json -%%WWWDIR%%/apps/files_sharing/l10n/sq.js -%%WWWDIR%%/apps/files_sharing/l10n/sq.json -%%WWWDIR%%/apps/files_sharing/l10n/sr.js -%%WWWDIR%%/apps/files_sharing/l10n/sr.json -%%WWWDIR%%/apps/files_sharing/l10n/sr@latin.js -%%WWWDIR%%/apps/files_sharing/l10n/sr@latin.json -%%WWWDIR%%/apps/files_sharing/l10n/sv.js -%%WWWDIR%%/apps/files_sharing/l10n/sv.json -%%WWWDIR%%/apps/files_sharing/l10n/ta_IN.js -%%WWWDIR%%/apps/files_sharing/l10n/ta_IN.json -%%WWWDIR%%/apps/files_sharing/l10n/ta_LK.js -%%WWWDIR%%/apps/files_sharing/l10n/ta_LK.json -%%WWWDIR%%/apps/files_sharing/l10n/te.js -%%WWWDIR%%/apps/files_sharing/l10n/te.json -%%WWWDIR%%/apps/files_sharing/l10n/th_TH.js -%%WWWDIR%%/apps/files_sharing/l10n/th_TH.json -%%WWWDIR%%/apps/files_sharing/l10n/tr.js -%%WWWDIR%%/apps/files_sharing/l10n/tr.json -%%WWWDIR%%/apps/files_sharing/l10n/ug.js -%%WWWDIR%%/apps/files_sharing/l10n/ug.json -%%WWWDIR%%/apps/files_sharing/l10n/uk.js -%%WWWDIR%%/apps/files_sharing/l10n/uk.json -%%WWWDIR%%/apps/files_sharing/l10n/ur_PK.js -%%WWWDIR%%/apps/files_sharing/l10n/ur_PK.json -%%WWWDIR%%/apps/files_sharing/l10n/vi.js -%%WWWDIR%%/apps/files_sharing/l10n/vi.json -%%WWWDIR%%/apps/files_sharing/l10n/zh_CN.js -%%WWWDIR%%/apps/files_sharing/l10n/zh_CN.json -%%WWWDIR%%/apps/files_sharing/l10n/zh_HK.js -%%WWWDIR%%/apps/files_sharing/l10n/zh_HK.json -%%WWWDIR%%/apps/files_sharing/l10n/zh_TW.js -%%WWWDIR%%/apps/files_sharing/l10n/zh_TW.json -%%WWWDIR%%/apps/files_sharing/lib/Activity/Filter.php -%%WWWDIR%%/apps/files_sharing/lib/Activity/Providers/Base.php -%%WWWDIR%%/apps/files_sharing/lib/Activity/Providers/Downloads.php -%%WWWDIR%%/apps/files_sharing/lib/Activity/Providers/Groups.php -%%WWWDIR%%/apps/files_sharing/lib/Activity/Providers/PublicLinks.php -%%WWWDIR%%/apps/files_sharing/lib/Activity/Providers/RemoteShares.php -%%WWWDIR%%/apps/files_sharing/lib/Activity/Providers/Users.php -%%WWWDIR%%/apps/files_sharing/lib/Activity/Settings/PublicLinks.php -%%WWWDIR%%/apps/files_sharing/lib/Activity/Settings/RemoteShare.php -%%WWWDIR%%/apps/files_sharing/lib/Activity/Settings/Shared.php -%%WWWDIR%%/apps/files_sharing/lib/AppInfo/Application.php -%%WWWDIR%%/apps/files_sharing/lib/Cache.php -%%WWWDIR%%/apps/files_sharing/lib/Capabilities.php -%%WWWDIR%%/apps/files_sharing/lib/Collaboration/ShareRecipientSorter.php -%%WWWDIR%%/apps/files_sharing/lib/Command/CleanupRemoteStorages.php -%%WWWDIR%%/apps/files_sharing/lib/Controller/ExternalSharesController.php -%%WWWDIR%%/apps/files_sharing/lib/Controller/PublicPreviewController.php -%%WWWDIR%%/apps/files_sharing/lib/Controller/RemoteController.php -%%WWWDIR%%/apps/files_sharing/lib/Controller/ShareAPIController.php -%%WWWDIR%%/apps/files_sharing/lib/Controller/ShareController.php -%%WWWDIR%%/apps/files_sharing/lib/Controller/ShareInfoController.php -%%WWWDIR%%/apps/files_sharing/lib/Controller/ShareesAPIController.php -%%WWWDIR%%/apps/files_sharing/lib/DeleteOrphanedSharesJob.php -%%WWWDIR%%/apps/files_sharing/lib/Exceptions/BrokenPath.php -%%WWWDIR%%/apps/files_sharing/lib/Exceptions/S2SException.php -%%WWWDIR%%/apps/files_sharing/lib/ExpireSharesJob.php -%%WWWDIR%%/apps/files_sharing/lib/External/Cache.php -%%WWWDIR%%/apps/files_sharing/lib/External/Manager.php -%%WWWDIR%%/apps/files_sharing/lib/External/Mount.php -%%WWWDIR%%/apps/files_sharing/lib/External/MountProvider.php -%%WWWDIR%%/apps/files_sharing/lib/External/Scanner.php -%%WWWDIR%%/apps/files_sharing/lib/External/Storage.php -%%WWWDIR%%/apps/files_sharing/lib/External/Watcher.php -%%WWWDIR%%/apps/files_sharing/lib/Helper.php -%%WWWDIR%%/apps/files_sharing/lib/Hooks.php -%%WWWDIR%%/apps/files_sharing/lib/ISharedStorage.php -%%WWWDIR%%/apps/files_sharing/lib/Middleware/OCSShareAPIMiddleware.php -%%WWWDIR%%/apps/files_sharing/lib/Middleware/ShareInfoMiddleware.php -%%WWWDIR%%/apps/files_sharing/lib/Middleware/SharingCheckMiddleware.php -%%WWWDIR%%/apps/files_sharing/lib/Migration/OwncloudGuestShareType.php -%%WWWDIR%%/apps/files_sharing/lib/Migration/SetPasswordColumn.php -%%WWWDIR%%/apps/files_sharing/lib/MountProvider.php -%%WWWDIR%%/apps/files_sharing/lib/Scanner.php -%%WWWDIR%%/apps/files_sharing/lib/ShareBackend/File.php -%%WWWDIR%%/apps/files_sharing/lib/ShareBackend/Folder.php -%%WWWDIR%%/apps/files_sharing/lib/SharedMount.php -%%WWWDIR%%/apps/files_sharing/lib/SharedStorage.php -%%WWWDIR%%/apps/files_sharing/lib/Updater.php -%%WWWDIR%%/apps/files_sharing/list.php -%%WWWDIR%%/apps/files_sharing/public.php -%%WWWDIR%%/apps/files_sharing/templates/authenticate.php -%%WWWDIR%%/apps/files_sharing/templates/list.php -%%WWWDIR%%/apps/files_sharing/templates/part.404.php -%%WWWDIR%%/apps/files_sharing/templates/public.php -%%WWWDIR%%/apps/files_texteditor/.github/contributing.md -%%WWWDIR%%/apps/files_texteditor/.github/issue_template.md -%%WWWDIR%%/apps/files_texteditor/appinfo/app.php -%%WWWDIR%%/apps/files_texteditor/appinfo/info.xml -%%WWWDIR%%/apps/files_texteditor/appinfo/routes.php -%%WWWDIR%%/apps/files_texteditor/appinfo/signature.json -%%WWWDIR%%/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.eot -%%WWWDIR%%/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.svg -%%WWWDIR%%/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.ttf -%%WWWDIR%%/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.woff -%%WWWDIR%%/apps/files_texteditor/css/DroidSansMono/Google Android License.txt -%%WWWDIR%%/apps/files_texteditor/css/DroidSansMono/stylesheet.scss -%%WWWDIR%%/apps/files_texteditor/css/merged.scss -%%WWWDIR%%/apps/files_texteditor/css/mobile.scss -%%WWWDIR%%/apps/files_texteditor/css/public-share.css -%%WWWDIR%%/apps/files_texteditor/css/style.scss -%%WWWDIR%%/apps/files_texteditor/img/app.png -%%WWWDIR%%/apps/files_texteditor/img/app.svg -%%WWWDIR%%/apps/files_texteditor/img/image.svg -%%WWWDIR%%/apps/files_texteditor/img/mixed.svg -%%WWWDIR%%/apps/files_texteditor/img/text.svg -%%WWWDIR%%/apps/files_texteditor/js/add-nounce.patch -%%WWWDIR%%/apps/files_texteditor/js/bower.json -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/LICENSE -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/ace.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/ext-modelist.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/ext-searchbox.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/keybinding-emacs.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/keybinding-vim.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-abap.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-abc.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-actionscript.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-ada.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-apache_conf.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-applescript.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-asciidoc.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-assembly_x86.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-autohotkey.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-batchfile.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-bro.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-c9search.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-c_cpp.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-cirru.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-clojure.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-cobol.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-coffee.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-coldfusion.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-csharp.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-css.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-curly.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-d.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-dart.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-diff.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-django.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-dockerfile.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-dot.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-drools.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-eiffel.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-ejs.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-elixir.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-elm.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-erlang.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-forth.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-fortran.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-ftl.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-gcode.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-gherkin.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-gitignore.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-glsl.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-gobstones.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-golang.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-graphqlschema.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-groovy.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-haml.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-handlebars.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-haskell.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-haskell_cabal.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-haxe.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-hjson.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-html.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-html_elixir.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-html_ruby.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-ini.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-io.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-jack.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-jade.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-java.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-javascript.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-json.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-jsoniq.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-jsp.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-jsx.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-julia.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-kotlin.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-latex.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-lean.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-less.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-liquid.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-lisp.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-live_script.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-livescript.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-logiql.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-lsl.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-lua.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-luapage.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-lucene.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-makefile.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-markdown.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mask.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-matlab.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mavens_mate_log.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-maze.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mel.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mips_assembler.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mipsassembler.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mushcode.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mysql.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-nix.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-nsis.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-objectivec.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-ocaml.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-pascal.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-perl.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-pgsql.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-php.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-pig.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-plain_text.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-powershell.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-praat.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-prolog.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-properties.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-protobuf.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-python.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-r.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-razor.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-rdoc.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-rhtml.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-rst.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-ruby.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-rust.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sass.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-scad.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-scala.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-scheme.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-scss.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sh.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sjs.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-smarty.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-snippets.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-soy_template.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-space.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sparql.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sql.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sqlserver.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-stylus.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-svg.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-swift.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-swig.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-tcl.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-tex.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-text.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-textile.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-toml.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-tsx.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-turtle.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-twig.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-typescript.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-vala.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-vbscript.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-velocity.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-verilog.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-vhdl.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-wollok.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-xml.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-xquery.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-yaml.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/abap.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/abc.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/actionscript.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/ada.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/apache_conf.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/applescript.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/asciidoc.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/assembly_x86.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/autohotkey.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/batchfile.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/bro.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/c9search.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/c_cpp.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/cirru.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/clojure.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/cobol.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/coffee.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/coldfusion.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/csharp.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/css.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/curly.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/d.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/dart.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/diff.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/django.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/dockerfile.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/dot.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/drools.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/eiffel.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/ejs.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/elixir.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/elm.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/erlang.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/forth.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/fortran.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/ftl.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/gcode.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/gherkin.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/gitignore.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/glsl.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/gobstones.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/golang.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/graphqlschema.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/groovy.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/haml.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/handlebars.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/haskell.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/haskell_cabal.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/haxe.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/hjson.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/html.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/html_elixir.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/html_ruby.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/ini.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/io.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/jack.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/jade.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/java.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/javascript.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/json.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/jsoniq.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/jsp.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/jsx.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/julia.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/kotlin.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/latex.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/lean.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/less.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/liquid.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/lisp.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/live_script.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/livescript.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/logiql.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/lsl.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/lua.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/luapage.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/lucene.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/makefile.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/markdown.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/mask.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/matlab.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/maze.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/mel.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/mips_assembler.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/mipsassembler.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/mushcode.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/mysql.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/nix.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/nsis.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/objectivec.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/ocaml.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/pascal.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/perl.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/pgsql.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/php.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/pig.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/plain_text.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/powershell.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/praat.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/prolog.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/properties.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/protobuf.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/python.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/r.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/razor.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/rdoc.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/rhtml.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/rst.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/ruby.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/rust.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sass.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/scad.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/scala.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/scheme.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/scss.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sh.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sjs.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/smarty.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/snippets.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/soy_template.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/space.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sparql.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sql.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sqlserver.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/stylus.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/svg.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/swift.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/swig.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/tcl.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/tex.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/text.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/textile.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/toml.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/tsx.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/turtle.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/twig.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/typescript.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/vala.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/vbscript.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/velocity.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/verilog.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/vhdl.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/wollok.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/xml.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/xquery.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/yaml.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/theme-clouds.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-coffee.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-css.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-html.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-javascript.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-json.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-lua.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-php.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-xml.js -%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-xquery.js -%%WWWDIR%%/apps/files_texteditor/js/editor.js -%%WWWDIR%%/apps/files_texteditor/js/merged.json -%%WWWDIR%%/apps/files_texteditor/js/public-share.js -%%WWWDIR%%/apps/files_texteditor/js/sidebarpreview.js -%%WWWDIR%%/apps/files_texteditor/l10n/.gitkeep -%%WWWDIR%%/apps/files_texteditor/l10n/.tx/config -%%WWWDIR%%/apps/files_texteditor/l10n/ar.php -%%WWWDIR%%/apps/files_texteditor/l10n/ast.js -%%WWWDIR%%/apps/files_texteditor/l10n/ast.json -%%WWWDIR%%/apps/files_texteditor/l10n/az.js -%%WWWDIR%%/apps/files_texteditor/l10n/az.json -%%WWWDIR%%/apps/files_texteditor/l10n/bg.js -%%WWWDIR%%/apps/files_texteditor/l10n/bg.json -%%WWWDIR%%/apps/files_texteditor/l10n/bn_BD.php -%%WWWDIR%%/apps/files_texteditor/l10n/bs.php -%%WWWDIR%%/apps/files_texteditor/l10n/ca.js -%%WWWDIR%%/apps/files_texteditor/l10n/ca.json -%%WWWDIR%%/apps/files_texteditor/l10n/cs.js -%%WWWDIR%%/apps/files_texteditor/l10n/cs.json -%%WWWDIR%%/apps/files_texteditor/l10n/cy_GB.php -%%WWWDIR%%/apps/files_texteditor/l10n/da.js -%%WWWDIR%%/apps/files_texteditor/l10n/da.json -%%WWWDIR%%/apps/files_texteditor/l10n/de.js -%%WWWDIR%%/apps/files_texteditor/l10n/de.json -%%WWWDIR%%/apps/files_texteditor/l10n/de_CH.php -%%WWWDIR%%/apps/files_texteditor/l10n/de_DE.js -%%WWWDIR%%/apps/files_texteditor/l10n/de_DE.json -%%WWWDIR%%/apps/files_texteditor/l10n/el.js -%%WWWDIR%%/apps/files_texteditor/l10n/el.json -%%WWWDIR%%/apps/files_texteditor/l10n/en_GB.js -%%WWWDIR%%/apps/files_texteditor/l10n/en_GB.json -%%WWWDIR%%/apps/files_texteditor/l10n/eo.js -%%WWWDIR%%/apps/files_texteditor/l10n/eo.json -%%WWWDIR%%/apps/files_texteditor/l10n/es.js -%%WWWDIR%%/apps/files_texteditor/l10n/es.json -%%WWWDIR%%/apps/files_texteditor/l10n/es_419.js -%%WWWDIR%%/apps/files_texteditor/l10n/es_419.json -%%WWWDIR%%/apps/files_texteditor/l10n/es_AR.js -%%WWWDIR%%/apps/files_texteditor/l10n/es_AR.json -%%WWWDIR%%/apps/files_texteditor/l10n/es_CL.js -%%WWWDIR%%/apps/files_texteditor/l10n/es_CL.json -%%WWWDIR%%/apps/files_texteditor/l10n/es_CO.js -%%WWWDIR%%/apps/files_texteditor/l10n/es_CO.json -%%WWWDIR%%/apps/files_texteditor/l10n/es_CR.js -%%WWWDIR%%/apps/files_texteditor/l10n/es_CR.json -%%WWWDIR%%/apps/files_texteditor/l10n/es_DO.js -%%WWWDIR%%/apps/files_texteditor/l10n/es_DO.json -%%WWWDIR%%/apps/files_texteditor/l10n/es_EC.js -%%WWWDIR%%/apps/files_texteditor/l10n/es_EC.json -%%WWWDIR%%/apps/files_texteditor/l10n/es_GT.js -%%WWWDIR%%/apps/files_texteditor/l10n/es_GT.json -%%WWWDIR%%/apps/files_texteditor/l10n/es_HN.js -%%WWWDIR%%/apps/files_texteditor/l10n/es_HN.json -%%WWWDIR%%/apps/files_texteditor/l10n/es_MX.js -%%WWWDIR%%/apps/files_texteditor/l10n/es_MX.json -%%WWWDIR%%/apps/files_texteditor/l10n/es_NI.js -%%WWWDIR%%/apps/files_texteditor/l10n/es_NI.json -%%WWWDIR%%/apps/files_texteditor/l10n/es_PA.js -%%WWWDIR%%/apps/files_texteditor/l10n/es_PA.json -%%WWWDIR%%/apps/files_texteditor/l10n/es_PE.js -%%WWWDIR%%/apps/files_texteditor/l10n/es_PE.json -%%WWWDIR%%/apps/files_texteditor/l10n/es_PR.js -%%WWWDIR%%/apps/files_texteditor/l10n/es_PR.json -%%WWWDIR%%/apps/files_texteditor/l10n/es_PY.js -%%WWWDIR%%/apps/files_texteditor/l10n/es_PY.json -%%WWWDIR%%/apps/files_texteditor/l10n/es_SV.js -%%WWWDIR%%/apps/files_texteditor/l10n/es_SV.json -%%WWWDIR%%/apps/files_texteditor/l10n/es_UY.js -%%WWWDIR%%/apps/files_texteditor/l10n/es_UY.json -%%WWWDIR%%/apps/files_texteditor/l10n/et_EE.js -%%WWWDIR%%/apps/files_texteditor/l10n/et_EE.json -%%WWWDIR%%/apps/files_texteditor/l10n/eu.js -%%WWWDIR%%/apps/files_texteditor/l10n/eu.json -%%WWWDIR%%/apps/files_texteditor/l10n/eu_ES.php -%%WWWDIR%%/apps/files_texteditor/l10n/fa.js -%%WWWDIR%%/apps/files_texteditor/l10n/fa.json -%%WWWDIR%%/apps/files_texteditor/l10n/fi.js -%%WWWDIR%%/apps/files_texteditor/l10n/fi.json -%%WWWDIR%%/apps/files_texteditor/l10n/fr.js -%%WWWDIR%%/apps/files_texteditor/l10n/fr.json -%%WWWDIR%%/apps/files_texteditor/l10n/he.js -%%WWWDIR%%/apps/files_texteditor/l10n/he.json -%%WWWDIR%%/apps/files_texteditor/l10n/hi.php -%%WWWDIR%%/apps/files_texteditor/l10n/hr.php -%%WWWDIR%%/apps/files_texteditor/l10n/hu.js -%%WWWDIR%%/apps/files_texteditor/l10n/hu.json -%%WWWDIR%%/apps/files_texteditor/l10n/hy.js -%%WWWDIR%%/apps/files_texteditor/l10n/hy.json -%%WWWDIR%%/apps/files_texteditor/l10n/ia.php -%%WWWDIR%%/apps/files_texteditor/l10n/id.js -%%WWWDIR%%/apps/files_texteditor/l10n/id.json -%%WWWDIR%%/apps/files_texteditor/l10n/is.js -%%WWWDIR%%/apps/files_texteditor/l10n/is.json -%%WWWDIR%%/apps/files_texteditor/l10n/it.js -%%WWWDIR%%/apps/files_texteditor/l10n/it.json -%%WWWDIR%%/apps/files_texteditor/l10n/ja.js -%%WWWDIR%%/apps/files_texteditor/l10n/ja.json -%%WWWDIR%%/apps/files_texteditor/l10n/ka_GE.js -%%WWWDIR%%/apps/files_texteditor/l10n/ka_GE.json -%%WWWDIR%%/apps/files_texteditor/l10n/km.php -%%WWWDIR%%/apps/files_texteditor/l10n/ko.js -%%WWWDIR%%/apps/files_texteditor/l10n/ko.json -%%WWWDIR%%/apps/files_texteditor/l10n/ku_IQ.php -%%WWWDIR%%/apps/files_texteditor/l10n/lb.php -%%WWWDIR%%/apps/files_texteditor/l10n/lt_LT.js -%%WWWDIR%%/apps/files_texteditor/l10n/lt_LT.json -%%WWWDIR%%/apps/files_texteditor/l10n/lv.php -%%WWWDIR%%/apps/files_texteditor/l10n/mk.php -%%WWWDIR%%/apps/files_texteditor/l10n/ms_MY.php -%%WWWDIR%%/apps/files_texteditor/l10n/nb.js -%%WWWDIR%%/apps/files_texteditor/l10n/nb.json -%%WWWDIR%%/apps/files_texteditor/l10n/nl.js -%%WWWDIR%%/apps/files_texteditor/l10n/nl.json -%%WWWDIR%%/apps/files_texteditor/l10n/nn_NO.js -%%WWWDIR%%/apps/files_texteditor/l10n/nn_NO.json -%%WWWDIR%%/apps/files_texteditor/l10n/oc.js -%%WWWDIR%%/apps/files_texteditor/l10n/oc.json -%%WWWDIR%%/apps/files_texteditor/l10n/pa.php -%%WWWDIR%%/apps/files_texteditor/l10n/pl.js -%%WWWDIR%%/apps/files_texteditor/l10n/pl.json -%%WWWDIR%%/apps/files_texteditor/l10n/pt_BR.js -%%WWWDIR%%/apps/files_texteditor/l10n/pt_BR.json -%%WWWDIR%%/apps/files_texteditor/l10n/pt_PT.js -%%WWWDIR%%/apps/files_texteditor/l10n/pt_PT.json -%%WWWDIR%%/apps/files_texteditor/l10n/ro.js -%%WWWDIR%%/apps/files_texteditor/l10n/ro.json -%%WWWDIR%%/apps/files_texteditor/l10n/ru.js -%%WWWDIR%%/apps/files_texteditor/l10n/ru.json -%%WWWDIR%%/apps/files_texteditor/l10n/si_LK.php -%%WWWDIR%%/apps/files_texteditor/l10n/sk.js -%%WWWDIR%%/apps/files_texteditor/l10n/sk.json -%%WWWDIR%%/apps/files_texteditor/l10n/sl.js -%%WWWDIR%%/apps/files_texteditor/l10n/sl.json -%%WWWDIR%%/apps/files_texteditor/l10n/sq.js -%%WWWDIR%%/apps/files_texteditor/l10n/sq.json -%%WWWDIR%%/apps/files_texteditor/l10n/sr.js -%%WWWDIR%%/apps/files_texteditor/l10n/sr.json -%%WWWDIR%%/apps/files_texteditor/l10n/sv.js -%%WWWDIR%%/apps/files_texteditor/l10n/sv.json -%%WWWDIR%%/apps/files_texteditor/l10n/ta_LK.php -%%WWWDIR%%/apps/files_texteditor/l10n/te.php -%%WWWDIR%%/apps/files_texteditor/l10n/th.js -%%WWWDIR%%/apps/files_texteditor/l10n/th.json -%%WWWDIR%%/apps/files_texteditor/l10n/tr.js -%%WWWDIR%%/apps/files_texteditor/l10n/tr.json -%%WWWDIR%%/apps/files_texteditor/l10n/ug.php -%%WWWDIR%%/apps/files_texteditor/l10n/uk.js -%%WWWDIR%%/apps/files_texteditor/l10n/uk.json -%%WWWDIR%%/apps/files_texteditor/l10n/vi.php -%%WWWDIR%%/apps/files_texteditor/l10n/zh_CN.js -%%WWWDIR%%/apps/files_texteditor/l10n/zh_CN.json -%%WWWDIR%%/apps/files_texteditor/l10n/zh_HK.php -%%WWWDIR%%/apps/files_texteditor/l10n/zh_TW.js -%%WWWDIR%%/apps/files_texteditor/l10n/zh_TW.json -%%WWWDIR%%/apps/files_texteditor/lib/Controller/FileHandlingController.php -%%WWWDIR%%/apps/files_trashbin/ajax/delete.php -%%WWWDIR%%/apps/files_trashbin/ajax/isEmpty.php -%%WWWDIR%%/apps/files_trashbin/ajax/list.php -%%WWWDIR%%/apps/files_trashbin/ajax/undelete.php -%%WWWDIR%%/apps/files_trashbin/appinfo/app.php -%%WWWDIR%%/apps/files_trashbin/appinfo/database.xml -%%WWWDIR%%/apps/files_trashbin/appinfo/info.xml -%%WWWDIR%%/apps/files_trashbin/appinfo/routes.php -%%WWWDIR%%/apps/files_trashbin/appinfo/signature.json -%%WWWDIR%%/apps/files_trashbin/composer/autoload.php -%%WWWDIR%%/apps/files_trashbin/composer/composer.json -%%WWWDIR%%/apps/files_trashbin/composer/composer/ClassLoader.php -%%WWWDIR%%/apps/files_trashbin/composer/composer/LICENSE -%%WWWDIR%%/apps/files_trashbin/composer/composer/autoload_classmap.php -%%WWWDIR%%/apps/files_trashbin/composer/composer/autoload_namespaces.php -%%WWWDIR%%/apps/files_trashbin/composer/composer/autoload_psr4.php -%%WWWDIR%%/apps/files_trashbin/composer/composer/autoload_real.php -%%WWWDIR%%/apps/files_trashbin/composer/composer/autoload_static.php -%%WWWDIR%%/apps/files_trashbin/css/trash.scss -%%WWWDIR%%/apps/files_trashbin/img/app.svg -%%WWWDIR%%/apps/files_trashbin/js/app.js -%%WWWDIR%%/apps/files_trashbin/js/filelist.js -%%WWWDIR%%/apps/files_trashbin/l10n/.gitkeep -%%WWWDIR%%/apps/files_trashbin/l10n/af.js -%%WWWDIR%%/apps/files_trashbin/l10n/af.json -%%WWWDIR%%/apps/files_trashbin/l10n/af_ZA.js -%%WWWDIR%%/apps/files_trashbin/l10n/af_ZA.json -%%WWWDIR%%/apps/files_trashbin/l10n/ar.js -%%WWWDIR%%/apps/files_trashbin/l10n/ar.json -%%WWWDIR%%/apps/files_trashbin/l10n/ast.js -%%WWWDIR%%/apps/files_trashbin/l10n/ast.json -%%WWWDIR%%/apps/files_trashbin/l10n/az.js -%%WWWDIR%%/apps/files_trashbin/l10n/az.json -%%WWWDIR%%/apps/files_trashbin/l10n/be.js -%%WWWDIR%%/apps/files_trashbin/l10n/be.json -%%WWWDIR%%/apps/files_trashbin/l10n/bg.js -%%WWWDIR%%/apps/files_trashbin/l10n/bg.json -%%WWWDIR%%/apps/files_trashbin/l10n/bg_BG.js -%%WWWDIR%%/apps/files_trashbin/l10n/bg_BG.json -%%WWWDIR%%/apps/files_trashbin/l10n/bn_BD.js -%%WWWDIR%%/apps/files_trashbin/l10n/bn_BD.json -%%WWWDIR%%/apps/files_trashbin/l10n/bn_IN.js -%%WWWDIR%%/apps/files_trashbin/l10n/bn_IN.json -%%WWWDIR%%/apps/files_trashbin/l10n/bs.js -%%WWWDIR%%/apps/files_trashbin/l10n/bs.json -%%WWWDIR%%/apps/files_trashbin/l10n/ca.js -%%WWWDIR%%/apps/files_trashbin/l10n/ca.json -%%WWWDIR%%/apps/files_trashbin/l10n/cs.js -%%WWWDIR%%/apps/files_trashbin/l10n/cs.json -%%WWWDIR%%/apps/files_trashbin/l10n/cs_CZ.js -%%WWWDIR%%/apps/files_trashbin/l10n/cs_CZ.json -%%WWWDIR%%/apps/files_trashbin/l10n/cy_GB.js -%%WWWDIR%%/apps/files_trashbin/l10n/cy_GB.json -%%WWWDIR%%/apps/files_trashbin/l10n/da.js -%%WWWDIR%%/apps/files_trashbin/l10n/da.json -%%WWWDIR%%/apps/files_trashbin/l10n/de.js -%%WWWDIR%%/apps/files_trashbin/l10n/de.json -%%WWWDIR%%/apps/files_trashbin/l10n/de_AT.js -%%WWWDIR%%/apps/files_trashbin/l10n/de_AT.json -%%WWWDIR%%/apps/files_trashbin/l10n/de_DE.js -%%WWWDIR%%/apps/files_trashbin/l10n/de_DE.json -%%WWWDIR%%/apps/files_trashbin/l10n/el.js -%%WWWDIR%%/apps/files_trashbin/l10n/el.json -%%WWWDIR%%/apps/files_trashbin/l10n/en_GB.js -%%WWWDIR%%/apps/files_trashbin/l10n/en_GB.json -%%WWWDIR%%/apps/files_trashbin/l10n/eo.js -%%WWWDIR%%/apps/files_trashbin/l10n/eo.json -%%WWWDIR%%/apps/files_trashbin/l10n/es.js -%%WWWDIR%%/apps/files_trashbin/l10n/es.json -%%WWWDIR%%/apps/files_trashbin/l10n/es_419.js -%%WWWDIR%%/apps/files_trashbin/l10n/es_419.json -%%WWWDIR%%/apps/files_trashbin/l10n/es_AR.js -%%WWWDIR%%/apps/files_trashbin/l10n/es_AR.json -%%WWWDIR%%/apps/files_trashbin/l10n/es_CL.js -%%WWWDIR%%/apps/files_trashbin/l10n/es_CL.json -%%WWWDIR%%/apps/files_trashbin/l10n/es_CO.js -%%WWWDIR%%/apps/files_trashbin/l10n/es_CO.json -%%WWWDIR%%/apps/files_trashbin/l10n/es_CR.js -%%WWWDIR%%/apps/files_trashbin/l10n/es_CR.json -%%WWWDIR%%/apps/files_trashbin/l10n/es_DO.js -%%WWWDIR%%/apps/files_trashbin/l10n/es_DO.json -%%WWWDIR%%/apps/files_trashbin/l10n/es_EC.js -%%WWWDIR%%/apps/files_trashbin/l10n/es_EC.json -%%WWWDIR%%/apps/files_trashbin/l10n/es_GT.js -%%WWWDIR%%/apps/files_trashbin/l10n/es_GT.json -%%WWWDIR%%/apps/files_trashbin/l10n/es_HN.js -%%WWWDIR%%/apps/files_trashbin/l10n/es_HN.json -%%WWWDIR%%/apps/files_trashbin/l10n/es_MX.js -%%WWWDIR%%/apps/files_trashbin/l10n/es_MX.json -%%WWWDIR%%/apps/files_trashbin/l10n/es_NI.js -%%WWWDIR%%/apps/files_trashbin/l10n/es_NI.json -%%WWWDIR%%/apps/files_trashbin/l10n/es_PA.js -%%WWWDIR%%/apps/files_trashbin/l10n/es_PA.json -%%WWWDIR%%/apps/files_trashbin/l10n/es_PE.js -%%WWWDIR%%/apps/files_trashbin/l10n/es_PE.json -%%WWWDIR%%/apps/files_trashbin/l10n/es_PR.js -%%WWWDIR%%/apps/files_trashbin/l10n/es_PR.json -%%WWWDIR%%/apps/files_trashbin/l10n/es_PY.js -%%WWWDIR%%/apps/files_trashbin/l10n/es_PY.json -%%WWWDIR%%/apps/files_trashbin/l10n/es_SV.js -%%WWWDIR%%/apps/files_trashbin/l10n/es_SV.json -%%WWWDIR%%/apps/files_trashbin/l10n/es_UY.js -%%WWWDIR%%/apps/files_trashbin/l10n/es_UY.json -%%WWWDIR%%/apps/files_trashbin/l10n/et_EE.js -%%WWWDIR%%/apps/files_trashbin/l10n/et_EE.json -%%WWWDIR%%/apps/files_trashbin/l10n/eu.js -%%WWWDIR%%/apps/files_trashbin/l10n/eu.json -%%WWWDIR%%/apps/files_trashbin/l10n/fa.js -%%WWWDIR%%/apps/files_trashbin/l10n/fa.json -%%WWWDIR%%/apps/files_trashbin/l10n/fi.js -%%WWWDIR%%/apps/files_trashbin/l10n/fi.json -%%WWWDIR%%/apps/files_trashbin/l10n/fi_FI.js -%%WWWDIR%%/apps/files_trashbin/l10n/fi_FI.json -%%WWWDIR%%/apps/files_trashbin/l10n/fil.js -%%WWWDIR%%/apps/files_trashbin/l10n/fil.json -%%WWWDIR%%/apps/files_trashbin/l10n/fr.js -%%WWWDIR%%/apps/files_trashbin/l10n/fr.json -%%WWWDIR%%/apps/files_trashbin/l10n/gl.js -%%WWWDIR%%/apps/files_trashbin/l10n/gl.json -%%WWWDIR%%/apps/files_trashbin/l10n/he.js -%%WWWDIR%%/apps/files_trashbin/l10n/he.json -%%WWWDIR%%/apps/files_trashbin/l10n/hi.js -%%WWWDIR%%/apps/files_trashbin/l10n/hi.json -%%WWWDIR%%/apps/files_trashbin/l10n/hr.js -%%WWWDIR%%/apps/files_trashbin/l10n/hr.json -%%WWWDIR%%/apps/files_trashbin/l10n/hu.js -%%WWWDIR%%/apps/files_trashbin/l10n/hu.json -%%WWWDIR%%/apps/files_trashbin/l10n/hu_HU.js -%%WWWDIR%%/apps/files_trashbin/l10n/hu_HU.json -%%WWWDIR%%/apps/files_trashbin/l10n/hy.js -%%WWWDIR%%/apps/files_trashbin/l10n/hy.json -%%WWWDIR%%/apps/files_trashbin/l10n/ia.js -%%WWWDIR%%/apps/files_trashbin/l10n/ia.json -%%WWWDIR%%/apps/files_trashbin/l10n/id.js -%%WWWDIR%%/apps/files_trashbin/l10n/id.json -%%WWWDIR%%/apps/files_trashbin/l10n/is.js -%%WWWDIR%%/apps/files_trashbin/l10n/is.json -%%WWWDIR%%/apps/files_trashbin/l10n/it.js -%%WWWDIR%%/apps/files_trashbin/l10n/it.json -%%WWWDIR%%/apps/files_trashbin/l10n/ja.js -%%WWWDIR%%/apps/files_trashbin/l10n/ja.json -%%WWWDIR%%/apps/files_trashbin/l10n/ka_GE.js -%%WWWDIR%%/apps/files_trashbin/l10n/ka_GE.json -%%WWWDIR%%/apps/files_trashbin/l10n/km.js -%%WWWDIR%%/apps/files_trashbin/l10n/km.json -%%WWWDIR%%/apps/files_trashbin/l10n/kn.js -%%WWWDIR%%/apps/files_trashbin/l10n/kn.json -%%WWWDIR%%/apps/files_trashbin/l10n/ko.js -%%WWWDIR%%/apps/files_trashbin/l10n/ko.json -%%WWWDIR%%/apps/files_trashbin/l10n/ku_IQ.js -%%WWWDIR%%/apps/files_trashbin/l10n/ku_IQ.json -%%WWWDIR%%/apps/files_trashbin/l10n/lb.js -%%WWWDIR%%/apps/files_trashbin/l10n/lb.json -%%WWWDIR%%/apps/files_trashbin/l10n/lt_LT.js -%%WWWDIR%%/apps/files_trashbin/l10n/lt_LT.json -%%WWWDIR%%/apps/files_trashbin/l10n/lv.js -%%WWWDIR%%/apps/files_trashbin/l10n/lv.json -%%WWWDIR%%/apps/files_trashbin/l10n/mk.js -%%WWWDIR%%/apps/files_trashbin/l10n/mk.json -%%WWWDIR%%/apps/files_trashbin/l10n/ms_MY.js -%%WWWDIR%%/apps/files_trashbin/l10n/ms_MY.json -%%WWWDIR%%/apps/files_trashbin/l10n/nb.js -%%WWWDIR%%/apps/files_trashbin/l10n/nb.json -%%WWWDIR%%/apps/files_trashbin/l10n/nb_NO.js -%%WWWDIR%%/apps/files_trashbin/l10n/nb_NO.json -%%WWWDIR%%/apps/files_trashbin/l10n/nds.js -%%WWWDIR%%/apps/files_trashbin/l10n/nds.json -%%WWWDIR%%/apps/files_trashbin/l10n/nl.js -%%WWWDIR%%/apps/files_trashbin/l10n/nl.json -%%WWWDIR%%/apps/files_trashbin/l10n/nn_NO.js -%%WWWDIR%%/apps/files_trashbin/l10n/nn_NO.json -%%WWWDIR%%/apps/files_trashbin/l10n/oc.js -%%WWWDIR%%/apps/files_trashbin/l10n/oc.json -%%WWWDIR%%/apps/files_trashbin/l10n/pa.js -%%WWWDIR%%/apps/files_trashbin/l10n/pa.json -%%WWWDIR%%/apps/files_trashbin/l10n/pl.js -%%WWWDIR%%/apps/files_trashbin/l10n/pl.json -%%WWWDIR%%/apps/files_trashbin/l10n/pt_BR.js -%%WWWDIR%%/apps/files_trashbin/l10n/pt_BR.json -%%WWWDIR%%/apps/files_trashbin/l10n/pt_PT.js -%%WWWDIR%%/apps/files_trashbin/l10n/pt_PT.json -%%WWWDIR%%/apps/files_trashbin/l10n/ro.js -%%WWWDIR%%/apps/files_trashbin/l10n/ro.json -%%WWWDIR%%/apps/files_trashbin/l10n/ru.js -%%WWWDIR%%/apps/files_trashbin/l10n/ru.json -%%WWWDIR%%/apps/files_trashbin/l10n/si_LK.js -%%WWWDIR%%/apps/files_trashbin/l10n/si_LK.json -%%WWWDIR%%/apps/files_trashbin/l10n/sk.js -%%WWWDIR%%/apps/files_trashbin/l10n/sk.json -%%WWWDIR%%/apps/files_trashbin/l10n/sk_SK.js -%%WWWDIR%%/apps/files_trashbin/l10n/sk_SK.json -%%WWWDIR%%/apps/files_trashbin/l10n/sl.js -%%WWWDIR%%/apps/files_trashbin/l10n/sl.json -%%WWWDIR%%/apps/files_trashbin/l10n/sq.js -%%WWWDIR%%/apps/files_trashbin/l10n/sq.json -%%WWWDIR%%/apps/files_trashbin/l10n/sr.js -%%WWWDIR%%/apps/files_trashbin/l10n/sr.json -%%WWWDIR%%/apps/files_trashbin/l10n/sr@latin.js -%%WWWDIR%%/apps/files_trashbin/l10n/sr@latin.json -%%WWWDIR%%/apps/files_trashbin/l10n/sv.js -%%WWWDIR%%/apps/files_trashbin/l10n/sv.json -%%WWWDIR%%/apps/files_trashbin/l10n/ta_LK.js -%%WWWDIR%%/apps/files_trashbin/l10n/ta_LK.json -%%WWWDIR%%/apps/files_trashbin/l10n/te.js -%%WWWDIR%%/apps/files_trashbin/l10n/te.json -%%WWWDIR%%/apps/files_trashbin/l10n/th.js -%%WWWDIR%%/apps/files_trashbin/l10n/th.json -%%WWWDIR%%/apps/files_trashbin/l10n/th_TH.js -%%WWWDIR%%/apps/files_trashbin/l10n/th_TH.json -%%WWWDIR%%/apps/files_trashbin/l10n/tr.js -%%WWWDIR%%/apps/files_trashbin/l10n/tr.json -%%WWWDIR%%/apps/files_trashbin/l10n/ug.js -%%WWWDIR%%/apps/files_trashbin/l10n/ug.json -%%WWWDIR%%/apps/files_trashbin/l10n/uk.js -%%WWWDIR%%/apps/files_trashbin/l10n/uk.json -%%WWWDIR%%/apps/files_trashbin/l10n/ur_PK.js -%%WWWDIR%%/apps/files_trashbin/l10n/ur_PK.json -%%WWWDIR%%/apps/files_trashbin/l10n/vi.js -%%WWWDIR%%/apps/files_trashbin/l10n/vi.json -%%WWWDIR%%/apps/files_trashbin/l10n/zh_CN.js -%%WWWDIR%%/apps/files_trashbin/l10n/zh_CN.json -%%WWWDIR%%/apps/files_trashbin/l10n/zh_HK.js -%%WWWDIR%%/apps/files_trashbin/l10n/zh_HK.json -%%WWWDIR%%/apps/files_trashbin/l10n/zh_TW.js -%%WWWDIR%%/apps/files_trashbin/l10n/zh_TW.json -%%WWWDIR%%/apps/files_trashbin/lib/AppInfo/Application.php -%%WWWDIR%%/apps/files_trashbin/lib/BackgroundJob/ExpireTrash.php -%%WWWDIR%%/apps/files_trashbin/lib/Capabilities.php -%%WWWDIR%%/apps/files_trashbin/lib/Command/CleanUp.php -%%WWWDIR%%/apps/files_trashbin/lib/Command/Expire.php -%%WWWDIR%%/apps/files_trashbin/lib/Command/ExpireTrash.php -%%WWWDIR%%/apps/files_trashbin/lib/Controller/PreviewController.php -%%WWWDIR%%/apps/files_trashbin/lib/Events/MoveToTrashEvent.php -%%WWWDIR%%/apps/files_trashbin/lib/Exceptions/CopyRecursiveException.php -%%WWWDIR%%/apps/files_trashbin/lib/Expiration.php -%%WWWDIR%%/apps/files_trashbin/lib/Helper.php -%%WWWDIR%%/apps/files_trashbin/lib/Hooks.php -%%WWWDIR%%/apps/files_trashbin/lib/Storage.php -%%WWWDIR%%/apps/files_trashbin/lib/Trashbin.php -%%WWWDIR%%/apps/files_trashbin/list.php -%%WWWDIR%%/apps/files_trashbin/templates/index.php -%%WWWDIR%%/apps/files_versions/ajax/getVersions.php -%%WWWDIR%%/apps/files_versions/ajax/rollbackVersion.php -%%WWWDIR%%/apps/files_versions/appinfo/app.php -%%WWWDIR%%/apps/files_versions/appinfo/info.xml -%%WWWDIR%%/apps/files_versions/appinfo/routes.php -%%WWWDIR%%/apps/files_versions/appinfo/signature.json -%%WWWDIR%%/apps/files_versions/composer/autoload.php -%%WWWDIR%%/apps/files_versions/composer/composer.json -%%WWWDIR%%/apps/files_versions/composer/composer/ClassLoader.php -%%WWWDIR%%/apps/files_versions/composer/composer/LICENSE -%%WWWDIR%%/apps/files_versions/composer/composer/autoload_classmap.php -%%WWWDIR%%/apps/files_versions/composer/composer/autoload_namespaces.php -%%WWWDIR%%/apps/files_versions/composer/composer/autoload_psr4.php -%%WWWDIR%%/apps/files_versions/composer/composer/autoload_real.php -%%WWWDIR%%/apps/files_versions/composer/composer/autoload_static.php -%%WWWDIR%%/apps/files_versions/css/versions.css -%%WWWDIR%%/apps/files_versions/download.php -%%WWWDIR%%/apps/files_versions/img/app.svg -%%WWWDIR%%/apps/files_versions/js/filesplugin.js -%%WWWDIR%%/apps/files_versions/js/merged.json -%%WWWDIR%%/apps/files_versions/js/versioncollection.js -%%WWWDIR%%/apps/files_versions/js/versionmodel.js -%%WWWDIR%%/apps/files_versions/js/versionstabview.js -%%WWWDIR%%/apps/files_versions/l10n/.gitkeep -%%WWWDIR%%/apps/files_versions/l10n/af.js -%%WWWDIR%%/apps/files_versions/l10n/af.json -%%WWWDIR%%/apps/files_versions/l10n/ar.js -%%WWWDIR%%/apps/files_versions/l10n/ar.json -%%WWWDIR%%/apps/files_versions/l10n/ast.js -%%WWWDIR%%/apps/files_versions/l10n/ast.json -%%WWWDIR%%/apps/files_versions/l10n/az.js -%%WWWDIR%%/apps/files_versions/l10n/az.json -%%WWWDIR%%/apps/files_versions/l10n/bg.js -%%WWWDIR%%/apps/files_versions/l10n/bg.json -%%WWWDIR%%/apps/files_versions/l10n/bg_BG.js -%%WWWDIR%%/apps/files_versions/l10n/bg_BG.json -%%WWWDIR%%/apps/files_versions/l10n/bn_BD.js -%%WWWDIR%%/apps/files_versions/l10n/bn_BD.json -%%WWWDIR%%/apps/files_versions/l10n/bn_IN.js -%%WWWDIR%%/apps/files_versions/l10n/bn_IN.json -%%WWWDIR%%/apps/files_versions/l10n/bs.js -%%WWWDIR%%/apps/files_versions/l10n/bs.json -%%WWWDIR%%/apps/files_versions/l10n/ca.js -%%WWWDIR%%/apps/files_versions/l10n/ca.json -%%WWWDIR%%/apps/files_versions/l10n/cs.js -%%WWWDIR%%/apps/files_versions/l10n/cs.json -%%WWWDIR%%/apps/files_versions/l10n/cs_CZ.js -%%WWWDIR%%/apps/files_versions/l10n/cs_CZ.json -%%WWWDIR%%/apps/files_versions/l10n/cy_GB.js -%%WWWDIR%%/apps/files_versions/l10n/cy_GB.json -%%WWWDIR%%/apps/files_versions/l10n/da.js -%%WWWDIR%%/apps/files_versions/l10n/da.json -%%WWWDIR%%/apps/files_versions/l10n/de.js -%%WWWDIR%%/apps/files_versions/l10n/de.json -%%WWWDIR%%/apps/files_versions/l10n/de_DE.js -%%WWWDIR%%/apps/files_versions/l10n/de_DE.json -%%WWWDIR%%/apps/files_versions/l10n/el.js -%%WWWDIR%%/apps/files_versions/l10n/el.json -%%WWWDIR%%/apps/files_versions/l10n/en_GB.js -%%WWWDIR%%/apps/files_versions/l10n/en_GB.json -%%WWWDIR%%/apps/files_versions/l10n/eo.js -%%WWWDIR%%/apps/files_versions/l10n/eo.json -%%WWWDIR%%/apps/files_versions/l10n/es.js -%%WWWDIR%%/apps/files_versions/l10n/es.json -%%WWWDIR%%/apps/files_versions/l10n/es_419.js -%%WWWDIR%%/apps/files_versions/l10n/es_419.json -%%WWWDIR%%/apps/files_versions/l10n/es_AR.js -%%WWWDIR%%/apps/files_versions/l10n/es_AR.json -%%WWWDIR%%/apps/files_versions/l10n/es_CL.js -%%WWWDIR%%/apps/files_versions/l10n/es_CL.json -%%WWWDIR%%/apps/files_versions/l10n/es_CO.js -%%WWWDIR%%/apps/files_versions/l10n/es_CO.json -%%WWWDIR%%/apps/files_versions/l10n/es_CR.js -%%WWWDIR%%/apps/files_versions/l10n/es_CR.json -%%WWWDIR%%/apps/files_versions/l10n/es_DO.js -%%WWWDIR%%/apps/files_versions/l10n/es_DO.json -%%WWWDIR%%/apps/files_versions/l10n/es_EC.js -%%WWWDIR%%/apps/files_versions/l10n/es_EC.json -%%WWWDIR%%/apps/files_versions/l10n/es_GT.js -%%WWWDIR%%/apps/files_versions/l10n/es_GT.json -%%WWWDIR%%/apps/files_versions/l10n/es_HN.js -%%WWWDIR%%/apps/files_versions/l10n/es_HN.json -%%WWWDIR%%/apps/files_versions/l10n/es_MX.js -%%WWWDIR%%/apps/files_versions/l10n/es_MX.json -%%WWWDIR%%/apps/files_versions/l10n/es_NI.js -%%WWWDIR%%/apps/files_versions/l10n/es_NI.json -%%WWWDIR%%/apps/files_versions/l10n/es_PA.js -%%WWWDIR%%/apps/files_versions/l10n/es_PA.json -%%WWWDIR%%/apps/files_versions/l10n/es_PE.js -%%WWWDIR%%/apps/files_versions/l10n/es_PE.json -%%WWWDIR%%/apps/files_versions/l10n/es_PR.js -%%WWWDIR%%/apps/files_versions/l10n/es_PR.json -%%WWWDIR%%/apps/files_versions/l10n/es_PY.js -%%WWWDIR%%/apps/files_versions/l10n/es_PY.json -%%WWWDIR%%/apps/files_versions/l10n/es_SV.js -%%WWWDIR%%/apps/files_versions/l10n/es_SV.json -%%WWWDIR%%/apps/files_versions/l10n/es_UY.js -%%WWWDIR%%/apps/files_versions/l10n/es_UY.json -%%WWWDIR%%/apps/files_versions/l10n/et_EE.js -%%WWWDIR%%/apps/files_versions/l10n/et_EE.json -%%WWWDIR%%/apps/files_versions/l10n/eu.js -%%WWWDIR%%/apps/files_versions/l10n/eu.json -%%WWWDIR%%/apps/files_versions/l10n/fa.js -%%WWWDIR%%/apps/files_versions/l10n/fa.json -%%WWWDIR%%/apps/files_versions/l10n/fi.js -%%WWWDIR%%/apps/files_versions/l10n/fi.json -%%WWWDIR%%/apps/files_versions/l10n/fi_FI.js -%%WWWDIR%%/apps/files_versions/l10n/fi_FI.json -%%WWWDIR%%/apps/files_versions/l10n/fr.js -%%WWWDIR%%/apps/files_versions/l10n/fr.json -%%WWWDIR%%/apps/files_versions/l10n/gl.js -%%WWWDIR%%/apps/files_versions/l10n/gl.json -%%WWWDIR%%/apps/files_versions/l10n/he.js -%%WWWDIR%%/apps/files_versions/l10n/he.json -%%WWWDIR%%/apps/files_versions/l10n/hr.js -%%WWWDIR%%/apps/files_versions/l10n/hr.json -%%WWWDIR%%/apps/files_versions/l10n/hu.js -%%WWWDIR%%/apps/files_versions/l10n/hu.json -%%WWWDIR%%/apps/files_versions/l10n/hu_HU.js -%%WWWDIR%%/apps/files_versions/l10n/hu_HU.json -%%WWWDIR%%/apps/files_versions/l10n/hy.js -%%WWWDIR%%/apps/files_versions/l10n/hy.json -%%WWWDIR%%/apps/files_versions/l10n/ia.js -%%WWWDIR%%/apps/files_versions/l10n/ia.json -%%WWWDIR%%/apps/files_versions/l10n/id.js -%%WWWDIR%%/apps/files_versions/l10n/id.json -%%WWWDIR%%/apps/files_versions/l10n/is.js -%%WWWDIR%%/apps/files_versions/l10n/is.json -%%WWWDIR%%/apps/files_versions/l10n/it.js -%%WWWDIR%%/apps/files_versions/l10n/it.json -%%WWWDIR%%/apps/files_versions/l10n/ja.js -%%WWWDIR%%/apps/files_versions/l10n/ja.json -%%WWWDIR%%/apps/files_versions/l10n/ka_GE.js -%%WWWDIR%%/apps/files_versions/l10n/ka_GE.json -%%WWWDIR%%/apps/files_versions/l10n/km.js -%%WWWDIR%%/apps/files_versions/l10n/km.json -%%WWWDIR%%/apps/files_versions/l10n/kn.js -%%WWWDIR%%/apps/files_versions/l10n/kn.json -%%WWWDIR%%/apps/files_versions/l10n/ko.js -%%WWWDIR%%/apps/files_versions/l10n/ko.json -%%WWWDIR%%/apps/files_versions/l10n/ku_IQ.js -%%WWWDIR%%/apps/files_versions/l10n/ku_IQ.json -%%WWWDIR%%/apps/files_versions/l10n/lb.js -%%WWWDIR%%/apps/files_versions/l10n/lb.json -%%WWWDIR%%/apps/files_versions/l10n/lt_LT.js -%%WWWDIR%%/apps/files_versions/l10n/lt_LT.json -%%WWWDIR%%/apps/files_versions/l10n/lv.js -%%WWWDIR%%/apps/files_versions/l10n/lv.json -%%WWWDIR%%/apps/files_versions/l10n/mk.js -%%WWWDIR%%/apps/files_versions/l10n/mk.json -%%WWWDIR%%/apps/files_versions/l10n/ms_MY.js -%%WWWDIR%%/apps/files_versions/l10n/ms_MY.json -%%WWWDIR%%/apps/files_versions/l10n/nb.js -%%WWWDIR%%/apps/files_versions/l10n/nb.json -%%WWWDIR%%/apps/files_versions/l10n/nb_NO.js -%%WWWDIR%%/apps/files_versions/l10n/nb_NO.json -%%WWWDIR%%/apps/files_versions/l10n/nl.js -%%WWWDIR%%/apps/files_versions/l10n/nl.json -%%WWWDIR%%/apps/files_versions/l10n/nn_NO.js -%%WWWDIR%%/apps/files_versions/l10n/nn_NO.json -%%WWWDIR%%/apps/files_versions/l10n/oc.js -%%WWWDIR%%/apps/files_versions/l10n/oc.json -%%WWWDIR%%/apps/files_versions/l10n/pl.js -%%WWWDIR%%/apps/files_versions/l10n/pl.json -%%WWWDIR%%/apps/files_versions/l10n/pt_BR.js -%%WWWDIR%%/apps/files_versions/l10n/pt_BR.json -%%WWWDIR%%/apps/files_versions/l10n/pt_PT.js -%%WWWDIR%%/apps/files_versions/l10n/pt_PT.json -%%WWWDIR%%/apps/files_versions/l10n/ro.js -%%WWWDIR%%/apps/files_versions/l10n/ro.json -%%WWWDIR%%/apps/files_versions/l10n/ru.js -%%WWWDIR%%/apps/files_versions/l10n/ru.json -%%WWWDIR%%/apps/files_versions/l10n/si_LK.js -%%WWWDIR%%/apps/files_versions/l10n/si_LK.json -%%WWWDIR%%/apps/files_versions/l10n/sk.js -%%WWWDIR%%/apps/files_versions/l10n/sk.json -%%WWWDIR%%/apps/files_versions/l10n/sk_SK.js -%%WWWDIR%%/apps/files_versions/l10n/sk_SK.json -%%WWWDIR%%/apps/files_versions/l10n/sl.js -%%WWWDIR%%/apps/files_versions/l10n/sl.json -%%WWWDIR%%/apps/files_versions/l10n/sq.js -%%WWWDIR%%/apps/files_versions/l10n/sq.json -%%WWWDIR%%/apps/files_versions/l10n/sr.js -%%WWWDIR%%/apps/files_versions/l10n/sr.json -%%WWWDIR%%/apps/files_versions/l10n/sr@latin.js -%%WWWDIR%%/apps/files_versions/l10n/sr@latin.json -%%WWWDIR%%/apps/files_versions/l10n/sv.js -%%WWWDIR%%/apps/files_versions/l10n/sv.json -%%WWWDIR%%/apps/files_versions/l10n/ta_LK.js -%%WWWDIR%%/apps/files_versions/l10n/ta_LK.json -%%WWWDIR%%/apps/files_versions/l10n/th.js -%%WWWDIR%%/apps/files_versions/l10n/th.json -%%WWWDIR%%/apps/files_versions/l10n/th_TH.js -%%WWWDIR%%/apps/files_versions/l10n/th_TH.json -%%WWWDIR%%/apps/files_versions/l10n/tr.js -%%WWWDIR%%/apps/files_versions/l10n/tr.json -%%WWWDIR%%/apps/files_versions/l10n/ug.js -%%WWWDIR%%/apps/files_versions/l10n/ug.json -%%WWWDIR%%/apps/files_versions/l10n/uk.js -%%WWWDIR%%/apps/files_versions/l10n/uk.json -%%WWWDIR%%/apps/files_versions/l10n/ur_PK.js -%%WWWDIR%%/apps/files_versions/l10n/ur_PK.json -%%WWWDIR%%/apps/files_versions/l10n/vi.js -%%WWWDIR%%/apps/files_versions/l10n/vi.json -%%WWWDIR%%/apps/files_versions/l10n/zh_CN.js -%%WWWDIR%%/apps/files_versions/l10n/zh_CN.json -%%WWWDIR%%/apps/files_versions/l10n/zh_HK.js -%%WWWDIR%%/apps/files_versions/l10n/zh_HK.json -%%WWWDIR%%/apps/files_versions/l10n/zh_TW.js -%%WWWDIR%%/apps/files_versions/l10n/zh_TW.json -%%WWWDIR%%/apps/files_versions/lib/AppInfo/Application.php -%%WWWDIR%%/apps/files_versions/lib/BackgroundJob/ExpireVersions.php -%%WWWDIR%%/apps/files_versions/lib/Capabilities.php -%%WWWDIR%%/apps/files_versions/lib/Command/CleanUp.php -%%WWWDIR%%/apps/files_versions/lib/Command/Expire.php -%%WWWDIR%%/apps/files_versions/lib/Command/ExpireVersions.php -%%WWWDIR%%/apps/files_versions/lib/Controller/PreviewController.php -%%WWWDIR%%/apps/files_versions/lib/Events/CreateVersionEvent.php -%%WWWDIR%%/apps/files_versions/lib/Expiration.php -%%WWWDIR%%/apps/files_versions/lib/Hooks.php -%%WWWDIR%%/apps/files_versions/lib/Storage.php -%%WWWDIR%%/apps/files_videoplayer/appinfo/app.php -%%WWWDIR%%/apps/files_videoplayer/appinfo/info.xml -%%WWWDIR%%/apps/files_videoplayer/appinfo/signature.json -%%WWWDIR%%/apps/files_videoplayer/css/style.css -%%WWWDIR%%/apps/files_videoplayer/img/app.svg -%%WWWDIR%%/apps/files_videoplayer/img/poster.png -%%WWWDIR%%/apps/files_videoplayer/img/vjs-volume-bar.png -%%WWWDIR%%/apps/files_videoplayer/img/vjs-volume-level.png -%%WWWDIR%%/apps/files_videoplayer/js/viewer.js -%%WWWDIR%%/apps/files_videoplayer/screenshot.jpg -%%WWWDIR%%/apps/files_videoplayer/videojs/src/font/vjs.eot -%%WWWDIR%%/apps/files_videoplayer/videojs/src/font/vjs.svg -%%WWWDIR%%/apps/files_videoplayer/videojs/src/font/vjs.ttf -%%WWWDIR%%/apps/files_videoplayer/videojs/src/font/vjs.woff -%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/ar.js -%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/bg.js -%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/ca.js -%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/cs.js -%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/de.js -%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/es.js -%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/fr.js -%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/hu.js -%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/it.js -%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/ja.js -%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/ko.js -%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/nl.js -%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/pt-BR.js -%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/ru.js -%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/tr.js -%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/uk.js -%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/vi.js -%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/zh-CN.js -%%WWWDIR%%/apps/files_videoplayer/videojs/src/lang/zh-TW.js -%%WWWDIR%%/apps/files_videoplayer/videojs/src/video-js.css -%%WWWDIR%%/apps/files_videoplayer/videojs/src/video.js -%%WWWDIR%%/apps/firstrunwizard/.github/contributing.md -%%WWWDIR%%/apps/firstrunwizard/.github/issue_template.md -%%WWWDIR%%/apps/firstrunwizard/appinfo/app.php -%%WWWDIR%%/apps/firstrunwizard/appinfo/info.xml -%%WWWDIR%%/apps/firstrunwizard/appinfo/routes.php -%%WWWDIR%%/apps/firstrunwizard/appinfo/signature.json -%%WWWDIR%%/apps/firstrunwizard/css/colorbox.css -%%WWWDIR%%/apps/firstrunwizard/css/firstrunwizard.css -%%WWWDIR%%/apps/firstrunwizard/img/app.svg -%%WWWDIR%%/apps/firstrunwizard/js/activate.js -%%WWWDIR%%/apps/firstrunwizard/js/firstrunwizard.js -%%WWWDIR%%/apps/firstrunwizard/js/jquery.colorbox.js -%%WWWDIR%%/apps/firstrunwizard/l10n/.gitignore -%%WWWDIR%%/apps/firstrunwizard/l10n/.tx/config -%%WWWDIR%%/apps/firstrunwizard/l10n/ar.js -%%WWWDIR%%/apps/firstrunwizard/l10n/ar.json -%%WWWDIR%%/apps/firstrunwizard/l10n/ast.js -%%WWWDIR%%/apps/firstrunwizard/l10n/ast.json -%%WWWDIR%%/apps/firstrunwizard/l10n/az.js -%%WWWDIR%%/apps/firstrunwizard/l10n/az.json -%%WWWDIR%%/apps/firstrunwizard/l10n/bg.js -%%WWWDIR%%/apps/firstrunwizard/l10n/bg.json -%%WWWDIR%%/apps/firstrunwizard/l10n/bn_BD.js -%%WWWDIR%%/apps/firstrunwizard/l10n/bn_BD.json -%%WWWDIR%%/apps/firstrunwizard/l10n/bn_IN.php -%%WWWDIR%%/apps/firstrunwizard/l10n/ca.js -%%WWWDIR%%/apps/firstrunwizard/l10n/ca.json -%%WWWDIR%%/apps/firstrunwizard/l10n/cs.js -%%WWWDIR%%/apps/firstrunwizard/l10n/cs.json -%%WWWDIR%%/apps/firstrunwizard/l10n/cy_GB.php -%%WWWDIR%%/apps/firstrunwizard/l10n/da.js -%%WWWDIR%%/apps/firstrunwizard/l10n/da.json -%%WWWDIR%%/apps/firstrunwizard/l10n/de.js -%%WWWDIR%%/apps/firstrunwizard/l10n/de.json -%%WWWDIR%%/apps/firstrunwizard/l10n/de_CH.php -%%WWWDIR%%/apps/firstrunwizard/l10n/de_DE.js -%%WWWDIR%%/apps/firstrunwizard/l10n/de_DE.json -%%WWWDIR%%/apps/firstrunwizard/l10n/el.js -%%WWWDIR%%/apps/firstrunwizard/l10n/el.json -%%WWWDIR%%/apps/firstrunwizard/l10n/en_GB.js -%%WWWDIR%%/apps/firstrunwizard/l10n/en_GB.json -%%WWWDIR%%/apps/firstrunwizard/l10n/eo.js -%%WWWDIR%%/apps/firstrunwizard/l10n/eo.json -%%WWWDIR%%/apps/firstrunwizard/l10n/es.js -%%WWWDIR%%/apps/firstrunwizard/l10n/es.json -%%WWWDIR%%/apps/firstrunwizard/l10n/es_419.js -%%WWWDIR%%/apps/firstrunwizard/l10n/es_419.json -%%WWWDIR%%/apps/firstrunwizard/l10n/es_AR.js -%%WWWDIR%%/apps/firstrunwizard/l10n/es_AR.json -%%WWWDIR%%/apps/firstrunwizard/l10n/es_CL.js -%%WWWDIR%%/apps/firstrunwizard/l10n/es_CL.json -%%WWWDIR%%/apps/firstrunwizard/l10n/es_CO.js -%%WWWDIR%%/apps/firstrunwizard/l10n/es_CO.json -%%WWWDIR%%/apps/firstrunwizard/l10n/es_CR.js -%%WWWDIR%%/apps/firstrunwizard/l10n/es_CR.json -%%WWWDIR%%/apps/firstrunwizard/l10n/es_DO.js -%%WWWDIR%%/apps/firstrunwizard/l10n/es_DO.json -%%WWWDIR%%/apps/firstrunwizard/l10n/es_EC.js -%%WWWDIR%%/apps/firstrunwizard/l10n/es_EC.json -%%WWWDIR%%/apps/firstrunwizard/l10n/es_GT.js -%%WWWDIR%%/apps/firstrunwizard/l10n/es_GT.json -%%WWWDIR%%/apps/firstrunwizard/l10n/es_HN.js -%%WWWDIR%%/apps/firstrunwizard/l10n/es_HN.json -%%WWWDIR%%/apps/firstrunwizard/l10n/es_MX.js -%%WWWDIR%%/apps/firstrunwizard/l10n/es_MX.json -%%WWWDIR%%/apps/firstrunwizard/l10n/es_NI.js -%%WWWDIR%%/apps/firstrunwizard/l10n/es_NI.json -%%WWWDIR%%/apps/firstrunwizard/l10n/es_PA.js -%%WWWDIR%%/apps/firstrunwizard/l10n/es_PA.json -%%WWWDIR%%/apps/firstrunwizard/l10n/es_PE.js -%%WWWDIR%%/apps/firstrunwizard/l10n/es_PE.json -%%WWWDIR%%/apps/firstrunwizard/l10n/es_PR.js -%%WWWDIR%%/apps/firstrunwizard/l10n/es_PR.json -%%WWWDIR%%/apps/firstrunwizard/l10n/es_PY.js -%%WWWDIR%%/apps/firstrunwizard/l10n/es_PY.json -%%WWWDIR%%/apps/firstrunwizard/l10n/es_SV.js -%%WWWDIR%%/apps/firstrunwizard/l10n/es_SV.json -%%WWWDIR%%/apps/firstrunwizard/l10n/es_UY.js -%%WWWDIR%%/apps/firstrunwizard/l10n/es_UY.json -%%WWWDIR%%/apps/firstrunwizard/l10n/et_EE.js -%%WWWDIR%%/apps/firstrunwizard/l10n/et_EE.json -%%WWWDIR%%/apps/firstrunwizard/l10n/eu.js -%%WWWDIR%%/apps/firstrunwizard/l10n/eu.json -%%WWWDIR%%/apps/firstrunwizard/l10n/fa.js -%%WWWDIR%%/apps/firstrunwizard/l10n/fa.json -%%WWWDIR%%/apps/firstrunwizard/l10n/fi.js -%%WWWDIR%%/apps/firstrunwizard/l10n/fi.json -%%WWWDIR%%/apps/firstrunwizard/l10n/fr.js -%%WWWDIR%%/apps/firstrunwizard/l10n/fr.json -%%WWWDIR%%/apps/firstrunwizard/l10n/he.js -%%WWWDIR%%/apps/firstrunwizard/l10n/he.json -%%WWWDIR%%/apps/firstrunwizard/l10n/hr.js -%%WWWDIR%%/apps/firstrunwizard/l10n/hr.json -%%WWWDIR%%/apps/firstrunwizard/l10n/hu.js -%%WWWDIR%%/apps/firstrunwizard/l10n/hu.json -%%WWWDIR%%/apps/firstrunwizard/l10n/ia.js -%%WWWDIR%%/apps/firstrunwizard/l10n/ia.json -%%WWWDIR%%/apps/firstrunwizard/l10n/id.js -%%WWWDIR%%/apps/firstrunwizard/l10n/id.json -%%WWWDIR%%/apps/firstrunwizard/l10n/is.js -%%WWWDIR%%/apps/firstrunwizard/l10n/is.json -%%WWWDIR%%/apps/firstrunwizard/l10n/it.js -%%WWWDIR%%/apps/firstrunwizard/l10n/it.json -%%WWWDIR%%/apps/firstrunwizard/l10n/ja.js -%%WWWDIR%%/apps/firstrunwizard/l10n/ja.json -%%WWWDIR%%/apps/firstrunwizard/l10n/ka_GE.js -%%WWWDIR%%/apps/firstrunwizard/l10n/ka_GE.json -%%WWWDIR%%/apps/firstrunwizard/l10n/km.php -%%WWWDIR%%/apps/firstrunwizard/l10n/ko.js -%%WWWDIR%%/apps/firstrunwizard/l10n/ko.json -%%WWWDIR%%/apps/firstrunwizard/l10n/ku_IQ.php -%%WWWDIR%%/apps/firstrunwizard/l10n/lt_LT.js -%%WWWDIR%%/apps/firstrunwizard/l10n/lt_LT.json -%%WWWDIR%%/apps/firstrunwizard/l10n/lv.js -%%WWWDIR%%/apps/firstrunwizard/l10n/lv.json -%%WWWDIR%%/apps/firstrunwizard/l10n/ms_MY.php -%%WWWDIR%%/apps/firstrunwizard/l10n/nb.js -%%WWWDIR%%/apps/firstrunwizard/l10n/nb.json -%%WWWDIR%%/apps/firstrunwizard/l10n/nl.js -%%WWWDIR%%/apps/firstrunwizard/l10n/nl.json -%%WWWDIR%%/apps/firstrunwizard/l10n/oc.js -%%WWWDIR%%/apps/firstrunwizard/l10n/oc.json -%%WWWDIR%%/apps/firstrunwizard/l10n/pl.js -%%WWWDIR%%/apps/firstrunwizard/l10n/pl.json -%%WWWDIR%%/apps/firstrunwizard/l10n/pt_BR.js -%%WWWDIR%%/apps/firstrunwizard/l10n/pt_BR.json -%%WWWDIR%%/apps/firstrunwizard/l10n/pt_PT.js -%%WWWDIR%%/apps/firstrunwizard/l10n/pt_PT.json -%%WWWDIR%%/apps/firstrunwizard/l10n/ro.js -%%WWWDIR%%/apps/firstrunwizard/l10n/ro.json -%%WWWDIR%%/apps/firstrunwizard/l10n/ru.js -%%WWWDIR%%/apps/firstrunwizard/l10n/ru.json -%%WWWDIR%%/apps/firstrunwizard/l10n/si_LK.php -%%WWWDIR%%/apps/firstrunwizard/l10n/sk.js -%%WWWDIR%%/apps/firstrunwizard/l10n/sk.json -%%WWWDIR%%/apps/firstrunwizard/l10n/sl.js -%%WWWDIR%%/apps/firstrunwizard/l10n/sl.json -%%WWWDIR%%/apps/firstrunwizard/l10n/sq.js -%%WWWDIR%%/apps/firstrunwizard/l10n/sq.json -%%WWWDIR%%/apps/firstrunwizard/l10n/sr.js -%%WWWDIR%%/apps/firstrunwizard/l10n/sr.json -%%WWWDIR%%/apps/firstrunwizard/l10n/sv.js -%%WWWDIR%%/apps/firstrunwizard/l10n/sv.json -%%WWWDIR%%/apps/firstrunwizard/l10n/ta_LK.php -%%WWWDIR%%/apps/firstrunwizard/l10n/te.php -%%WWWDIR%%/apps/firstrunwizard/l10n/th.js -%%WWWDIR%%/apps/firstrunwizard/l10n/th.json -%%WWWDIR%%/apps/firstrunwizard/l10n/tr.js -%%WWWDIR%%/apps/firstrunwizard/l10n/tr.json -%%WWWDIR%%/apps/firstrunwizard/l10n/ug.php -%%WWWDIR%%/apps/firstrunwizard/l10n/uk.js -%%WWWDIR%%/apps/firstrunwizard/l10n/uk.json -%%WWWDIR%%/apps/firstrunwizard/l10n/zh_CN.js -%%WWWDIR%%/apps/firstrunwizard/l10n/zh_CN.json -%%WWWDIR%%/apps/firstrunwizard/l10n/zh_HK.php -%%WWWDIR%%/apps/firstrunwizard/l10n/zh_TW.js -%%WWWDIR%%/apps/firstrunwizard/l10n/zh_TW.json -%%WWWDIR%%/apps/firstrunwizard/lib/AppInfo/Application.php -%%WWWDIR%%/apps/firstrunwizard/lib/Controller/WizardController.php -%%WWWDIR%%/apps/firstrunwizard/lib/Notification/BackgroundJob.php -%%WWWDIR%%/apps/firstrunwizard/lib/Notification/Notifier.php -%%WWWDIR%%/apps/firstrunwizard/lib/Settings/Personal.php -%%WWWDIR%%/apps/firstrunwizard/templates/personal-settings.php -%%WWWDIR%%/apps/firstrunwizard/templates/wizard.php -%%WWWDIR%%/apps/gallery/.github/issue_template.md -%%WWWDIR%%/apps/gallery/.github/pull_request_template.md -%%WWWDIR%%/apps/gallery/.gitmodules -%%WWWDIR%%/apps/gallery/AUTHORS.md -%%WWWDIR%%/apps/gallery/CHANGELOG.md -%%WWWDIR%%/apps/gallery/COPYING -%%WWWDIR%%/apps/gallery/appinfo/app.php -%%WWWDIR%%/apps/gallery/appinfo/info.xml -%%WWWDIR%%/apps/gallery/appinfo/routes.php -%%WWWDIR%%/apps/gallery/appinfo/signature.json -%%WWWDIR%%/apps/gallery/build/after_failure.sh -%%WWWDIR%%/apps/gallery/build/documentation/docpublisher.sh -%%WWWDIR%%/apps/gallery/build/documentation/index.html -%%WWWDIR%%/apps/gallery/build/documentation/reports/code coverage/index.html -%%WWWDIR%%/apps/gallery/build/documentation/reports/index.html -%%WWWDIR%%/apps/gallery/build/screenshots/Gallery.jpg -%%WWWDIR%%/apps/gallery/build/xdebug_install.sh -%%WWWDIR%%/apps/gallery/codeception.yml -%%WWWDIR%%/apps/gallery/composer.json -%%WWWDIR%%/apps/gallery/composer.lock -%%WWWDIR%%/apps/gallery/css/authenticate.css -%%WWWDIR%%/apps/gallery/css/error.css -%%WWWDIR%%/apps/gallery/css/gallerybutton.css -%%WWWDIR%%/apps/gallery/css/github-markdown.css -%%WWWDIR%%/apps/gallery/css/mobile.css -%%WWWDIR%%/apps/gallery/css/public.css -%%WWWDIR%%/apps/gallery/css/share.css -%%WWWDIR%%/apps/gallery/css/slideshow.css -%%WWWDIR%%/apps/gallery/css/styles.css -%%WWWDIR%%/apps/gallery/css/upload.css -%%WWWDIR%%/apps/gallery/documentation/developers.md -%%WWWDIR%%/apps/gallery/img/app.svg -%%WWWDIR%%/apps/gallery/img/dateasc.svg -%%WWWDIR%%/apps/gallery/img/datedes.svg -%%WWWDIR%%/apps/gallery/img/gallery-dark.svg -%%WWWDIR%%/apps/gallery/img/nameasc.svg -%%WWWDIR%%/apps/gallery/img/namedes.svg -%%WWWDIR%%/apps/gallery/js/.bowerrc -%%WWWDIR%%/apps/gallery/js/.jshintrc -%%WWWDIR%%/apps/gallery/js/app.js -%%WWWDIR%%/apps/gallery/js/bower.json -%%WWWDIR%%/apps/gallery/js/breadcrumb.js -%%WWWDIR%%/apps/gallery/js/eventsource.js -%%WWWDIR%%/apps/gallery/js/gallery.js -%%WWWDIR%%/apps/gallery/js/galleryalbum.js -%%WWWDIR%%/apps/gallery/js/gallerybutton.js -%%WWWDIR%%/apps/gallery/js/galleryconfig.js -%%WWWDIR%%/apps/gallery/js/galleryfileaction.js -%%WWWDIR%%/apps/gallery/js/galleryimage.js -%%WWWDIR%%/apps/gallery/js/galleryinfobox.js -%%WWWDIR%%/apps/gallery/js/galleryrow.js -%%WWWDIR%%/apps/gallery/js/galleryutility.js -%%WWWDIR%%/apps/gallery/js/galleryview.js -%%WWWDIR%%/apps/gallery/js/merged.json -%%WWWDIR%%/apps/gallery/js/newfilemenuplugins.js -%%WWWDIR%%/apps/gallery/js/scripts-for-file-app.json -%%WWWDIR%%/apps/gallery/js/slideshow.js -%%WWWDIR%%/apps/gallery/js/slideshowcontrols.js -%%WWWDIR%%/apps/gallery/js/slideshowzoomablepreview.js -%%WWWDIR%%/apps/gallery/js/thumbnail.js -%%WWWDIR%%/apps/gallery/js/upload-helper.js -%%WWWDIR%%/apps/gallery/js/vendor/bigshot/LICENSE.txt -%%WWWDIR%%/apps/gallery/js/vendor/bigshot/README.txt -%%WWWDIR%%/apps/gallery/js/vendor/bigshot/bigshot-compressed.js -%%WWWDIR%%/apps/gallery/js/vendor/bigshot/bigshot.js -%%WWWDIR%%/apps/gallery/js/vendor/commonmark/LICENSE -%%WWWDIR%%/apps/gallery/js/vendor/commonmark/dist/commonmark.js -%%WWWDIR%%/apps/gallery/js/vendor/commonmark/dist/commonmark.min.js -%%WWWDIR%%/apps/gallery/js/vendor/dompurify/LICENSE -%%WWWDIR%%/apps/gallery/js/vendor/dompurify/README.md -%%WWWDIR%%/apps/gallery/js/vendor/dompurify/src/purify.js -%%WWWDIR%%/apps/gallery/js/vendor/eventsource-polyfill/LICENSE -%%WWWDIR%%/apps/gallery/js/vendor/eventsource-polyfill/README.md -%%WWWDIR%%/apps/gallery/js/vendor/eventsource-polyfill/dist/eventsource.js -%%WWWDIR%%/apps/gallery/js/vendor/jquery-touch-events/README.md -%%WWWDIR%%/apps/gallery/js/vendor/jquery-touch-events/src/1.0.8/jquery.mobile-events.js -%%WWWDIR%%/apps/gallery/js/vendor/jquery-touch-events/src/1.0.8/jquery.mobile-events.min.js -%%WWWDIR%%/apps/gallery/js/vendor/jquery.ui.touch-punch-custom.js -%%WWWDIR%%/apps/gallery/js/vendor/jqueryui-touch-punch/README.md -%%WWWDIR%%/apps/gallery/js/vendor/jqueryui-touch-punch/jquery.ui.touch-punch.js -%%WWWDIR%%/apps/gallery/js/vendor/modified-eventsource-polyfill/eventsource-polyfill.js -%%WWWDIR%%/apps/gallery/js/vendor/nextcloud/newfilemenu.js -%%WWWDIR%%/apps/gallery/js/vendor/nextcloud/share.js -%%WWWDIR%%/apps/gallery/l10n/.tx/config -%%WWWDIR%%/apps/gallery/l10n/af_ZA.php -%%WWWDIR%%/apps/gallery/l10n/ar.js -%%WWWDIR%%/apps/gallery/l10n/ar.json -%%WWWDIR%%/apps/gallery/l10n/ast.js -%%WWWDIR%%/apps/gallery/l10n/ast.json -%%WWWDIR%%/apps/gallery/l10n/az.js -%%WWWDIR%%/apps/gallery/l10n/az.json -%%WWWDIR%%/apps/gallery/l10n/bg.js -%%WWWDIR%%/apps/gallery/l10n/bg.json -%%WWWDIR%%/apps/gallery/l10n/bn_BD.js -%%WWWDIR%%/apps/gallery/l10n/bn_BD.json -%%WWWDIR%%/apps/gallery/l10n/bn_IN.php -%%WWWDIR%%/apps/gallery/l10n/bs.js -%%WWWDIR%%/apps/gallery/l10n/bs.json -%%WWWDIR%%/apps/gallery/l10n/ca.js -%%WWWDIR%%/apps/gallery/l10n/ca.json -%%WWWDIR%%/apps/gallery/l10n/cs.js -%%WWWDIR%%/apps/gallery/l10n/cs.json -%%WWWDIR%%/apps/gallery/l10n/cy_GB.js -%%WWWDIR%%/apps/gallery/l10n/cy_GB.json -%%WWWDIR%%/apps/gallery/l10n/da.js -%%WWWDIR%%/apps/gallery/l10n/da.json -%%WWWDIR%%/apps/gallery/l10n/de.js -%%WWWDIR%%/apps/gallery/l10n/de.json -%%WWWDIR%%/apps/gallery/l10n/de_AT.php -%%WWWDIR%%/apps/gallery/l10n/de_CH.php -%%WWWDIR%%/apps/gallery/l10n/de_DE.js -%%WWWDIR%%/apps/gallery/l10n/de_DE.json -%%WWWDIR%%/apps/gallery/l10n/el.js -%%WWWDIR%%/apps/gallery/l10n/el.json -%%WWWDIR%%/apps/gallery/l10n/en_GB.js -%%WWWDIR%%/apps/gallery/l10n/en_GB.json -%%WWWDIR%%/apps/gallery/l10n/eo.js -%%WWWDIR%%/apps/gallery/l10n/eo.json -%%WWWDIR%%/apps/gallery/l10n/es.js -%%WWWDIR%%/apps/gallery/l10n/es.json -%%WWWDIR%%/apps/gallery/l10n/es_419.js -%%WWWDIR%%/apps/gallery/l10n/es_419.json -%%WWWDIR%%/apps/gallery/l10n/es_AR.js -%%WWWDIR%%/apps/gallery/l10n/es_AR.json -%%WWWDIR%%/apps/gallery/l10n/es_CL.js -%%WWWDIR%%/apps/gallery/l10n/es_CL.json -%%WWWDIR%%/apps/gallery/l10n/es_CO.js -%%WWWDIR%%/apps/gallery/l10n/es_CO.json -%%WWWDIR%%/apps/gallery/l10n/es_CR.js -%%WWWDIR%%/apps/gallery/l10n/es_CR.json -%%WWWDIR%%/apps/gallery/l10n/es_DO.js -%%WWWDIR%%/apps/gallery/l10n/es_DO.json -%%WWWDIR%%/apps/gallery/l10n/es_EC.js -%%WWWDIR%%/apps/gallery/l10n/es_EC.json -%%WWWDIR%%/apps/gallery/l10n/es_GT.js -%%WWWDIR%%/apps/gallery/l10n/es_GT.json -%%WWWDIR%%/apps/gallery/l10n/es_HN.js -%%WWWDIR%%/apps/gallery/l10n/es_HN.json -%%WWWDIR%%/apps/gallery/l10n/es_MX.js -%%WWWDIR%%/apps/gallery/l10n/es_MX.json -%%WWWDIR%%/apps/gallery/l10n/es_NI.js -%%WWWDIR%%/apps/gallery/l10n/es_NI.json -%%WWWDIR%%/apps/gallery/l10n/es_PA.js -%%WWWDIR%%/apps/gallery/l10n/es_PA.json -%%WWWDIR%%/apps/gallery/l10n/es_PE.js -%%WWWDIR%%/apps/gallery/l10n/es_PE.json -%%WWWDIR%%/apps/gallery/l10n/es_PR.js -%%WWWDIR%%/apps/gallery/l10n/es_PR.json -%%WWWDIR%%/apps/gallery/l10n/es_PY.js -%%WWWDIR%%/apps/gallery/l10n/es_PY.json -%%WWWDIR%%/apps/gallery/l10n/es_SV.js -%%WWWDIR%%/apps/gallery/l10n/es_SV.json -%%WWWDIR%%/apps/gallery/l10n/es_UY.js -%%WWWDIR%%/apps/gallery/l10n/es_UY.json -%%WWWDIR%%/apps/gallery/l10n/et_EE.js -%%WWWDIR%%/apps/gallery/l10n/et_EE.json -%%WWWDIR%%/apps/gallery/l10n/eu.js -%%WWWDIR%%/apps/gallery/l10n/eu.json -%%WWWDIR%%/apps/gallery/l10n/fa.js -%%WWWDIR%%/apps/gallery/l10n/fa.json -%%WWWDIR%%/apps/gallery/l10n/fi.js -%%WWWDIR%%/apps/gallery/l10n/fi.json -%%WWWDIR%%/apps/gallery/l10n/fr.js -%%WWWDIR%%/apps/gallery/l10n/fr.json -%%WWWDIR%%/apps/gallery/l10n/he.js -%%WWWDIR%%/apps/gallery/l10n/he.json -%%WWWDIR%%/apps/gallery/l10n/hi.php -%%WWWDIR%%/apps/gallery/l10n/hr.js -%%WWWDIR%%/apps/gallery/l10n/hr.json -%%WWWDIR%%/apps/gallery/l10n/hu.js -%%WWWDIR%%/apps/gallery/l10n/hu.json -%%WWWDIR%%/apps/gallery/l10n/ia.js -%%WWWDIR%%/apps/gallery/l10n/ia.json -%%WWWDIR%%/apps/gallery/l10n/id.js -%%WWWDIR%%/apps/gallery/l10n/id.json -%%WWWDIR%%/apps/gallery/l10n/is.js -%%WWWDIR%%/apps/gallery/l10n/is.json -%%WWWDIR%%/apps/gallery/l10n/it.js -%%WWWDIR%%/apps/gallery/l10n/it.json -%%WWWDIR%%/apps/gallery/l10n/ja.js -%%WWWDIR%%/apps/gallery/l10n/ja.json -%%WWWDIR%%/apps/gallery/l10n/ka_GE.js -%%WWWDIR%%/apps/gallery/l10n/ka_GE.json -%%WWWDIR%%/apps/gallery/l10n/km.js -%%WWWDIR%%/apps/gallery/l10n/km.json -%%WWWDIR%%/apps/gallery/l10n/kn.js -%%WWWDIR%%/apps/gallery/l10n/kn.json -%%WWWDIR%%/apps/gallery/l10n/ko.js -%%WWWDIR%%/apps/gallery/l10n/ko.json -%%WWWDIR%%/apps/gallery/l10n/ku_IQ.php -%%WWWDIR%%/apps/gallery/l10n/lb.js -%%WWWDIR%%/apps/gallery/l10n/lb.json -%%WWWDIR%%/apps/gallery/l10n/lt_LT.js -%%WWWDIR%%/apps/gallery/l10n/lt_LT.json -%%WWWDIR%%/apps/gallery/l10n/lv.js -%%WWWDIR%%/apps/gallery/l10n/lv.json -%%WWWDIR%%/apps/gallery/l10n/mk.js -%%WWWDIR%%/apps/gallery/l10n/mk.json -%%WWWDIR%%/apps/gallery/l10n/mn.js -%%WWWDIR%%/apps/gallery/l10n/mn.json -%%WWWDIR%%/apps/gallery/l10n/ms_MY.php -%%WWWDIR%%/apps/gallery/l10n/nb.js -%%WWWDIR%%/apps/gallery/l10n/nb.json -%%WWWDIR%%/apps/gallery/l10n/nl.js -%%WWWDIR%%/apps/gallery/l10n/nl.json -%%WWWDIR%%/apps/gallery/l10n/nn_NO.js -%%WWWDIR%%/apps/gallery/l10n/nn_NO.json -%%WWWDIR%%/apps/gallery/l10n/no-php -%%WWWDIR%%/apps/gallery/l10n/oc.js -%%WWWDIR%%/apps/gallery/l10n/oc.json -%%WWWDIR%%/apps/gallery/l10n/pa.php -%%WWWDIR%%/apps/gallery/l10n/pl.js -%%WWWDIR%%/apps/gallery/l10n/pl.json -%%WWWDIR%%/apps/gallery/l10n/pt_BR.js -%%WWWDIR%%/apps/gallery/l10n/pt_BR.json -%%WWWDIR%%/apps/gallery/l10n/pt_PT.js -%%WWWDIR%%/apps/gallery/l10n/pt_PT.json -%%WWWDIR%%/apps/gallery/l10n/ro.js -%%WWWDIR%%/apps/gallery/l10n/ro.json -%%WWWDIR%%/apps/gallery/l10n/ru.js -%%WWWDIR%%/apps/gallery/l10n/ru.json -%%WWWDIR%%/apps/gallery/l10n/si_LK.php -%%WWWDIR%%/apps/gallery/l10n/sk.js -%%WWWDIR%%/apps/gallery/l10n/sk.json -%%WWWDIR%%/apps/gallery/l10n/sl.js -%%WWWDIR%%/apps/gallery/l10n/sl.json -%%WWWDIR%%/apps/gallery/l10n/sq.js -%%WWWDIR%%/apps/gallery/l10n/sq.json -%%WWWDIR%%/apps/gallery/l10n/sr.js -%%WWWDIR%%/apps/gallery/l10n/sr.json -%%WWWDIR%%/apps/gallery/l10n/sr@latin.php -%%WWWDIR%%/apps/gallery/l10n/sv.js -%%WWWDIR%%/apps/gallery/l10n/sv.json -%%WWWDIR%%/apps/gallery/l10n/ta_LK.js -%%WWWDIR%%/apps/gallery/l10n/ta_LK.json -%%WWWDIR%%/apps/gallery/l10n/th.js -%%WWWDIR%%/apps/gallery/l10n/th.json -%%WWWDIR%%/apps/gallery/l10n/tr.js -%%WWWDIR%%/apps/gallery/l10n/tr.json -%%WWWDIR%%/apps/gallery/l10n/ug.php -%%WWWDIR%%/apps/gallery/l10n/uk.js -%%WWWDIR%%/apps/gallery/l10n/uk.json -%%WWWDIR%%/apps/gallery/l10n/ur_PK.js -%%WWWDIR%%/apps/gallery/l10n/ur_PK.json -%%WWWDIR%%/apps/gallery/l10n/vi.js -%%WWWDIR%%/apps/gallery/l10n/vi.json -%%WWWDIR%%/apps/gallery/l10n/zh_CN.js -%%WWWDIR%%/apps/gallery/l10n/zh_CN.json -%%WWWDIR%%/apps/gallery/l10n/zh_HK.js -%%WWWDIR%%/apps/gallery/l10n/zh_HK.json -%%WWWDIR%%/apps/gallery/l10n/zh_TW.js -%%WWWDIR%%/apps/gallery/l10n/zh_TW.json -%%WWWDIR%%/apps/gallery/lib/AppInfo/Application.php -%%WWWDIR%%/apps/gallery/lib/Config/ConfigException.php -%%WWWDIR%%/apps/gallery/lib/Config/ConfigParser.php -%%WWWDIR%%/apps/gallery/lib/Config/ConfigValidator.php -%%WWWDIR%%/apps/gallery/lib/Controller/Config.php -%%WWWDIR%%/apps/gallery/lib/Controller/ConfigApiController.php -%%WWWDIR%%/apps/gallery/lib/Controller/ConfigController.php -%%WWWDIR%%/apps/gallery/lib/Controller/ConfigPublicController.php -%%WWWDIR%%/apps/gallery/lib/Controller/Files.php -%%WWWDIR%%/apps/gallery/lib/Controller/FilesApiController.php -%%WWWDIR%%/apps/gallery/lib/Controller/FilesController.php -%%WWWDIR%%/apps/gallery/lib/Controller/FilesPublicController.php -%%WWWDIR%%/apps/gallery/lib/Controller/HttpError.php -%%WWWDIR%%/apps/gallery/lib/Controller/PageController.php -%%WWWDIR%%/apps/gallery/lib/Controller/PathManipulation.php -%%WWWDIR%%/apps/gallery/lib/Controller/Preview.php -%%WWWDIR%%/apps/gallery/lib/Controller/PreviewApiController.php -%%WWWDIR%%/apps/gallery/lib/Controller/PreviewController.php -%%WWWDIR%%/apps/gallery/lib/Controller/PreviewPublicController.php -%%WWWDIR%%/apps/gallery/lib/Environment/Environment.php -%%WWWDIR%%/apps/gallery/lib/Environment/EnvironmentException.php -%%WWWDIR%%/apps/gallery/lib/Environment/NotFoundEnvException.php -%%WWWDIR%%/apps/gallery/lib/Http/ImageResponse.php -%%WWWDIR%%/apps/gallery/lib/Middleware/CheckException.php -%%WWWDIR%%/apps/gallery/lib/Middleware/CheckMiddleware.php -%%WWWDIR%%/apps/gallery/lib/Middleware/EnvCheckMiddleware.php -%%WWWDIR%%/apps/gallery/lib/Middleware/SharingCheckMiddleware.php -%%WWWDIR%%/apps/gallery/lib/Service/Base64Encode.php -%%WWWDIR%%/apps/gallery/lib/Service/ConfigService.php -%%WWWDIR%%/apps/gallery/lib/Service/DownloadService.php -%%WWWDIR%%/apps/gallery/lib/Service/FilesService.php -%%WWWDIR%%/apps/gallery/lib/Service/ForbiddenServiceException.php -%%WWWDIR%%/apps/gallery/lib/Service/InternalServerErrorServiceException.php -%%WWWDIR%%/apps/gallery/lib/Service/NotFoundServiceException.php -%%WWWDIR%%/apps/gallery/lib/Service/PreviewService.php -%%WWWDIR%%/apps/gallery/lib/Service/SearchFolderService.php -%%WWWDIR%%/apps/gallery/lib/Service/SearchMediaService.php -%%WWWDIR%%/apps/gallery/lib/Service/Service.php -%%WWWDIR%%/apps/gallery/lib/Service/ServiceException.php -%%WWWDIR%%/apps/gallery/lib/Service/ThumbnailService.php -%%WWWDIR%%/apps/gallery/lib/Utility/EventSource.php -%%WWWDIR%%/apps/gallery/phpdoc.xml -%%WWWDIR%%/apps/gallery/templates/authenticate.php -%%WWWDIR%%/apps/gallery/templates/index.php -%%WWWDIR%%/apps/gallery/templates/part.content.php -%%WWWDIR%%/apps/gallery/templates/part.filenotfounderror.php -%%WWWDIR%%/apps/gallery/templates/part.internalservererror.php -%%WWWDIR%%/apps/gallery/templates/part.linkerror.php -%%WWWDIR%%/apps/gallery/templates/public.php -%%WWWDIR%%/apps/gallery/templates/slideshow.php -%%WWWDIR%%/apps/gallery/vendor/autoload.php -%%WWWDIR%%/apps/gallery/vendor/composer/ClassLoader.php -%%WWWDIR%%/apps/gallery/vendor/composer/LICENSE -%%WWWDIR%%/apps/gallery/vendor/composer/autoload_classmap.php -%%WWWDIR%%/apps/gallery/vendor/composer/autoload_namespaces.php -%%WWWDIR%%/apps/gallery/vendor/composer/autoload_psr4.php -%%WWWDIR%%/apps/gallery/vendor/composer/autoload_real.php -%%WWWDIR%%/apps/gallery/vendor/composer/autoload_static.php -%%WWWDIR%%/apps/gallery/vendor/composer/installed.json -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/.gitignore -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/CHANGELOG.md -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Dumper.php -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Escaper.php -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Exception/DumpException.php -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Exception/ExceptionInterface.php -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Exception/ParseException.php -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Exception/RuntimeException.php -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Inline.php -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/LICENSE -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Parser.php -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/README.md -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/DumperTest.php -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsAnchorAlias.yml -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsBasicTests.yml -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsBlockMapping.yml -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsDocumentSeparator.yml -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsErrorTests.yml -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsFlowCollections.yml -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsFoldedScalars.yml -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsNullsAndEmpties.yml -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsSpecificationExamples.yml -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsTypeTransfers.yml -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/embededPhp.yml -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/escapedCharacters.yml -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/index.yml -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/sfComments.yml -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/sfCompact.yml -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/sfMergeKey.yml -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/sfObjects.yml -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/sfQuotes.yml -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/sfTests.yml -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/Fixtures/unindentedCollections.yml -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/InlineTest.php -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/ParseExceptionTest.php -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/ParserTest.php -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Tests/YamlTest.php -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Unescaper.php -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/Yaml.php -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/composer.json -%%WWWDIR%%/apps/gallery/vendor/symfony/yaml/phpunit.xml.dist -%%WWWDIR%%/apps/logreader/.babelrc -%%WWWDIR%%/apps/logreader/.github/contributing.md -%%WWWDIR%%/apps/logreader/.github/issue_template.md -%%WWWDIR%%/apps/logreader/Makefile -%%WWWDIR%%/apps/logreader/appinfo/app.php -%%WWWDIR%%/apps/logreader/appinfo/info.xml -%%WWWDIR%%/apps/logreader/appinfo/routes.php -%%WWWDIR%%/apps/logreader/appinfo/signature.json -%%WWWDIR%%/apps/logreader/build/main.css -%%WWWDIR%%/apps/logreader/build/main.css.map -%%WWWDIR%%/apps/logreader/build/main.js -%%WWWDIR%%/apps/logreader/build/main.js.map -%%WWWDIR%%/apps/logreader/css/app.css -%%WWWDIR%%/apps/logreader/img/app-dark.svg -%%WWWDIR%%/apps/logreader/img/app.svg -%%WWWDIR%%/apps/logreader/js/App.js -%%WWWDIR%%/apps/logreader/js/Components/BackgroundException.js -%%WWWDIR%%/apps/logreader/js/Components/Exception.js -%%WWWDIR%%/apps/logreader/js/Components/Exception.less -%%WWWDIR%%/apps/logreader/js/Components/LevelSettings.js -%%WWWDIR%%/apps/logreader/js/Components/LevelSettings.less -%%WWWDIR%%/apps/logreader/js/Components/LogEntry.js -%%WWWDIR%%/apps/logreader/js/Components/LogLevel.js -%%WWWDIR%%/apps/logreader/js/Components/LogTable.js -%%WWWDIR%%/apps/logreader/js/Components/LogTable.less -%%WWWDIR%%/apps/logreader/js/Components/LogUploader.js -%%WWWDIR%%/apps/logreader/js/Components/LogUploader.less -%%WWWDIR%%/apps/logreader/js/Components/ToggleEntry.js -%%WWWDIR%%/apps/logreader/js/Components/ToggleEntry.less -%%WWWDIR%%/apps/logreader/js/Components/TraceLine.js -%%WWWDIR%%/apps/logreader/js/Components/TraceLine.less -%%WWWDIR%%/apps/logreader/js/DateFormatConverter.js -%%WWWDIR%%/apps/logreader/js/ExceptionParser.js -%%WWWDIR%%/apps/logreader/js/Providers/LogFile.js -%%WWWDIR%%/apps/logreader/js/Providers/LogProvider.js -%%WWWDIR%%/apps/logreader/js/Search.js -%%WWWDIR%%/apps/logreader/js/index.js -%%WWWDIR%%/apps/logreader/js/unserialize.js -%%WWWDIR%%/apps/logreader/l10n/.tx/config -%%WWWDIR%%/apps/logreader/l10n/ast.js -%%WWWDIR%%/apps/logreader/l10n/ast.json -%%WWWDIR%%/apps/logreader/l10n/ca.js -%%WWWDIR%%/apps/logreader/l10n/ca.json -%%WWWDIR%%/apps/logreader/l10n/cs.js -%%WWWDIR%%/apps/logreader/l10n/cs.json -%%WWWDIR%%/apps/logreader/l10n/da.js -%%WWWDIR%%/apps/logreader/l10n/da.json -%%WWWDIR%%/apps/logreader/l10n/de.js -%%WWWDIR%%/apps/logreader/l10n/de.json -%%WWWDIR%%/apps/logreader/l10n/de_DE.js -%%WWWDIR%%/apps/logreader/l10n/de_DE.json -%%WWWDIR%%/apps/logreader/l10n/el.js -%%WWWDIR%%/apps/logreader/l10n/el.json -%%WWWDIR%%/apps/logreader/l10n/en_GB.js -%%WWWDIR%%/apps/logreader/l10n/en_GB.json -%%WWWDIR%%/apps/logreader/l10n/es.js -%%WWWDIR%%/apps/logreader/l10n/es.json -%%WWWDIR%%/apps/logreader/l10n/es_419.js -%%WWWDIR%%/apps/logreader/l10n/es_419.json -%%WWWDIR%%/apps/logreader/l10n/es_CL.js -%%WWWDIR%%/apps/logreader/l10n/es_CL.json -%%WWWDIR%%/apps/logreader/l10n/es_CO.js -%%WWWDIR%%/apps/logreader/l10n/es_CO.json -%%WWWDIR%%/apps/logreader/l10n/es_CR.js -%%WWWDIR%%/apps/logreader/l10n/es_CR.json -%%WWWDIR%%/apps/logreader/l10n/es_DO.js -%%WWWDIR%%/apps/logreader/l10n/es_DO.json -%%WWWDIR%%/apps/logreader/l10n/es_EC.js -%%WWWDIR%%/apps/logreader/l10n/es_EC.json -%%WWWDIR%%/apps/logreader/l10n/es_GT.js -%%WWWDIR%%/apps/logreader/l10n/es_GT.json -%%WWWDIR%%/apps/logreader/l10n/es_HN.js -%%WWWDIR%%/apps/logreader/l10n/es_HN.json -%%WWWDIR%%/apps/logreader/l10n/es_MX.js -%%WWWDIR%%/apps/logreader/l10n/es_MX.json -%%WWWDIR%%/apps/logreader/l10n/es_NI.js -%%WWWDIR%%/apps/logreader/l10n/es_NI.json -%%WWWDIR%%/apps/logreader/l10n/es_PA.js -%%WWWDIR%%/apps/logreader/l10n/es_PA.json -%%WWWDIR%%/apps/logreader/l10n/es_PE.js -%%WWWDIR%%/apps/logreader/l10n/es_PE.json -%%WWWDIR%%/apps/logreader/l10n/es_PR.js -%%WWWDIR%%/apps/logreader/l10n/es_PR.json -%%WWWDIR%%/apps/logreader/l10n/es_PY.js -%%WWWDIR%%/apps/logreader/l10n/es_PY.json -%%WWWDIR%%/apps/logreader/l10n/es_SV.js -%%WWWDIR%%/apps/logreader/l10n/es_SV.json -%%WWWDIR%%/apps/logreader/l10n/es_UY.js -%%WWWDIR%%/apps/logreader/l10n/es_UY.json -%%WWWDIR%%/apps/logreader/l10n/et_EE.js -%%WWWDIR%%/apps/logreader/l10n/et_EE.json -%%WWWDIR%%/apps/logreader/l10n/eu.js -%%WWWDIR%%/apps/logreader/l10n/eu.json -%%WWWDIR%%/apps/logreader/l10n/fi.js -%%WWWDIR%%/apps/logreader/l10n/fi.json -%%WWWDIR%%/apps/logreader/l10n/fr.js -%%WWWDIR%%/apps/logreader/l10n/fr.json -%%WWWDIR%%/apps/logreader/l10n/hu.js -%%WWWDIR%%/apps/logreader/l10n/hu.json -%%WWWDIR%%/apps/logreader/l10n/is.js -%%WWWDIR%%/apps/logreader/l10n/is.json -%%WWWDIR%%/apps/logreader/l10n/it.js -%%WWWDIR%%/apps/logreader/l10n/it.json -%%WWWDIR%%/apps/logreader/l10n/ja.js -%%WWWDIR%%/apps/logreader/l10n/ja.json -%%WWWDIR%%/apps/logreader/l10n/ka_GE.js -%%WWWDIR%%/apps/logreader/l10n/ka_GE.json -%%WWWDIR%%/apps/logreader/l10n/ko.js -%%WWWDIR%%/apps/logreader/l10n/ko.json -%%WWWDIR%%/apps/logreader/l10n/lt_LT.js -%%WWWDIR%%/apps/logreader/l10n/lt_LT.json -%%WWWDIR%%/apps/logreader/l10n/lv.js -%%WWWDIR%%/apps/logreader/l10n/lv.json -%%WWWDIR%%/apps/logreader/l10n/nb.js -%%WWWDIR%%/apps/logreader/l10n/nb.json -%%WWWDIR%%/apps/logreader/l10n/nl.js -%%WWWDIR%%/apps/logreader/l10n/nl.json -%%WWWDIR%%/apps/logreader/l10n/pl.js -%%WWWDIR%%/apps/logreader/l10n/pl.json -%%WWWDIR%%/apps/logreader/l10n/pt_BR.js -%%WWWDIR%%/apps/logreader/l10n/pt_BR.json -%%WWWDIR%%/apps/logreader/l10n/ru.js -%%WWWDIR%%/apps/logreader/l10n/ru.json -%%WWWDIR%%/apps/logreader/l10n/sk.js -%%WWWDIR%%/apps/logreader/l10n/sk.json -%%WWWDIR%%/apps/logreader/l10n/sq.js -%%WWWDIR%%/apps/logreader/l10n/sq.json -%%WWWDIR%%/apps/logreader/l10n/sr.js -%%WWWDIR%%/apps/logreader/l10n/sr.json -%%WWWDIR%%/apps/logreader/l10n/sv.js -%%WWWDIR%%/apps/logreader/l10n/sv.json -%%WWWDIR%%/apps/logreader/l10n/tr.js -%%WWWDIR%%/apps/logreader/l10n/tr.json -%%WWWDIR%%/apps/logreader/l10n/zh_CN.js -%%WWWDIR%%/apps/logreader/l10n/zh_CN.json -%%WWWDIR%%/apps/logreader/l10n/zh_TW.js -%%WWWDIR%%/apps/logreader/l10n/zh_TW.json -%%WWWDIR%%/apps/logreader/lib/Controller/LogController.php -%%WWWDIR%%/apps/logreader/lib/Controller/PageController.php -%%WWWDIR%%/apps/logreader/lib/Log/LogIterator.php -%%WWWDIR%%/apps/logreader/lib/Log/SearchFilter.php -%%WWWDIR%%/apps/logreader/lib/Settings/Admin.php -%%WWWDIR%%/apps/logreader/lib/Settings/Section.php -%%WWWDIR%%/apps/logreader/package.json -%%WWWDIR%%/apps/logreader/screenshots/reader.png -%%WWWDIR%%/apps/logreader/templates/index.php -%%WWWDIR%%/apps/logreader/webpack/dev.config.js -%%WWWDIR%%/apps/logreader/webpack/prod.config.js -%%WWWDIR%%/apps/logreader/webpack/utils/notifyStats.js -%%WWWDIR%%/apps/logreader/webpack/utils/writeStats.js -%%WWWDIR%%/apps/logreader/webpack/webpack-dev-server.js -%%WWWDIR%%/apps/lookup_server_connector/appinfo/app.php -%%WWWDIR%%/apps/lookup_server_connector/appinfo/info.xml -%%WWWDIR%%/apps/lookup_server_connector/appinfo/signature.json -%%WWWDIR%%/apps/lookup_server_connector/composer/autoload.php -%%WWWDIR%%/apps/lookup_server_connector/composer/composer.json -%%WWWDIR%%/apps/lookup_server_connector/composer/composer/ClassLoader.php -%%WWWDIR%%/apps/lookup_server_connector/composer/composer/LICENSE -%%WWWDIR%%/apps/lookup_server_connector/composer/composer/autoload_classmap.php -%%WWWDIR%%/apps/lookup_server_connector/composer/composer/autoload_namespaces.php -%%WWWDIR%%/apps/lookup_server_connector/composer/composer/autoload_psr4.php -%%WWWDIR%%/apps/lookup_server_connector/composer/composer/autoload_real.php -%%WWWDIR%%/apps/lookup_server_connector/composer/composer/autoload_static.php -%%WWWDIR%%/apps/lookup_server_connector/lib/BackgroundJobs/RetryJob.php -%%WWWDIR%%/apps/lookup_server_connector/lib/UpdateLookupServer.php -%%WWWDIR%%/apps/nextcloud_announcements/.gitattributes -%%WWWDIR%%/apps/nextcloud_announcements/.github/contributing.md -%%WWWDIR%%/apps/nextcloud_announcements/.github/issue_template.md -%%WWWDIR%%/apps/nextcloud_announcements/COPYING -%%WWWDIR%%/apps/nextcloud_announcements/appinfo/app.php -%%WWWDIR%%/apps/nextcloud_announcements/appinfo/certificate.crt -%%WWWDIR%%/apps/nextcloud_announcements/appinfo/info.xml -%%WWWDIR%%/apps/nextcloud_announcements/appinfo/signature.json -%%WWWDIR%%/apps/nextcloud_announcements/img/app-dark.svg -%%WWWDIR%%/apps/nextcloud_announcements/img/app.svg -%%WWWDIR%%/apps/nextcloud_announcements/js/admin.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/.tx/config -%%WWWDIR%%/apps/nextcloud_announcements/l10n/af.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/af.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/ar.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/ar.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/ast.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/ast.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/bg.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/bg.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/ca.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/ca.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/cs.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/cs.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/da.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/da.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/de.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/de.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/de_DE.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/de_DE.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/el.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/el.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/en_GB.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/en_GB.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_419.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_419.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_AR.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_AR.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_CL.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_CL.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_CO.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_CO.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_CR.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_CR.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_DO.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_DO.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_EC.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_EC.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_GT.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_GT.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_HN.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_HN.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_MX.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_MX.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_NI.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_NI.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_PA.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_PA.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_PE.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_PE.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_PR.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_PR.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_PY.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_PY.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_SV.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_SV.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_UY.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_UY.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/et_EE.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/et_EE.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/eu.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/eu.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/fi.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/fi.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/fr.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/fr.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/gl.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/gl.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/hu.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/hu.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/ia.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/ia.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/id.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/id.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/is.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/is.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/it.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/it.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/ja.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/ja.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/ka_GE.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/ka_GE.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/ko.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/ko.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/lt_LT.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/lt_LT.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/lv.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/lv.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/nb.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/nb.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/nl.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/nl.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/pl.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/pl.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/pt_BR.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/pt_BR.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/pt_PT.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/pt_PT.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/ro.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/ro.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/ru.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/ru.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/sk.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/sk.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/sl.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/sl.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/sq.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/sq.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/sr.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/sr.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/sv.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/sv.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/tr.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/tr.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/vi.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/vi.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/zh_CN.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/zh_CN.json -%%WWWDIR%%/apps/nextcloud_announcements/l10n/zh_TW.js -%%WWWDIR%%/apps/nextcloud_announcements/l10n/zh_TW.json -%%WWWDIR%%/apps/nextcloud_announcements/lib/AppInfo/Application.php -%%WWWDIR%%/apps/nextcloud_announcements/lib/Cron/Crawler.php -%%WWWDIR%%/apps/nextcloud_announcements/lib/Notification/Notifier.php -%%WWWDIR%%/apps/nextcloud_announcements/lib/Settings/Admin.php -%%WWWDIR%%/apps/nextcloud_announcements/templates/admin.php -%%WWWDIR%%/apps/notifications/COPYING -%%WWWDIR%%/apps/notifications/appinfo/app.php -%%WWWDIR%%/apps/notifications/appinfo/database.xml -%%WWWDIR%%/apps/notifications/appinfo/info.xml -%%WWWDIR%%/apps/notifications/appinfo/routes.php -%%WWWDIR%%/apps/notifications/appinfo/signature.json -%%WWWDIR%%/apps/notifications/css/styles.css -%%WWWDIR%%/apps/notifications/docs/notification-workflow.md -%%WWWDIR%%/apps/notifications/docs/ocs-endpoint-v1.md -%%WWWDIR%%/apps/notifications/docs/ocs-endpoint-v2.md -%%WWWDIR%%/apps/notifications/docs/push-v2.md -%%WWWDIR%%/apps/notifications/docs/screenshot.png -%%WWWDIR%%/apps/notifications/img/notifications-new-dark.svg -%%WWWDIR%%/apps/notifications/img/notifications-new.png -%%WWWDIR%%/apps/notifications/img/notifications-new.svg -%%WWWDIR%%/apps/notifications/img/notifications.png -%%WWWDIR%%/apps/notifications/img/notifications.svg -%%WWWDIR%%/apps/notifications/js/app.js -%%WWWDIR%%/apps/notifications/js/merged.json -%%WWWDIR%%/apps/notifications/js/notification.js -%%WWWDIR%%/apps/notifications/js/richObjectStringParser.js -%%WWWDIR%%/apps/notifications/l10n/.tx/config -%%WWWDIR%%/apps/notifications/l10n/af.js -%%WWWDIR%%/apps/notifications/l10n/af.json -%%WWWDIR%%/apps/notifications/l10n/ar.js -%%WWWDIR%%/apps/notifications/l10n/ar.json -%%WWWDIR%%/apps/notifications/l10n/ast.js -%%WWWDIR%%/apps/notifications/l10n/ast.json -%%WWWDIR%%/apps/notifications/l10n/bg.js -%%WWWDIR%%/apps/notifications/l10n/bg.json -%%WWWDIR%%/apps/notifications/l10n/ca.js -%%WWWDIR%%/apps/notifications/l10n/ca.json -%%WWWDIR%%/apps/notifications/l10n/cs.js -%%WWWDIR%%/apps/notifications/l10n/cs.json -%%WWWDIR%%/apps/notifications/l10n/da.js -%%WWWDIR%%/apps/notifications/l10n/da.json -%%WWWDIR%%/apps/notifications/l10n/de.js -%%WWWDIR%%/apps/notifications/l10n/de.json -%%WWWDIR%%/apps/notifications/l10n/de_DE.js -%%WWWDIR%%/apps/notifications/l10n/de_DE.json -%%WWWDIR%%/apps/notifications/l10n/el.js -%%WWWDIR%%/apps/notifications/l10n/el.json -%%WWWDIR%%/apps/notifications/l10n/en_GB.js -%%WWWDIR%%/apps/notifications/l10n/en_GB.json -%%WWWDIR%%/apps/notifications/l10n/es.js -%%WWWDIR%%/apps/notifications/l10n/es.json -%%WWWDIR%%/apps/notifications/l10n/es_419.js -%%WWWDIR%%/apps/notifications/l10n/es_419.json -%%WWWDIR%%/apps/notifications/l10n/es_AR.js -%%WWWDIR%%/apps/notifications/l10n/es_AR.json -%%WWWDIR%%/apps/notifications/l10n/es_CL.js -%%WWWDIR%%/apps/notifications/l10n/es_CL.json -%%WWWDIR%%/apps/notifications/l10n/es_CO.js -%%WWWDIR%%/apps/notifications/l10n/es_CO.json -%%WWWDIR%%/apps/notifications/l10n/es_CR.js -%%WWWDIR%%/apps/notifications/l10n/es_CR.json -%%WWWDIR%%/apps/notifications/l10n/es_DO.js -%%WWWDIR%%/apps/notifications/l10n/es_DO.json -%%WWWDIR%%/apps/notifications/l10n/es_EC.js -%%WWWDIR%%/apps/notifications/l10n/es_EC.json -%%WWWDIR%%/apps/notifications/l10n/es_GT.js -%%WWWDIR%%/apps/notifications/l10n/es_GT.json -%%WWWDIR%%/apps/notifications/l10n/es_HN.js -%%WWWDIR%%/apps/notifications/l10n/es_HN.json -%%WWWDIR%%/apps/notifications/l10n/es_MX.js -%%WWWDIR%%/apps/notifications/l10n/es_MX.json -%%WWWDIR%%/apps/notifications/l10n/es_NI.js -%%WWWDIR%%/apps/notifications/l10n/es_NI.json -%%WWWDIR%%/apps/notifications/l10n/es_PA.js -%%WWWDIR%%/apps/notifications/l10n/es_PA.json -%%WWWDIR%%/apps/notifications/l10n/es_PE.js -%%WWWDIR%%/apps/notifications/l10n/es_PE.json -%%WWWDIR%%/apps/notifications/l10n/es_PR.js -%%WWWDIR%%/apps/notifications/l10n/es_PR.json -%%WWWDIR%%/apps/notifications/l10n/es_PY.js -%%WWWDIR%%/apps/notifications/l10n/es_PY.json -%%WWWDIR%%/apps/notifications/l10n/es_SV.js -%%WWWDIR%%/apps/notifications/l10n/es_SV.json -%%WWWDIR%%/apps/notifications/l10n/es_UY.js -%%WWWDIR%%/apps/notifications/l10n/es_UY.json -%%WWWDIR%%/apps/notifications/l10n/et_EE.js -%%WWWDIR%%/apps/notifications/l10n/et_EE.json -%%WWWDIR%%/apps/notifications/l10n/eu.js -%%WWWDIR%%/apps/notifications/l10n/eu.json -%%WWWDIR%%/apps/notifications/l10n/fi.js -%%WWWDIR%%/apps/notifications/l10n/fi.json -%%WWWDIR%%/apps/notifications/l10n/fr.js -%%WWWDIR%%/apps/notifications/l10n/fr.json -%%WWWDIR%%/apps/notifications/l10n/gl.js -%%WWWDIR%%/apps/notifications/l10n/gl.json -%%WWWDIR%%/apps/notifications/l10n/hu.js -%%WWWDIR%%/apps/notifications/l10n/hu.json -%%WWWDIR%%/apps/notifications/l10n/ia.js -%%WWWDIR%%/apps/notifications/l10n/ia.json -%%WWWDIR%%/apps/notifications/l10n/id.js -%%WWWDIR%%/apps/notifications/l10n/id.json -%%WWWDIR%%/apps/notifications/l10n/is.js -%%WWWDIR%%/apps/notifications/l10n/is.json -%%WWWDIR%%/apps/notifications/l10n/it.js -%%WWWDIR%%/apps/notifications/l10n/it.json -%%WWWDIR%%/apps/notifications/l10n/ja.js -%%WWWDIR%%/apps/notifications/l10n/ja.json -%%WWWDIR%%/apps/notifications/l10n/ka_GE.js -%%WWWDIR%%/apps/notifications/l10n/ka_GE.json -%%WWWDIR%%/apps/notifications/l10n/ko.js -%%WWWDIR%%/apps/notifications/l10n/ko.json -%%WWWDIR%%/apps/notifications/l10n/lt_LT.js -%%WWWDIR%%/apps/notifications/l10n/lt_LT.json -%%WWWDIR%%/apps/notifications/l10n/lv.js -%%WWWDIR%%/apps/notifications/l10n/lv.json -%%WWWDIR%%/apps/notifications/l10n/mn.js -%%WWWDIR%%/apps/notifications/l10n/mn.json -%%WWWDIR%%/apps/notifications/l10n/nb.js -%%WWWDIR%%/apps/notifications/l10n/nb.json -%%WWWDIR%%/apps/notifications/l10n/nl.js -%%WWWDIR%%/apps/notifications/l10n/nl.json -%%WWWDIR%%/apps/notifications/l10n/pl.js -%%WWWDIR%%/apps/notifications/l10n/pl.json -%%WWWDIR%%/apps/notifications/l10n/pt_BR.js -%%WWWDIR%%/apps/notifications/l10n/pt_BR.json -%%WWWDIR%%/apps/notifications/l10n/pt_PT.js -%%WWWDIR%%/apps/notifications/l10n/pt_PT.json -%%WWWDIR%%/apps/notifications/l10n/ro.js -%%WWWDIR%%/apps/notifications/l10n/ro.json -%%WWWDIR%%/apps/notifications/l10n/ru.js -%%WWWDIR%%/apps/notifications/l10n/ru.json -%%WWWDIR%%/apps/notifications/l10n/sk.js -%%WWWDIR%%/apps/notifications/l10n/sk.json -%%WWWDIR%%/apps/notifications/l10n/sl.js -%%WWWDIR%%/apps/notifications/l10n/sl.json -%%WWWDIR%%/apps/notifications/l10n/sq.js -%%WWWDIR%%/apps/notifications/l10n/sq.json -%%WWWDIR%%/apps/notifications/l10n/sr.js -%%WWWDIR%%/apps/notifications/l10n/sr.json -%%WWWDIR%%/apps/notifications/l10n/sv.js -%%WWWDIR%%/apps/notifications/l10n/sv.json -%%WWWDIR%%/apps/notifications/l10n/tr.js -%%WWWDIR%%/apps/notifications/l10n/tr.json -%%WWWDIR%%/apps/notifications/l10n/uk.js -%%WWWDIR%%/apps/notifications/l10n/uk.json -%%WWWDIR%%/apps/notifications/l10n/uz.js -%%WWWDIR%%/apps/notifications/l10n/uz.json -%%WWWDIR%%/apps/notifications/l10n/vi.js -%%WWWDIR%%/apps/notifications/l10n/vi.json -%%WWWDIR%%/apps/notifications/l10n/zh_CN.js -%%WWWDIR%%/apps/notifications/l10n/zh_CN.json -%%WWWDIR%%/apps/notifications/l10n/zh_TW.js -%%WWWDIR%%/apps/notifications/l10n/zh_TW.json -%%WWWDIR%%/apps/notifications/lib/App.php -%%WWWDIR%%/apps/notifications/lib/AppInfo/Application.php -%%WWWDIR%%/apps/notifications/lib/Capabilities.php -%%WWWDIR%%/apps/notifications/lib/Controller/EndpointController.php -%%WWWDIR%%/apps/notifications/lib/Controller/PushController.php -%%WWWDIR%%/apps/notifications/lib/Handler.php -%%WWWDIR%%/apps/notifications/lib/Push.php -%%WWWDIR%%/apps/oauth2/appinfo/database.xml -%%WWWDIR%%/apps/oauth2/appinfo/info.xml -%%WWWDIR%%/apps/oauth2/appinfo/routes.php -%%WWWDIR%%/apps/oauth2/appinfo/signature.json -%%WWWDIR%%/apps/oauth2/composer/autoload.php -%%WWWDIR%%/apps/oauth2/composer/composer.json -%%WWWDIR%%/apps/oauth2/composer/composer/ClassLoader.php -%%WWWDIR%%/apps/oauth2/composer/composer/LICENSE -%%WWWDIR%%/apps/oauth2/composer/composer/autoload_classmap.php -%%WWWDIR%%/apps/oauth2/composer/composer/autoload_namespaces.php -%%WWWDIR%%/apps/oauth2/composer/composer/autoload_psr4.php -%%WWWDIR%%/apps/oauth2/composer/composer/autoload_real.php -%%WWWDIR%%/apps/oauth2/composer/composer/autoload_static.php -%%WWWDIR%%/apps/oauth2/css/setting-admin.css -%%WWWDIR%%/apps/oauth2/js/setting-admin.js -%%WWWDIR%%/apps/oauth2/l10n/.gitkeep -%%WWWDIR%%/apps/oauth2/l10n/af.js -%%WWWDIR%%/apps/oauth2/l10n/af.json -%%WWWDIR%%/apps/oauth2/l10n/ar.js -%%WWWDIR%%/apps/oauth2/l10n/ar.json -%%WWWDIR%%/apps/oauth2/l10n/ast.js -%%WWWDIR%%/apps/oauth2/l10n/ast.json -%%WWWDIR%%/apps/oauth2/l10n/ca.js -%%WWWDIR%%/apps/oauth2/l10n/ca.json -%%WWWDIR%%/apps/oauth2/l10n/cs.js -%%WWWDIR%%/apps/oauth2/l10n/cs.json -%%WWWDIR%%/apps/oauth2/l10n/da.js -%%WWWDIR%%/apps/oauth2/l10n/da.json -%%WWWDIR%%/apps/oauth2/l10n/de.js -%%WWWDIR%%/apps/oauth2/l10n/de.json -%%WWWDIR%%/apps/oauth2/l10n/de_DE.js -%%WWWDIR%%/apps/oauth2/l10n/de_DE.json -%%WWWDIR%%/apps/oauth2/l10n/el.js -%%WWWDIR%%/apps/oauth2/l10n/el.json -%%WWWDIR%%/apps/oauth2/l10n/en_GB.js -%%WWWDIR%%/apps/oauth2/l10n/en_GB.json -%%WWWDIR%%/apps/oauth2/l10n/es.js -%%WWWDIR%%/apps/oauth2/l10n/es.json -%%WWWDIR%%/apps/oauth2/l10n/es_419.js -%%WWWDIR%%/apps/oauth2/l10n/es_419.json -%%WWWDIR%%/apps/oauth2/l10n/es_AR.js -%%WWWDIR%%/apps/oauth2/l10n/es_AR.json -%%WWWDIR%%/apps/oauth2/l10n/es_CL.js -%%WWWDIR%%/apps/oauth2/l10n/es_CL.json -%%WWWDIR%%/apps/oauth2/l10n/es_CO.js -%%WWWDIR%%/apps/oauth2/l10n/es_CO.json -%%WWWDIR%%/apps/oauth2/l10n/es_CR.js -%%WWWDIR%%/apps/oauth2/l10n/es_CR.json -%%WWWDIR%%/apps/oauth2/l10n/es_DO.js -%%WWWDIR%%/apps/oauth2/l10n/es_DO.json -%%WWWDIR%%/apps/oauth2/l10n/es_EC.js -%%WWWDIR%%/apps/oauth2/l10n/es_EC.json -%%WWWDIR%%/apps/oauth2/l10n/es_GT.js -%%WWWDIR%%/apps/oauth2/l10n/es_GT.json -%%WWWDIR%%/apps/oauth2/l10n/es_HN.js -%%WWWDIR%%/apps/oauth2/l10n/es_HN.json -%%WWWDIR%%/apps/oauth2/l10n/es_MX.js -%%WWWDIR%%/apps/oauth2/l10n/es_MX.json -%%WWWDIR%%/apps/oauth2/l10n/es_NI.js -%%WWWDIR%%/apps/oauth2/l10n/es_NI.json -%%WWWDIR%%/apps/oauth2/l10n/es_PA.js -%%WWWDIR%%/apps/oauth2/l10n/es_PA.json -%%WWWDIR%%/apps/oauth2/l10n/es_PE.js -%%WWWDIR%%/apps/oauth2/l10n/es_PE.json -%%WWWDIR%%/apps/oauth2/l10n/es_PR.js -%%WWWDIR%%/apps/oauth2/l10n/es_PR.json -%%WWWDIR%%/apps/oauth2/l10n/es_PY.js -%%WWWDIR%%/apps/oauth2/l10n/es_PY.json -%%WWWDIR%%/apps/oauth2/l10n/es_SV.js -%%WWWDIR%%/apps/oauth2/l10n/es_SV.json -%%WWWDIR%%/apps/oauth2/l10n/es_UY.js -%%WWWDIR%%/apps/oauth2/l10n/es_UY.json -%%WWWDIR%%/apps/oauth2/l10n/et_EE.js -%%WWWDIR%%/apps/oauth2/l10n/et_EE.json -%%WWWDIR%%/apps/oauth2/l10n/eu.js -%%WWWDIR%%/apps/oauth2/l10n/eu.json -%%WWWDIR%%/apps/oauth2/l10n/fi.js -%%WWWDIR%%/apps/oauth2/l10n/fi.json -%%WWWDIR%%/apps/oauth2/l10n/fr.js -%%WWWDIR%%/apps/oauth2/l10n/fr.json -%%WWWDIR%%/apps/oauth2/l10n/gl.js -%%WWWDIR%%/apps/oauth2/l10n/gl.json -%%WWWDIR%%/apps/oauth2/l10n/hu.js -%%WWWDIR%%/apps/oauth2/l10n/hu.json -%%WWWDIR%%/apps/oauth2/l10n/id.js -%%WWWDIR%%/apps/oauth2/l10n/id.json -%%WWWDIR%%/apps/oauth2/l10n/is.js -%%WWWDIR%%/apps/oauth2/l10n/is.json -%%WWWDIR%%/apps/oauth2/l10n/it.js -%%WWWDIR%%/apps/oauth2/l10n/it.json -%%WWWDIR%%/apps/oauth2/l10n/ja.js -%%WWWDIR%%/apps/oauth2/l10n/ja.json -%%WWWDIR%%/apps/oauth2/l10n/ka_GE.js -%%WWWDIR%%/apps/oauth2/l10n/ka_GE.json -%%WWWDIR%%/apps/oauth2/l10n/ko.js -%%WWWDIR%%/apps/oauth2/l10n/ko.json -%%WWWDIR%%/apps/oauth2/l10n/lt_LT.js -%%WWWDIR%%/apps/oauth2/l10n/lt_LT.json -%%WWWDIR%%/apps/oauth2/l10n/lv.js -%%WWWDIR%%/apps/oauth2/l10n/lv.json -%%WWWDIR%%/apps/oauth2/l10n/nb.js -%%WWWDIR%%/apps/oauth2/l10n/nb.json -%%WWWDIR%%/apps/oauth2/l10n/nl.js -%%WWWDIR%%/apps/oauth2/l10n/nl.json -%%WWWDIR%%/apps/oauth2/l10n/pl.js -%%WWWDIR%%/apps/oauth2/l10n/pl.json -%%WWWDIR%%/apps/oauth2/l10n/pt_BR.js -%%WWWDIR%%/apps/oauth2/l10n/pt_BR.json -%%WWWDIR%%/apps/oauth2/l10n/ru.js -%%WWWDIR%%/apps/oauth2/l10n/ru.json -%%WWWDIR%%/apps/oauth2/l10n/sk.js -%%WWWDIR%%/apps/oauth2/l10n/sk.json -%%WWWDIR%%/apps/oauth2/l10n/sq.js -%%WWWDIR%%/apps/oauth2/l10n/sq.json -%%WWWDIR%%/apps/oauth2/l10n/sr.js -%%WWWDIR%%/apps/oauth2/l10n/sr.json -%%WWWDIR%%/apps/oauth2/l10n/sv.js -%%WWWDIR%%/apps/oauth2/l10n/sv.json -%%WWWDIR%%/apps/oauth2/l10n/tr.js -%%WWWDIR%%/apps/oauth2/l10n/tr.json -%%WWWDIR%%/apps/oauth2/l10n/vi.js -%%WWWDIR%%/apps/oauth2/l10n/vi.json -%%WWWDIR%%/apps/oauth2/l10n/zh_CN.js -%%WWWDIR%%/apps/oauth2/l10n/zh_CN.json -%%WWWDIR%%/apps/oauth2/l10n/zh_TW.js -%%WWWDIR%%/apps/oauth2/l10n/zh_TW.json -%%WWWDIR%%/apps/oauth2/lib/Controller/LoginRedirectorController.php -%%WWWDIR%%/apps/oauth2/lib/Controller/OauthApiController.php -%%WWWDIR%%/apps/oauth2/lib/Controller/SettingsController.php -%%WWWDIR%%/apps/oauth2/lib/Db/AccessToken.php -%%WWWDIR%%/apps/oauth2/lib/Db/AccessTokenMapper.php -%%WWWDIR%%/apps/oauth2/lib/Db/Client.php -%%WWWDIR%%/apps/oauth2/lib/Db/ClientMapper.php -%%WWWDIR%%/apps/oauth2/lib/Exceptions/AccessTokenNotFoundException.php -%%WWWDIR%%/apps/oauth2/lib/Exceptions/ClientNotFoundException.php -%%WWWDIR%%/apps/oauth2/lib/Settings/Admin.php -%%WWWDIR%%/apps/oauth2/templates/admin.php -%%WWWDIR%%/apps/password_policy/.github/contributing.md -%%WWWDIR%%/apps/password_policy/.github/issue_template.md -%%WWWDIR%%/apps/password_policy/LICENSE -%%WWWDIR%%/apps/password_policy/appinfo/app.php -%%WWWDIR%%/apps/password_policy/appinfo/info.xml -%%WWWDIR%%/apps/password_policy/appinfo/signature.json -%%WWWDIR%%/apps/password_policy/css/settings-admin.css -%%WWWDIR%%/apps/password_policy/img/app.svg -%%WWWDIR%%/apps/password_policy/js/settings-admin.js -%%WWWDIR%%/apps/password_policy/l10n/.tx/config -%%WWWDIR%%/apps/password_policy/l10n/af.js -%%WWWDIR%%/apps/password_policy/l10n/af.json -%%WWWDIR%%/apps/password_policy/l10n/ast.js -%%WWWDIR%%/apps/password_policy/l10n/ast.json -%%WWWDIR%%/apps/password_policy/l10n/bg.js -%%WWWDIR%%/apps/password_policy/l10n/bg.json -%%WWWDIR%%/apps/password_policy/l10n/ca.js -%%WWWDIR%%/apps/password_policy/l10n/ca.json -%%WWWDIR%%/apps/password_policy/l10n/cs.js -%%WWWDIR%%/apps/password_policy/l10n/cs.json -%%WWWDIR%%/apps/password_policy/l10n/da.js -%%WWWDIR%%/apps/password_policy/l10n/da.json -%%WWWDIR%%/apps/password_policy/l10n/de.js -%%WWWDIR%%/apps/password_policy/l10n/de.json -%%WWWDIR%%/apps/password_policy/l10n/de_DE.js -%%WWWDIR%%/apps/password_policy/l10n/de_DE.json -%%WWWDIR%%/apps/password_policy/l10n/el.js -%%WWWDIR%%/apps/password_policy/l10n/el.json -%%WWWDIR%%/apps/password_policy/l10n/en_GB.js -%%WWWDIR%%/apps/password_policy/l10n/en_GB.json -%%WWWDIR%%/apps/password_policy/l10n/es.js -%%WWWDIR%%/apps/password_policy/l10n/es.json -%%WWWDIR%%/apps/password_policy/l10n/es_419.js -%%WWWDIR%%/apps/password_policy/l10n/es_419.json -%%WWWDIR%%/apps/password_policy/l10n/es_AR.js -%%WWWDIR%%/apps/password_policy/l10n/es_AR.json -%%WWWDIR%%/apps/password_policy/l10n/es_CL.js -%%WWWDIR%%/apps/password_policy/l10n/es_CL.json -%%WWWDIR%%/apps/password_policy/l10n/es_CO.js -%%WWWDIR%%/apps/password_policy/l10n/es_CO.json -%%WWWDIR%%/apps/password_policy/l10n/es_CR.js -%%WWWDIR%%/apps/password_policy/l10n/es_CR.json -%%WWWDIR%%/apps/password_policy/l10n/es_DO.js -%%WWWDIR%%/apps/password_policy/l10n/es_DO.json -%%WWWDIR%%/apps/password_policy/l10n/es_EC.js -%%WWWDIR%%/apps/password_policy/l10n/es_EC.json -%%WWWDIR%%/apps/password_policy/l10n/es_GT.js -%%WWWDIR%%/apps/password_policy/l10n/es_GT.json -%%WWWDIR%%/apps/password_policy/l10n/es_HN.js -%%WWWDIR%%/apps/password_policy/l10n/es_HN.json -%%WWWDIR%%/apps/password_policy/l10n/es_MX.js -%%WWWDIR%%/apps/password_policy/l10n/es_MX.json -%%WWWDIR%%/apps/password_policy/l10n/es_NI.js -%%WWWDIR%%/apps/password_policy/l10n/es_NI.json -%%WWWDIR%%/apps/password_policy/l10n/es_PA.js -%%WWWDIR%%/apps/password_policy/l10n/es_PA.json -%%WWWDIR%%/apps/password_policy/l10n/es_PE.js -%%WWWDIR%%/apps/password_policy/l10n/es_PE.json -%%WWWDIR%%/apps/password_policy/l10n/es_PR.js -%%WWWDIR%%/apps/password_policy/l10n/es_PR.json -%%WWWDIR%%/apps/password_policy/l10n/es_PY.js -%%WWWDIR%%/apps/password_policy/l10n/es_PY.json -%%WWWDIR%%/apps/password_policy/l10n/es_SV.js -%%WWWDIR%%/apps/password_policy/l10n/es_SV.json -%%WWWDIR%%/apps/password_policy/l10n/es_UY.js -%%WWWDIR%%/apps/password_policy/l10n/es_UY.json -%%WWWDIR%%/apps/password_policy/l10n/et_EE.js -%%WWWDIR%%/apps/password_policy/l10n/et_EE.json -%%WWWDIR%%/apps/password_policy/l10n/eu.js -%%WWWDIR%%/apps/password_policy/l10n/eu.json -%%WWWDIR%%/apps/password_policy/l10n/fi.js -%%WWWDIR%%/apps/password_policy/l10n/fi.json -%%WWWDIR%%/apps/password_policy/l10n/fr.js -%%WWWDIR%%/apps/password_policy/l10n/fr.json -%%WWWDIR%%/apps/password_policy/l10n/gl.js -%%WWWDIR%%/apps/password_policy/l10n/gl.json -%%WWWDIR%%/apps/password_policy/l10n/hu.js -%%WWWDIR%%/apps/password_policy/l10n/hu.json -%%WWWDIR%%/apps/password_policy/l10n/ia.js -%%WWWDIR%%/apps/password_policy/l10n/ia.json -%%WWWDIR%%/apps/password_policy/l10n/id.js -%%WWWDIR%%/apps/password_policy/l10n/id.json -%%WWWDIR%%/apps/password_policy/l10n/is.js -%%WWWDIR%%/apps/password_policy/l10n/is.json -%%WWWDIR%%/apps/password_policy/l10n/it.js -%%WWWDIR%%/apps/password_policy/l10n/it.json -%%WWWDIR%%/apps/password_policy/l10n/ja.js -%%WWWDIR%%/apps/password_policy/l10n/ja.json -%%WWWDIR%%/apps/password_policy/l10n/ka_GE.js -%%WWWDIR%%/apps/password_policy/l10n/ka_GE.json -%%WWWDIR%%/apps/password_policy/l10n/ko.js -%%WWWDIR%%/apps/password_policy/l10n/ko.json -%%WWWDIR%%/apps/password_policy/l10n/lt_LT.js -%%WWWDIR%%/apps/password_policy/l10n/lt_LT.json -%%WWWDIR%%/apps/password_policy/l10n/lv.js -%%WWWDIR%%/apps/password_policy/l10n/lv.json -%%WWWDIR%%/apps/password_policy/l10n/mn.js -%%WWWDIR%%/apps/password_policy/l10n/mn.json -%%WWWDIR%%/apps/password_policy/l10n/nb.js -%%WWWDIR%%/apps/password_policy/l10n/nb.json -%%WWWDIR%%/apps/password_policy/l10n/nl.js -%%WWWDIR%%/apps/password_policy/l10n/nl.json -%%WWWDIR%%/apps/password_policy/l10n/pl.js -%%WWWDIR%%/apps/password_policy/l10n/pl.json -%%WWWDIR%%/apps/password_policy/l10n/pt_BR.js -%%WWWDIR%%/apps/password_policy/l10n/pt_BR.json -%%WWWDIR%%/apps/password_policy/l10n/ru.js -%%WWWDIR%%/apps/password_policy/l10n/ru.json -%%WWWDIR%%/apps/password_policy/l10n/sk.js -%%WWWDIR%%/apps/password_policy/l10n/sk.json -%%WWWDIR%%/apps/password_policy/l10n/sl.js -%%WWWDIR%%/apps/password_policy/l10n/sl.json -%%WWWDIR%%/apps/password_policy/l10n/sq.js -%%WWWDIR%%/apps/password_policy/l10n/sq.json -%%WWWDIR%%/apps/password_policy/l10n/sr.js -%%WWWDIR%%/apps/password_policy/l10n/sr.json -%%WWWDIR%%/apps/password_policy/l10n/sv.js -%%WWWDIR%%/apps/password_policy/l10n/sv.json -%%WWWDIR%%/apps/password_policy/l10n/tr.js -%%WWWDIR%%/apps/password_policy/l10n/tr.json -%%WWWDIR%%/apps/password_policy/l10n/zh_CN.js -%%WWWDIR%%/apps/password_policy/l10n/zh_CN.json -%%WWWDIR%%/apps/password_policy/l10n/zh_TW.js -%%WWWDIR%%/apps/password_policy/l10n/zh_TW.json -%%WWWDIR%%/apps/password_policy/lib/AppInfo/Application.php -%%WWWDIR%%/apps/password_policy/lib/Capabilities.php -%%WWWDIR%%/apps/password_policy/lib/PasswordPolicyConfig.php -%%WWWDIR%%/apps/password_policy/lib/PasswordValidator.php -%%WWWDIR%%/apps/password_policy/lib/Settings.php -%%WWWDIR%%/apps/password_policy/lists/README.md -%%WWWDIR%%/apps/password_policy/lists/converter.php -%%WWWDIR%%/apps/password_policy/lists/list-1.php -%%WWWDIR%%/apps/password_policy/lists/list-10.php -%%WWWDIR%%/apps/password_policy/lists/list-11.php -%%WWWDIR%%/apps/password_policy/lists/list-12.php -%%WWWDIR%%/apps/password_policy/lists/list-13.php -%%WWWDIR%%/apps/password_policy/lists/list-14.php -%%WWWDIR%%/apps/password_policy/lists/list-15.php -%%WWWDIR%%/apps/password_policy/lists/list-16.php -%%WWWDIR%%/apps/password_policy/lists/list-17.php -%%WWWDIR%%/apps/password_policy/lists/list-18.php -%%WWWDIR%%/apps/password_policy/lists/list-19.php -%%WWWDIR%%/apps/password_policy/lists/list-20.php -%%WWWDIR%%/apps/password_policy/lists/list-21.php -%%WWWDIR%%/apps/password_policy/lists/list-22.php -%%WWWDIR%%/apps/password_policy/lists/list-23.php -%%WWWDIR%%/apps/password_policy/lists/list-24.php -%%WWWDIR%%/apps/password_policy/lists/list-25.php -%%WWWDIR%%/apps/password_policy/lists/list-26.php -%%WWWDIR%%/apps/password_policy/lists/list-27.php -%%WWWDIR%%/apps/password_policy/lists/list-28.php -%%WWWDIR%%/apps/password_policy/lists/list-29.php -%%WWWDIR%%/apps/password_policy/lists/list-3.php -%%WWWDIR%%/apps/password_policy/lists/list-30.php -%%WWWDIR%%/apps/password_policy/lists/list-31.php -%%WWWDIR%%/apps/password_policy/lists/list-32.php -%%WWWDIR%%/apps/password_policy/lists/list-33.php -%%WWWDIR%%/apps/password_policy/lists/list-35.php -%%WWWDIR%%/apps/password_policy/lists/list-36.php -%%WWWDIR%%/apps/password_policy/lists/list-37.php -%%WWWDIR%%/apps/password_policy/lists/list-39.php -%%WWWDIR%%/apps/password_policy/lists/list-4.php -%%WWWDIR%%/apps/password_policy/lists/list-5.php -%%WWWDIR%%/apps/password_policy/lists/list-6.php -%%WWWDIR%%/apps/password_policy/lists/list-7.php -%%WWWDIR%%/apps/password_policy/lists/list-8.php -%%WWWDIR%%/apps/password_policy/lists/list-9.php -%%WWWDIR%%/apps/password_policy/templates/settings-admin.php -%%WWWDIR%%/apps/provisioning_api/appinfo/info.xml -%%WWWDIR%%/apps/provisioning_api/appinfo/routes.php -%%WWWDIR%%/apps/provisioning_api/appinfo/signature.json -%%WWWDIR%%/apps/provisioning_api/composer/autoload.php -%%WWWDIR%%/apps/provisioning_api/composer/composer.json -%%WWWDIR%%/apps/provisioning_api/composer/composer/ClassLoader.php -%%WWWDIR%%/apps/provisioning_api/composer/composer/LICENSE -%%WWWDIR%%/apps/provisioning_api/composer/composer/autoload_classmap.php -%%WWWDIR%%/apps/provisioning_api/composer/composer/autoload_namespaces.php -%%WWWDIR%%/apps/provisioning_api/composer/composer/autoload_psr4.php -%%WWWDIR%%/apps/provisioning_api/composer/composer/autoload_real.php -%%WWWDIR%%/apps/provisioning_api/composer/composer/autoload_static.php -%%WWWDIR%%/apps/provisioning_api/img/app.svg -%%WWWDIR%%/apps/provisioning_api/lib/AppInfo/Application.php -%%WWWDIR%%/apps/provisioning_api/lib/Controller/AppConfigController.php -%%WWWDIR%%/apps/provisioning_api/lib/Controller/AppsController.php -%%WWWDIR%%/apps/provisioning_api/lib/Controller/GroupsController.php -%%WWWDIR%%/apps/provisioning_api/lib/Controller/UsersController.php -%%WWWDIR%%/apps/provisioning_api/lib/Middleware/Exceptions/NotSubAdminException.php -%%WWWDIR%%/apps/provisioning_api/lib/Middleware/ProvisioningApiMiddleware.php -%%WWWDIR%%/apps/serverinfo/.github/contributing.md -%%WWWDIR%%/apps/serverinfo/.github/issue_template.md -%%WWWDIR%%/apps/serverinfo/AUTHORS.md -%%WWWDIR%%/apps/serverinfo/CHANGELOG.md -%%WWWDIR%%/apps/serverinfo/COPYING -%%WWWDIR%%/apps/serverinfo/appinfo/app.php -%%WWWDIR%%/apps/serverinfo/appinfo/info.xml -%%WWWDIR%%/apps/serverinfo/appinfo/routes.php -%%WWWDIR%%/apps/serverinfo/appinfo/signature.json -%%WWWDIR%%/apps/serverinfo/css/style.css -%%WWWDIR%%/apps/serverinfo/img/app-dark.svg -%%WWWDIR%%/apps/serverinfo/img/app.svg -%%WWWDIR%%/apps/serverinfo/js/Chart.min.js -%%WWWDIR%%/apps/serverinfo/js/script.js -%%WWWDIR%%/apps/serverinfo/js/smoothie.js -%%WWWDIR%%/apps/serverinfo/l10n/.tx/config -%%WWWDIR%%/apps/serverinfo/l10n/af.js -%%WWWDIR%%/apps/serverinfo/l10n/af.json -%%WWWDIR%%/apps/serverinfo/l10n/ar.js -%%WWWDIR%%/apps/serverinfo/l10n/ar.json -%%WWWDIR%%/apps/serverinfo/l10n/ast.js -%%WWWDIR%%/apps/serverinfo/l10n/ast.json -%%WWWDIR%%/apps/serverinfo/l10n/bg.js -%%WWWDIR%%/apps/serverinfo/l10n/bg.json -%%WWWDIR%%/apps/serverinfo/l10n/ca.js -%%WWWDIR%%/apps/serverinfo/l10n/ca.json -%%WWWDIR%%/apps/serverinfo/l10n/cs.js -%%WWWDIR%%/apps/serverinfo/l10n/cs.json -%%WWWDIR%%/apps/serverinfo/l10n/da.js -%%WWWDIR%%/apps/serverinfo/l10n/da.json -%%WWWDIR%%/apps/serverinfo/l10n/de.js -%%WWWDIR%%/apps/serverinfo/l10n/de.json -%%WWWDIR%%/apps/serverinfo/l10n/de_DE.js -%%WWWDIR%%/apps/serverinfo/l10n/de_DE.json -%%WWWDIR%%/apps/serverinfo/l10n/el.js -%%WWWDIR%%/apps/serverinfo/l10n/el.json -%%WWWDIR%%/apps/serverinfo/l10n/en_GB.js -%%WWWDIR%%/apps/serverinfo/l10n/en_GB.json -%%WWWDIR%%/apps/serverinfo/l10n/es.js -%%WWWDIR%%/apps/serverinfo/l10n/es.json -%%WWWDIR%%/apps/serverinfo/l10n/es_419.js -%%WWWDIR%%/apps/serverinfo/l10n/es_419.json -%%WWWDIR%%/apps/serverinfo/l10n/es_AR.js -%%WWWDIR%%/apps/serverinfo/l10n/es_AR.json -%%WWWDIR%%/apps/serverinfo/l10n/es_CL.js -%%WWWDIR%%/apps/serverinfo/l10n/es_CL.json -%%WWWDIR%%/apps/serverinfo/l10n/es_CO.js -%%WWWDIR%%/apps/serverinfo/l10n/es_CO.json -%%WWWDIR%%/apps/serverinfo/l10n/es_CR.js -%%WWWDIR%%/apps/serverinfo/l10n/es_CR.json -%%WWWDIR%%/apps/serverinfo/l10n/es_DO.js -%%WWWDIR%%/apps/serverinfo/l10n/es_DO.json -%%WWWDIR%%/apps/serverinfo/l10n/es_EC.js -%%WWWDIR%%/apps/serverinfo/l10n/es_EC.json -%%WWWDIR%%/apps/serverinfo/l10n/es_GT.js -%%WWWDIR%%/apps/serverinfo/l10n/es_GT.json -%%WWWDIR%%/apps/serverinfo/l10n/es_HN.js -%%WWWDIR%%/apps/serverinfo/l10n/es_HN.json -%%WWWDIR%%/apps/serverinfo/l10n/es_MX.js -%%WWWDIR%%/apps/serverinfo/l10n/es_MX.json -%%WWWDIR%%/apps/serverinfo/l10n/es_NI.js -%%WWWDIR%%/apps/serverinfo/l10n/es_NI.json -%%WWWDIR%%/apps/serverinfo/l10n/es_PA.js -%%WWWDIR%%/apps/serverinfo/l10n/es_PA.json -%%WWWDIR%%/apps/serverinfo/l10n/es_PE.js -%%WWWDIR%%/apps/serverinfo/l10n/es_PE.json -%%WWWDIR%%/apps/serverinfo/l10n/es_PR.js -%%WWWDIR%%/apps/serverinfo/l10n/es_PR.json -%%WWWDIR%%/apps/serverinfo/l10n/es_PY.js -%%WWWDIR%%/apps/serverinfo/l10n/es_PY.json -%%WWWDIR%%/apps/serverinfo/l10n/es_SV.js -%%WWWDIR%%/apps/serverinfo/l10n/es_SV.json -%%WWWDIR%%/apps/serverinfo/l10n/es_UY.js -%%WWWDIR%%/apps/serverinfo/l10n/es_UY.json -%%WWWDIR%%/apps/serverinfo/l10n/et_EE.js -%%WWWDIR%%/apps/serverinfo/l10n/et_EE.json -%%WWWDIR%%/apps/serverinfo/l10n/eu.js -%%WWWDIR%%/apps/serverinfo/l10n/eu.json -%%WWWDIR%%/apps/serverinfo/l10n/fi.js -%%WWWDIR%%/apps/serverinfo/l10n/fi.json -%%WWWDIR%%/apps/serverinfo/l10n/fr.js -%%WWWDIR%%/apps/serverinfo/l10n/fr.json -%%WWWDIR%%/apps/serverinfo/l10n/gl.js -%%WWWDIR%%/apps/serverinfo/l10n/gl.json -%%WWWDIR%%/apps/serverinfo/l10n/hu.js -%%WWWDIR%%/apps/serverinfo/l10n/hu.json -%%WWWDIR%%/apps/serverinfo/l10n/ia.js -%%WWWDIR%%/apps/serverinfo/l10n/ia.json -%%WWWDIR%%/apps/serverinfo/l10n/id.js -%%WWWDIR%%/apps/serverinfo/l10n/id.json -%%WWWDIR%%/apps/serverinfo/l10n/is.js -%%WWWDIR%%/apps/serverinfo/l10n/is.json -%%WWWDIR%%/apps/serverinfo/l10n/it.js -%%WWWDIR%%/apps/serverinfo/l10n/it.json -%%WWWDIR%%/apps/serverinfo/l10n/ja.js -%%WWWDIR%%/apps/serverinfo/l10n/ja.json -%%WWWDIR%%/apps/serverinfo/l10n/ka_GE.js -%%WWWDIR%%/apps/serverinfo/l10n/ka_GE.json -%%WWWDIR%%/apps/serverinfo/l10n/ko.js -%%WWWDIR%%/apps/serverinfo/l10n/ko.json -%%WWWDIR%%/apps/serverinfo/l10n/lt_LT.js -%%WWWDIR%%/apps/serverinfo/l10n/lt_LT.json -%%WWWDIR%%/apps/serverinfo/l10n/lv.js -%%WWWDIR%%/apps/serverinfo/l10n/lv.json -%%WWWDIR%%/apps/serverinfo/l10n/mn.js -%%WWWDIR%%/apps/serverinfo/l10n/mn.json -%%WWWDIR%%/apps/serverinfo/l10n/nb.js -%%WWWDIR%%/apps/serverinfo/l10n/nb.json -%%WWWDIR%%/apps/serverinfo/l10n/nl.js -%%WWWDIR%%/apps/serverinfo/l10n/nl.json -%%WWWDIR%%/apps/serverinfo/l10n/nn_NO.js -%%WWWDIR%%/apps/serverinfo/l10n/nn_NO.json -%%WWWDIR%%/apps/serverinfo/l10n/pl.js -%%WWWDIR%%/apps/serverinfo/l10n/pl.json -%%WWWDIR%%/apps/serverinfo/l10n/pt_BR.js -%%WWWDIR%%/apps/serverinfo/l10n/pt_BR.json -%%WWWDIR%%/apps/serverinfo/l10n/ru.js -%%WWWDIR%%/apps/serverinfo/l10n/ru.json -%%WWWDIR%%/apps/serverinfo/l10n/sk.js -%%WWWDIR%%/apps/serverinfo/l10n/sk.json -%%WWWDIR%%/apps/serverinfo/l10n/sl.js -%%WWWDIR%%/apps/serverinfo/l10n/sl.json -%%WWWDIR%%/apps/serverinfo/l10n/sq.js -%%WWWDIR%%/apps/serverinfo/l10n/sq.json -%%WWWDIR%%/apps/serverinfo/l10n/sr.js -%%WWWDIR%%/apps/serverinfo/l10n/sr.json -%%WWWDIR%%/apps/serverinfo/l10n/sv.js -%%WWWDIR%%/apps/serverinfo/l10n/sv.json -%%WWWDIR%%/apps/serverinfo/l10n/tr.js -%%WWWDIR%%/apps/serverinfo/l10n/tr.json -%%WWWDIR%%/apps/serverinfo/l10n/vi.js -%%WWWDIR%%/apps/serverinfo/l10n/vi.json -%%WWWDIR%%/apps/serverinfo/l10n/zh_CN.js -%%WWWDIR%%/apps/serverinfo/l10n/zh_CN.json -%%WWWDIR%%/apps/serverinfo/l10n/zh_TW.js -%%WWWDIR%%/apps/serverinfo/l10n/zh_TW.json -%%WWWDIR%%/apps/serverinfo/lib/Controller/ApiController.php -%%WWWDIR%%/apps/serverinfo/lib/Controller/PageController.php -%%WWWDIR%%/apps/serverinfo/lib/DatabaseStatistics.php -%%WWWDIR%%/apps/serverinfo/lib/PhpStatistics.php -%%WWWDIR%%/apps/serverinfo/lib/SessionStatistics.php -%%WWWDIR%%/apps/serverinfo/lib/Settings/AdminSection.php -%%WWWDIR%%/apps/serverinfo/lib/Settings/AdminSettings.php -%%WWWDIR%%/apps/serverinfo/lib/ShareStatistics.php -%%WWWDIR%%/apps/serverinfo/lib/StorageStatistics.php -%%WWWDIR%%/apps/serverinfo/lib/SystemStatistics.php -%%WWWDIR%%/apps/serverinfo/templates/settings-admin.php -%%WWWDIR%%/apps/sharebymail/appinfo/app.php -%%WWWDIR%%/apps/sharebymail/appinfo/info.xml -%%WWWDIR%%/apps/sharebymail/appinfo/signature.json -%%WWWDIR%%/apps/sharebymail/composer/autoload.php -%%WWWDIR%%/apps/sharebymail/composer/composer.json -%%WWWDIR%%/apps/sharebymail/composer/composer/ClassLoader.php -%%WWWDIR%%/apps/sharebymail/composer/composer/LICENSE -%%WWWDIR%%/apps/sharebymail/composer/composer/autoload_classmap.php -%%WWWDIR%%/apps/sharebymail/composer/composer/autoload_namespaces.php -%%WWWDIR%%/apps/sharebymail/composer/composer/autoload_psr4.php -%%WWWDIR%%/apps/sharebymail/composer/composer/autoload_real.php -%%WWWDIR%%/apps/sharebymail/composer/composer/autoload_static.php -%%WWWDIR%%/apps/sharebymail/css/settings-admin.css -%%WWWDIR%%/apps/sharebymail/img/app.svg -%%WWWDIR%%/apps/sharebymail/js/settings-admin.js -%%WWWDIR%%/apps/sharebymail/l10n/.gitkeep -%%WWWDIR%%/apps/sharebymail/l10n/ast.js -%%WWWDIR%%/apps/sharebymail/l10n/ast.json -%%WWWDIR%%/apps/sharebymail/l10n/ca.js -%%WWWDIR%%/apps/sharebymail/l10n/ca.json -%%WWWDIR%%/apps/sharebymail/l10n/cs.js -%%WWWDIR%%/apps/sharebymail/l10n/cs.json -%%WWWDIR%%/apps/sharebymail/l10n/cs_CZ.js -%%WWWDIR%%/apps/sharebymail/l10n/cs_CZ.json -%%WWWDIR%%/apps/sharebymail/l10n/da.js -%%WWWDIR%%/apps/sharebymail/l10n/da.json -%%WWWDIR%%/apps/sharebymail/l10n/de.js -%%WWWDIR%%/apps/sharebymail/l10n/de.json -%%WWWDIR%%/apps/sharebymail/l10n/de_DE.js -%%WWWDIR%%/apps/sharebymail/l10n/de_DE.json -%%WWWDIR%%/apps/sharebymail/l10n/el.js -%%WWWDIR%%/apps/sharebymail/l10n/el.json -%%WWWDIR%%/apps/sharebymail/l10n/en_GB.js -%%WWWDIR%%/apps/sharebymail/l10n/en_GB.json -%%WWWDIR%%/apps/sharebymail/l10n/es.js -%%WWWDIR%%/apps/sharebymail/l10n/es.json -%%WWWDIR%%/apps/sharebymail/l10n/es_419.js -%%WWWDIR%%/apps/sharebymail/l10n/es_419.json -%%WWWDIR%%/apps/sharebymail/l10n/es_AR.js -%%WWWDIR%%/apps/sharebymail/l10n/es_AR.json -%%WWWDIR%%/apps/sharebymail/l10n/es_CL.js -%%WWWDIR%%/apps/sharebymail/l10n/es_CL.json -%%WWWDIR%%/apps/sharebymail/l10n/es_CO.js -%%WWWDIR%%/apps/sharebymail/l10n/es_CO.json -%%WWWDIR%%/apps/sharebymail/l10n/es_CR.js -%%WWWDIR%%/apps/sharebymail/l10n/es_CR.json -%%WWWDIR%%/apps/sharebymail/l10n/es_DO.js -%%WWWDIR%%/apps/sharebymail/l10n/es_DO.json -%%WWWDIR%%/apps/sharebymail/l10n/es_EC.js -%%WWWDIR%%/apps/sharebymail/l10n/es_EC.json -%%WWWDIR%%/apps/sharebymail/l10n/es_GT.js -%%WWWDIR%%/apps/sharebymail/l10n/es_GT.json -%%WWWDIR%%/apps/sharebymail/l10n/es_HN.js -%%WWWDIR%%/apps/sharebymail/l10n/es_HN.json -%%WWWDIR%%/apps/sharebymail/l10n/es_MX.js -%%WWWDIR%%/apps/sharebymail/l10n/es_MX.json -%%WWWDIR%%/apps/sharebymail/l10n/es_NI.js -%%WWWDIR%%/apps/sharebymail/l10n/es_NI.json -%%WWWDIR%%/apps/sharebymail/l10n/es_PA.js -%%WWWDIR%%/apps/sharebymail/l10n/es_PA.json -%%WWWDIR%%/apps/sharebymail/l10n/es_PE.js -%%WWWDIR%%/apps/sharebymail/l10n/es_PE.json -%%WWWDIR%%/apps/sharebymail/l10n/es_PR.js -%%WWWDIR%%/apps/sharebymail/l10n/es_PR.json -%%WWWDIR%%/apps/sharebymail/l10n/es_PY.js -%%WWWDIR%%/apps/sharebymail/l10n/es_PY.json -%%WWWDIR%%/apps/sharebymail/l10n/es_SV.js -%%WWWDIR%%/apps/sharebymail/l10n/es_SV.json -%%WWWDIR%%/apps/sharebymail/l10n/es_UY.js -%%WWWDIR%%/apps/sharebymail/l10n/es_UY.json -%%WWWDIR%%/apps/sharebymail/l10n/fi.js -%%WWWDIR%%/apps/sharebymail/l10n/fi.json -%%WWWDIR%%/apps/sharebymail/l10n/fr.js -%%WWWDIR%%/apps/sharebymail/l10n/fr.json -%%WWWDIR%%/apps/sharebymail/l10n/gl.js -%%WWWDIR%%/apps/sharebymail/l10n/gl.json -%%WWWDIR%%/apps/sharebymail/l10n/hu.js -%%WWWDIR%%/apps/sharebymail/l10n/hu.json -%%WWWDIR%%/apps/sharebymail/l10n/ia.js -%%WWWDIR%%/apps/sharebymail/l10n/ia.json -%%WWWDIR%%/apps/sharebymail/l10n/id.js -%%WWWDIR%%/apps/sharebymail/l10n/id.json -%%WWWDIR%%/apps/sharebymail/l10n/is.js -%%WWWDIR%%/apps/sharebymail/l10n/is.json -%%WWWDIR%%/apps/sharebymail/l10n/it.js -%%WWWDIR%%/apps/sharebymail/l10n/it.json -%%WWWDIR%%/apps/sharebymail/l10n/ja.js -%%WWWDIR%%/apps/sharebymail/l10n/ja.json -%%WWWDIR%%/apps/sharebymail/l10n/ka_GE.js -%%WWWDIR%%/apps/sharebymail/l10n/ka_GE.json -%%WWWDIR%%/apps/sharebymail/l10n/ko.js -%%WWWDIR%%/apps/sharebymail/l10n/ko.json -%%WWWDIR%%/apps/sharebymail/l10n/lt_LT.js -%%WWWDIR%%/apps/sharebymail/l10n/lt_LT.json -%%WWWDIR%%/apps/sharebymail/l10n/nb.js -%%WWWDIR%%/apps/sharebymail/l10n/nb.json -%%WWWDIR%%/apps/sharebymail/l10n/nb_NO.js -%%WWWDIR%%/apps/sharebymail/l10n/nb_NO.json -%%WWWDIR%%/apps/sharebymail/l10n/nl.js -%%WWWDIR%%/apps/sharebymail/l10n/nl.json -%%WWWDIR%%/apps/sharebymail/l10n/pl.js -%%WWWDIR%%/apps/sharebymail/l10n/pl.json -%%WWWDIR%%/apps/sharebymail/l10n/pt_BR.js -%%WWWDIR%%/apps/sharebymail/l10n/pt_BR.json -%%WWWDIR%%/apps/sharebymail/l10n/ru.js -%%WWWDIR%%/apps/sharebymail/l10n/ru.json -%%WWWDIR%%/apps/sharebymail/l10n/sk.js -%%WWWDIR%%/apps/sharebymail/l10n/sk.json -%%WWWDIR%%/apps/sharebymail/l10n/sk_SK.js -%%WWWDIR%%/apps/sharebymail/l10n/sk_SK.json -%%WWWDIR%%/apps/sharebymail/l10n/sq.js -%%WWWDIR%%/apps/sharebymail/l10n/sq.json -%%WWWDIR%%/apps/sharebymail/l10n/sr.js -%%WWWDIR%%/apps/sharebymail/l10n/sr.json -%%WWWDIR%%/apps/sharebymail/l10n/sv.js -%%WWWDIR%%/apps/sharebymail/l10n/sv.json -%%WWWDIR%%/apps/sharebymail/l10n/tr.js -%%WWWDIR%%/apps/sharebymail/l10n/tr.json -%%WWWDIR%%/apps/sharebymail/l10n/zh_CN.js -%%WWWDIR%%/apps/sharebymail/l10n/zh_CN.json -%%WWWDIR%%/apps/sharebymail/lib/Activity.php -%%WWWDIR%%/apps/sharebymail/lib/AppInfo/Application.php -%%WWWDIR%%/apps/sharebymail/lib/Capabilities.php -%%WWWDIR%%/apps/sharebymail/lib/Settings.php -%%WWWDIR%%/apps/sharebymail/lib/Settings/Admin.php -%%WWWDIR%%/apps/sharebymail/lib/Settings/SettingsManager.php -%%WWWDIR%%/apps/sharebymail/lib/ShareByMailProvider.php -%%WWWDIR%%/apps/sharebymail/templates/settings-admin.php -%%WWWDIR%%/apps/survey_client/COPYING -%%WWWDIR%%/apps/survey_client/ISSUE_TEMPLATE.md -%%WWWDIR%%/apps/survey_client/appinfo/app.php -%%WWWDIR%%/apps/survey_client/appinfo/info.xml -%%WWWDIR%%/apps/survey_client/appinfo/install.php -%%WWWDIR%%/apps/survey_client/appinfo/routes.php -%%WWWDIR%%/apps/survey_client/appinfo/signature.json -%%WWWDIR%%/apps/survey_client/appinfo/update.php -%%WWWDIR%%/apps/survey_client/css/admin.css -%%WWWDIR%%/apps/survey_client/img/app-dark.svg -%%WWWDIR%%/apps/survey_client/img/app.svg -%%WWWDIR%%/apps/survey_client/js/admin.js -%%WWWDIR%%/apps/survey_client/l10n/.tx/config -%%WWWDIR%%/apps/survey_client/l10n/ast.js -%%WWWDIR%%/apps/survey_client/l10n/ast.json -%%WWWDIR%%/apps/survey_client/l10n/ca.js -%%WWWDIR%%/apps/survey_client/l10n/ca.json -%%WWWDIR%%/apps/survey_client/l10n/cs.js -%%WWWDIR%%/apps/survey_client/l10n/cs.json -%%WWWDIR%%/apps/survey_client/l10n/da.js -%%WWWDIR%%/apps/survey_client/l10n/da.json -%%WWWDIR%%/apps/survey_client/l10n/de.js -%%WWWDIR%%/apps/survey_client/l10n/de.json -%%WWWDIR%%/apps/survey_client/l10n/de_DE.js -%%WWWDIR%%/apps/survey_client/l10n/de_DE.json -%%WWWDIR%%/apps/survey_client/l10n/el.js -%%WWWDIR%%/apps/survey_client/l10n/el.json -%%WWWDIR%%/apps/survey_client/l10n/en_GB.js -%%WWWDIR%%/apps/survey_client/l10n/en_GB.json -%%WWWDIR%%/apps/survey_client/l10n/es.js -%%WWWDIR%%/apps/survey_client/l10n/es.json -%%WWWDIR%%/apps/survey_client/l10n/es_419.js -%%WWWDIR%%/apps/survey_client/l10n/es_419.json -%%WWWDIR%%/apps/survey_client/l10n/es_CL.js -%%WWWDIR%%/apps/survey_client/l10n/es_CL.json -%%WWWDIR%%/apps/survey_client/l10n/es_CO.js -%%WWWDIR%%/apps/survey_client/l10n/es_CO.json -%%WWWDIR%%/apps/survey_client/l10n/es_CR.js -%%WWWDIR%%/apps/survey_client/l10n/es_CR.json -%%WWWDIR%%/apps/survey_client/l10n/es_DO.js -%%WWWDIR%%/apps/survey_client/l10n/es_DO.json -%%WWWDIR%%/apps/survey_client/l10n/es_EC.js -%%WWWDIR%%/apps/survey_client/l10n/es_EC.json -%%WWWDIR%%/apps/survey_client/l10n/es_GT.js -%%WWWDIR%%/apps/survey_client/l10n/es_GT.json -%%WWWDIR%%/apps/survey_client/l10n/es_HN.js -%%WWWDIR%%/apps/survey_client/l10n/es_HN.json -%%WWWDIR%%/apps/survey_client/l10n/es_MX.js -%%WWWDIR%%/apps/survey_client/l10n/es_MX.json -%%WWWDIR%%/apps/survey_client/l10n/es_NI.js -%%WWWDIR%%/apps/survey_client/l10n/es_NI.json -%%WWWDIR%%/apps/survey_client/l10n/es_PA.js -%%WWWDIR%%/apps/survey_client/l10n/es_PA.json -%%WWWDIR%%/apps/survey_client/l10n/es_PE.js -%%WWWDIR%%/apps/survey_client/l10n/es_PE.json -%%WWWDIR%%/apps/survey_client/l10n/es_PR.js -%%WWWDIR%%/apps/survey_client/l10n/es_PR.json -%%WWWDIR%%/apps/survey_client/l10n/es_PY.js -%%WWWDIR%%/apps/survey_client/l10n/es_PY.json -%%WWWDIR%%/apps/survey_client/l10n/es_SV.js -%%WWWDIR%%/apps/survey_client/l10n/es_SV.json -%%WWWDIR%%/apps/survey_client/l10n/es_UY.js -%%WWWDIR%%/apps/survey_client/l10n/es_UY.json -%%WWWDIR%%/apps/survey_client/l10n/et_EE.js -%%WWWDIR%%/apps/survey_client/l10n/et_EE.json -%%WWWDIR%%/apps/survey_client/l10n/fi.js -%%WWWDIR%%/apps/survey_client/l10n/fi.json -%%WWWDIR%%/apps/survey_client/l10n/fr.js -%%WWWDIR%%/apps/survey_client/l10n/fr.json -%%WWWDIR%%/apps/survey_client/l10n/hu.js -%%WWWDIR%%/apps/survey_client/l10n/hu.json -%%WWWDIR%%/apps/survey_client/l10n/is.js -%%WWWDIR%%/apps/survey_client/l10n/is.json -%%WWWDIR%%/apps/survey_client/l10n/it.js -%%WWWDIR%%/apps/survey_client/l10n/it.json -%%WWWDIR%%/apps/survey_client/l10n/ja.js -%%WWWDIR%%/apps/survey_client/l10n/ja.json -%%WWWDIR%%/apps/survey_client/l10n/ka_GE.js -%%WWWDIR%%/apps/survey_client/l10n/ka_GE.json -%%WWWDIR%%/apps/survey_client/l10n/ko.js -%%WWWDIR%%/apps/survey_client/l10n/ko.json -%%WWWDIR%%/apps/survey_client/l10n/lt_LT.js -%%WWWDIR%%/apps/survey_client/l10n/lt_LT.json -%%WWWDIR%%/apps/survey_client/l10n/lv.js -%%WWWDIR%%/apps/survey_client/l10n/lv.json -%%WWWDIR%%/apps/survey_client/l10n/mn.js -%%WWWDIR%%/apps/survey_client/l10n/mn.json -%%WWWDIR%%/apps/survey_client/l10n/nb.js -%%WWWDIR%%/apps/survey_client/l10n/nb.json -%%WWWDIR%%/apps/survey_client/l10n/nl.js -%%WWWDIR%%/apps/survey_client/l10n/nl.json -%%WWWDIR%%/apps/survey_client/l10n/pl.js -%%WWWDIR%%/apps/survey_client/l10n/pl.json -%%WWWDIR%%/apps/survey_client/l10n/pt_BR.js -%%WWWDIR%%/apps/survey_client/l10n/pt_BR.json -%%WWWDIR%%/apps/survey_client/l10n/ru.js -%%WWWDIR%%/apps/survey_client/l10n/ru.json -%%WWWDIR%%/apps/survey_client/l10n/sk.js -%%WWWDIR%%/apps/survey_client/l10n/sk.json -%%WWWDIR%%/apps/survey_client/l10n/sq.js -%%WWWDIR%%/apps/survey_client/l10n/sq.json -%%WWWDIR%%/apps/survey_client/l10n/sr.js -%%WWWDIR%%/apps/survey_client/l10n/sr.json -%%WWWDIR%%/apps/survey_client/l10n/sv.js -%%WWWDIR%%/apps/survey_client/l10n/sv.json -%%WWWDIR%%/apps/survey_client/l10n/th.js -%%WWWDIR%%/apps/survey_client/l10n/th.json -%%WWWDIR%%/apps/survey_client/l10n/tr.js -%%WWWDIR%%/apps/survey_client/l10n/tr.json -%%WWWDIR%%/apps/survey_client/l10n/zh_CN.js -%%WWWDIR%%/apps/survey_client/l10n/zh_CN.json -%%WWWDIR%%/apps/survey_client/lib/AppInfo/Application.php -%%WWWDIR%%/apps/survey_client/lib/BackgroundJobs/AdminNotification.php -%%WWWDIR%%/apps/survey_client/lib/BackgroundJobs/MonthlyReport.php -%%WWWDIR%%/apps/survey_client/lib/Categories/Apps.php -%%WWWDIR%%/apps/survey_client/lib/Categories/Database.php -%%WWWDIR%%/apps/survey_client/lib/Categories/Encryption.php -%%WWWDIR%%/apps/survey_client/lib/Categories/FilesSharing.php -%%WWWDIR%%/apps/survey_client/lib/Categories/ICategory.php -%%WWWDIR%%/apps/survey_client/lib/Categories/Php.php -%%WWWDIR%%/apps/survey_client/lib/Categories/Server.php -%%WWWDIR%%/apps/survey_client/lib/Categories/Stats.php -%%WWWDIR%%/apps/survey_client/lib/Collector.php -%%WWWDIR%%/apps/survey_client/lib/Controller/EndpointController.php -%%WWWDIR%%/apps/survey_client/lib/Notifier.php -%%WWWDIR%%/apps/survey_client/lib/Settings/AdminSection.php -%%WWWDIR%%/apps/survey_client/lib/Settings/AdminSettings.php -%%WWWDIR%%/apps/survey_client/templates/admin.php -%%WWWDIR%%/apps/systemtags/appinfo/app.php -%%WWWDIR%%/apps/systemtags/appinfo/info.xml -%%WWWDIR%%/apps/systemtags/appinfo/routes.php -%%WWWDIR%%/apps/systemtags/appinfo/signature.json -%%WWWDIR%%/apps/systemtags/composer/autoload.php -%%WWWDIR%%/apps/systemtags/composer/composer.json -%%WWWDIR%%/apps/systemtags/composer/composer/ClassLoader.php -%%WWWDIR%%/apps/systemtags/composer/composer/LICENSE -%%WWWDIR%%/apps/systemtags/composer/composer/autoload_classmap.php -%%WWWDIR%%/apps/systemtags/composer/composer/autoload_namespaces.php -%%WWWDIR%%/apps/systemtags/composer/composer/autoload_psr4.php -%%WWWDIR%%/apps/systemtags/composer/composer/autoload_real.php -%%WWWDIR%%/apps/systemtags/composer/composer/autoload_static.php -%%WWWDIR%%/apps/systemtags/css/systemtagsfilelist.css -%%WWWDIR%%/apps/systemtags/img/app.svg -%%WWWDIR%%/apps/systemtags/img/tag.svg -%%WWWDIR%%/apps/systemtags/js/admin.js -%%WWWDIR%%/apps/systemtags/js/app.js -%%WWWDIR%%/apps/systemtags/js/filesplugin.js -%%WWWDIR%%/apps/systemtags/js/merged.json -%%WWWDIR%%/apps/systemtags/js/systemtagsfilelist.js -%%WWWDIR%%/apps/systemtags/js/systemtagsinfoview.js -%%WWWDIR%%/apps/systemtags/js/systemtagsinfoviewtoggleview.js -%%WWWDIR%%/apps/systemtags/l10n/.gitkeep -%%WWWDIR%%/apps/systemtags/l10n/ar.js -%%WWWDIR%%/apps/systemtags/l10n/ar.json -%%WWWDIR%%/apps/systemtags/l10n/ast.js -%%WWWDIR%%/apps/systemtags/l10n/ast.json -%%WWWDIR%%/apps/systemtags/l10n/az.js -%%WWWDIR%%/apps/systemtags/l10n/az.json -%%WWWDIR%%/apps/systemtags/l10n/bg.js -%%WWWDIR%%/apps/systemtags/l10n/bg.json -%%WWWDIR%%/apps/systemtags/l10n/bg_BG.js -%%WWWDIR%%/apps/systemtags/l10n/bg_BG.json -%%WWWDIR%%/apps/systemtags/l10n/bn_BD.js -%%WWWDIR%%/apps/systemtags/l10n/bn_BD.json -%%WWWDIR%%/apps/systemtags/l10n/bn_IN.js -%%WWWDIR%%/apps/systemtags/l10n/bn_IN.json -%%WWWDIR%%/apps/systemtags/l10n/bs.js -%%WWWDIR%%/apps/systemtags/l10n/bs.json -%%WWWDIR%%/apps/systemtags/l10n/ca.js -%%WWWDIR%%/apps/systemtags/l10n/ca.json -%%WWWDIR%%/apps/systemtags/l10n/cs.js -%%WWWDIR%%/apps/systemtags/l10n/cs.json -%%WWWDIR%%/apps/systemtags/l10n/cs_CZ.js -%%WWWDIR%%/apps/systemtags/l10n/cs_CZ.json -%%WWWDIR%%/apps/systemtags/l10n/cy_GB.js -%%WWWDIR%%/apps/systemtags/l10n/cy_GB.json -%%WWWDIR%%/apps/systemtags/l10n/da.js -%%WWWDIR%%/apps/systemtags/l10n/da.json -%%WWWDIR%%/apps/systemtags/l10n/de.js -%%WWWDIR%%/apps/systemtags/l10n/de.json -%%WWWDIR%%/apps/systemtags/l10n/de_AT.js -%%WWWDIR%%/apps/systemtags/l10n/de_AT.json -%%WWWDIR%%/apps/systemtags/l10n/de_DE.js -%%WWWDIR%%/apps/systemtags/l10n/de_DE.json -%%WWWDIR%%/apps/systemtags/l10n/el.js -%%WWWDIR%%/apps/systemtags/l10n/el.json -%%WWWDIR%%/apps/systemtags/l10n/en_GB.js -%%WWWDIR%%/apps/systemtags/l10n/en_GB.json -%%WWWDIR%%/apps/systemtags/l10n/eo.js -%%WWWDIR%%/apps/systemtags/l10n/eo.json -%%WWWDIR%%/apps/systemtags/l10n/es.js -%%WWWDIR%%/apps/systemtags/l10n/es.json -%%WWWDIR%%/apps/systemtags/l10n/es_419.js -%%WWWDIR%%/apps/systemtags/l10n/es_419.json -%%WWWDIR%%/apps/systemtags/l10n/es_AR.js -%%WWWDIR%%/apps/systemtags/l10n/es_AR.json -%%WWWDIR%%/apps/systemtags/l10n/es_CL.js -%%WWWDIR%%/apps/systemtags/l10n/es_CL.json -%%WWWDIR%%/apps/systemtags/l10n/es_CO.js -%%WWWDIR%%/apps/systemtags/l10n/es_CO.json -%%WWWDIR%%/apps/systemtags/l10n/es_CR.js -%%WWWDIR%%/apps/systemtags/l10n/es_CR.json -%%WWWDIR%%/apps/systemtags/l10n/es_DO.js -%%WWWDIR%%/apps/systemtags/l10n/es_DO.json -%%WWWDIR%%/apps/systemtags/l10n/es_EC.js -%%WWWDIR%%/apps/systemtags/l10n/es_EC.json -%%WWWDIR%%/apps/systemtags/l10n/es_GT.js -%%WWWDIR%%/apps/systemtags/l10n/es_GT.json -%%WWWDIR%%/apps/systemtags/l10n/es_HN.js -%%WWWDIR%%/apps/systemtags/l10n/es_HN.json -%%WWWDIR%%/apps/systemtags/l10n/es_MX.js -%%WWWDIR%%/apps/systemtags/l10n/es_MX.json -%%WWWDIR%%/apps/systemtags/l10n/es_NI.js -%%WWWDIR%%/apps/systemtags/l10n/es_NI.json -%%WWWDIR%%/apps/systemtags/l10n/es_PA.js -%%WWWDIR%%/apps/systemtags/l10n/es_PA.json -%%WWWDIR%%/apps/systemtags/l10n/es_PE.js -%%WWWDIR%%/apps/systemtags/l10n/es_PE.json -%%WWWDIR%%/apps/systemtags/l10n/es_PR.js -%%WWWDIR%%/apps/systemtags/l10n/es_PR.json -%%WWWDIR%%/apps/systemtags/l10n/es_PY.js -%%WWWDIR%%/apps/systemtags/l10n/es_PY.json -%%WWWDIR%%/apps/systemtags/l10n/es_SV.js -%%WWWDIR%%/apps/systemtags/l10n/es_SV.json -%%WWWDIR%%/apps/systemtags/l10n/es_UY.js -%%WWWDIR%%/apps/systemtags/l10n/es_UY.json -%%WWWDIR%%/apps/systemtags/l10n/et_EE.js -%%WWWDIR%%/apps/systemtags/l10n/et_EE.json -%%WWWDIR%%/apps/systemtags/l10n/eu.js -%%WWWDIR%%/apps/systemtags/l10n/eu.json -%%WWWDIR%%/apps/systemtags/l10n/fa.js -%%WWWDIR%%/apps/systemtags/l10n/fa.json -%%WWWDIR%%/apps/systemtags/l10n/fi.js -%%WWWDIR%%/apps/systemtags/l10n/fi.json -%%WWWDIR%%/apps/systemtags/l10n/fi_FI.js -%%WWWDIR%%/apps/systemtags/l10n/fi_FI.json -%%WWWDIR%%/apps/systemtags/l10n/fr.js -%%WWWDIR%%/apps/systemtags/l10n/fr.json -%%WWWDIR%%/apps/systemtags/l10n/gl.js -%%WWWDIR%%/apps/systemtags/l10n/gl.json -%%WWWDIR%%/apps/systemtags/l10n/he.js -%%WWWDIR%%/apps/systemtags/l10n/he.json -%%WWWDIR%%/apps/systemtags/l10n/hr.js -%%WWWDIR%%/apps/systemtags/l10n/hr.json -%%WWWDIR%%/apps/systemtags/l10n/hu.js -%%WWWDIR%%/apps/systemtags/l10n/hu.json -%%WWWDIR%%/apps/systemtags/l10n/hu_HU.js -%%WWWDIR%%/apps/systemtags/l10n/hu_HU.json -%%WWWDIR%%/apps/systemtags/l10n/hy.js -%%WWWDIR%%/apps/systemtags/l10n/hy.json -%%WWWDIR%%/apps/systemtags/l10n/ia.js -%%WWWDIR%%/apps/systemtags/l10n/ia.json -%%WWWDIR%%/apps/systemtags/l10n/id.js -%%WWWDIR%%/apps/systemtags/l10n/id.json -%%WWWDIR%%/apps/systemtags/l10n/is.js -%%WWWDIR%%/apps/systemtags/l10n/is.json -%%WWWDIR%%/apps/systemtags/l10n/it.js -%%WWWDIR%%/apps/systemtags/l10n/it.json -%%WWWDIR%%/apps/systemtags/l10n/ja.js -%%WWWDIR%%/apps/systemtags/l10n/ja.json -%%WWWDIR%%/apps/systemtags/l10n/ka_GE.js -%%WWWDIR%%/apps/systemtags/l10n/ka_GE.json -%%WWWDIR%%/apps/systemtags/l10n/km.js -%%WWWDIR%%/apps/systemtags/l10n/km.json -%%WWWDIR%%/apps/systemtags/l10n/kn.js -%%WWWDIR%%/apps/systemtags/l10n/kn.json -%%WWWDIR%%/apps/systemtags/l10n/ko.js -%%WWWDIR%%/apps/systemtags/l10n/ko.json -%%WWWDIR%%/apps/systemtags/l10n/ku_IQ.js -%%WWWDIR%%/apps/systemtags/l10n/ku_IQ.json -%%WWWDIR%%/apps/systemtags/l10n/lb.js -%%WWWDIR%%/apps/systemtags/l10n/lb.json -%%WWWDIR%%/apps/systemtags/l10n/lt_LT.js -%%WWWDIR%%/apps/systemtags/l10n/lt_LT.json -%%WWWDIR%%/apps/systemtags/l10n/lv.js -%%WWWDIR%%/apps/systemtags/l10n/lv.json -%%WWWDIR%%/apps/systemtags/l10n/mk.js -%%WWWDIR%%/apps/systemtags/l10n/mk.json -%%WWWDIR%%/apps/systemtags/l10n/ms_MY.js -%%WWWDIR%%/apps/systemtags/l10n/ms_MY.json -%%WWWDIR%%/apps/systemtags/l10n/nb.js -%%WWWDIR%%/apps/systemtags/l10n/nb.json -%%WWWDIR%%/apps/systemtags/l10n/nb_NO.js -%%WWWDIR%%/apps/systemtags/l10n/nb_NO.json -%%WWWDIR%%/apps/systemtags/l10n/nds.js -%%WWWDIR%%/apps/systemtags/l10n/nds.json -%%WWWDIR%%/apps/systemtags/l10n/nl.js -%%WWWDIR%%/apps/systemtags/l10n/nl.json -%%WWWDIR%%/apps/systemtags/l10n/nn_NO.js -%%WWWDIR%%/apps/systemtags/l10n/nn_NO.json -%%WWWDIR%%/apps/systemtags/l10n/oc.js -%%WWWDIR%%/apps/systemtags/l10n/oc.json -%%WWWDIR%%/apps/systemtags/l10n/pl.js -%%WWWDIR%%/apps/systemtags/l10n/pl.json -%%WWWDIR%%/apps/systemtags/l10n/pt_BR.js -%%WWWDIR%%/apps/systemtags/l10n/pt_BR.json -%%WWWDIR%%/apps/systemtags/l10n/pt_PT.js -%%WWWDIR%%/apps/systemtags/l10n/pt_PT.json -%%WWWDIR%%/apps/systemtags/l10n/ro.js -%%WWWDIR%%/apps/systemtags/l10n/ro.json -%%WWWDIR%%/apps/systemtags/l10n/ru.js -%%WWWDIR%%/apps/systemtags/l10n/ru.json -%%WWWDIR%%/apps/systemtags/l10n/si_LK.js -%%WWWDIR%%/apps/systemtags/l10n/si_LK.json -%%WWWDIR%%/apps/systemtags/l10n/sk_SK.js -%%WWWDIR%%/apps/systemtags/l10n/sk_SK.json -%%WWWDIR%%/apps/systemtags/l10n/sl.js -%%WWWDIR%%/apps/systemtags/l10n/sl.json -%%WWWDIR%%/apps/systemtags/l10n/sq.js -%%WWWDIR%%/apps/systemtags/l10n/sq.json -%%WWWDIR%%/apps/systemtags/l10n/sr.js -%%WWWDIR%%/apps/systemtags/l10n/sr.json -%%WWWDIR%%/apps/systemtags/l10n/sr@latin.js -%%WWWDIR%%/apps/systemtags/l10n/sr@latin.json -%%WWWDIR%%/apps/systemtags/l10n/sv.js -%%WWWDIR%%/apps/systemtags/l10n/sv.json -%%WWWDIR%%/apps/systemtags/l10n/ta_LK.js -%%WWWDIR%%/apps/systemtags/l10n/ta_LK.json -%%WWWDIR%%/apps/systemtags/l10n/te.js -%%WWWDIR%%/apps/systemtags/l10n/te.json -%%WWWDIR%%/apps/systemtags/l10n/th_TH.js -%%WWWDIR%%/apps/systemtags/l10n/th_TH.json -%%WWWDIR%%/apps/systemtags/l10n/tr.js -%%WWWDIR%%/apps/systemtags/l10n/tr.json -%%WWWDIR%%/apps/systemtags/l10n/ug.js -%%WWWDIR%%/apps/systemtags/l10n/ug.json -%%WWWDIR%%/apps/systemtags/l10n/uk.js -%%WWWDIR%%/apps/systemtags/l10n/uk.json -%%WWWDIR%%/apps/systemtags/l10n/ur_PK.js -%%WWWDIR%%/apps/systemtags/l10n/ur_PK.json -%%WWWDIR%%/apps/systemtags/l10n/vi.js -%%WWWDIR%%/apps/systemtags/l10n/vi.json -%%WWWDIR%%/apps/systemtags/l10n/zh_CN.js -%%WWWDIR%%/apps/systemtags/l10n/zh_CN.json -%%WWWDIR%%/apps/systemtags/l10n/zh_HK.js -%%WWWDIR%%/apps/systemtags/l10n/zh_HK.json -%%WWWDIR%%/apps/systemtags/l10n/zh_TW.js -%%WWWDIR%%/apps/systemtags/l10n/zh_TW.json -%%WWWDIR%%/apps/systemtags/lib/Activity/Listener.php -%%WWWDIR%%/apps/systemtags/lib/Activity/Provider.php -%%WWWDIR%%/apps/systemtags/lib/Activity/Setting.php -%%WWWDIR%%/apps/systemtags/lib/Controller/LastUsedController.php -%%WWWDIR%%/apps/systemtags/lib/Settings/Admin.php -%%WWWDIR%%/apps/systemtags/list.php -%%WWWDIR%%/apps/systemtags/templates/admin.php -%%WWWDIR%%/apps/systemtags/templates/list.php -%%WWWDIR%%/apps/theming/appinfo/app.php -%%WWWDIR%%/apps/theming/appinfo/info.xml -%%WWWDIR%%/apps/theming/appinfo/routes.php -%%WWWDIR%%/apps/theming/appinfo/signature.json -%%WWWDIR%%/apps/theming/css/settings-admin.css -%%WWWDIR%%/apps/theming/css/theming.scss -%%WWWDIR%%/apps/theming/img/app-dark.svg -%%WWWDIR%%/apps/theming/img/app.svg -%%WWWDIR%%/apps/theming/js/3rdparty/jscolor/LICENSE.txt -%%WWWDIR%%/apps/theming/js/3rdparty/jscolor/jscolor.js -%%WWWDIR%%/apps/theming/js/3rdparty/jscolor/jscolor.min.js -%%WWWDIR%%/apps/theming/js/settings-admin.js -%%WWWDIR%%/apps/theming/l10n/.gitkeep -%%WWWDIR%%/apps/theming/l10n/af.js -%%WWWDIR%%/apps/theming/l10n/af.json -%%WWWDIR%%/apps/theming/l10n/ar.js -%%WWWDIR%%/apps/theming/l10n/ar.json -%%WWWDIR%%/apps/theming/l10n/ast.js -%%WWWDIR%%/apps/theming/l10n/ast.json -%%WWWDIR%%/apps/theming/l10n/bg.js -%%WWWDIR%%/apps/theming/l10n/bg.json -%%WWWDIR%%/apps/theming/l10n/ca.js -%%WWWDIR%%/apps/theming/l10n/ca.json -%%WWWDIR%%/apps/theming/l10n/cs.js -%%WWWDIR%%/apps/theming/l10n/cs.json -%%WWWDIR%%/apps/theming/l10n/da.js -%%WWWDIR%%/apps/theming/l10n/da.json -%%WWWDIR%%/apps/theming/l10n/de.js -%%WWWDIR%%/apps/theming/l10n/de.json -%%WWWDIR%%/apps/theming/l10n/de_DE.js -%%WWWDIR%%/apps/theming/l10n/de_DE.json -%%WWWDIR%%/apps/theming/l10n/el.js -%%WWWDIR%%/apps/theming/l10n/el.json -%%WWWDIR%%/apps/theming/l10n/en_GB.js -%%WWWDIR%%/apps/theming/l10n/en_GB.json -%%WWWDIR%%/apps/theming/l10n/es.js -%%WWWDIR%%/apps/theming/l10n/es.json -%%WWWDIR%%/apps/theming/l10n/es_419.js -%%WWWDIR%%/apps/theming/l10n/es_419.json -%%WWWDIR%%/apps/theming/l10n/es_AR.js -%%WWWDIR%%/apps/theming/l10n/es_AR.json -%%WWWDIR%%/apps/theming/l10n/es_CL.js -%%WWWDIR%%/apps/theming/l10n/es_CL.json -%%WWWDIR%%/apps/theming/l10n/es_CO.js -%%WWWDIR%%/apps/theming/l10n/es_CO.json -%%WWWDIR%%/apps/theming/l10n/es_CR.js -%%WWWDIR%%/apps/theming/l10n/es_CR.json -%%WWWDIR%%/apps/theming/l10n/es_DO.js -%%WWWDIR%%/apps/theming/l10n/es_DO.json -%%WWWDIR%%/apps/theming/l10n/es_EC.js -%%WWWDIR%%/apps/theming/l10n/es_EC.json -%%WWWDIR%%/apps/theming/l10n/es_GT.js -%%WWWDIR%%/apps/theming/l10n/es_GT.json -%%WWWDIR%%/apps/theming/l10n/es_HN.js -%%WWWDIR%%/apps/theming/l10n/es_HN.json -%%WWWDIR%%/apps/theming/l10n/es_MX.js -%%WWWDIR%%/apps/theming/l10n/es_MX.json -%%WWWDIR%%/apps/theming/l10n/es_NI.js -%%WWWDIR%%/apps/theming/l10n/es_NI.json -%%WWWDIR%%/apps/theming/l10n/es_PA.js -%%WWWDIR%%/apps/theming/l10n/es_PA.json -%%WWWDIR%%/apps/theming/l10n/es_PE.js -%%WWWDIR%%/apps/theming/l10n/es_PE.json -%%WWWDIR%%/apps/theming/l10n/es_PR.js -%%WWWDIR%%/apps/theming/l10n/es_PR.json -%%WWWDIR%%/apps/theming/l10n/es_PY.js -%%WWWDIR%%/apps/theming/l10n/es_PY.json -%%WWWDIR%%/apps/theming/l10n/es_SV.js -%%WWWDIR%%/apps/theming/l10n/es_SV.json -%%WWWDIR%%/apps/theming/l10n/es_UY.js -%%WWWDIR%%/apps/theming/l10n/es_UY.json -%%WWWDIR%%/apps/theming/l10n/et_EE.js -%%WWWDIR%%/apps/theming/l10n/et_EE.json -%%WWWDIR%%/apps/theming/l10n/fi.js -%%WWWDIR%%/apps/theming/l10n/fi.json -%%WWWDIR%%/apps/theming/l10n/fr.js -%%WWWDIR%%/apps/theming/l10n/fr.json -%%WWWDIR%%/apps/theming/l10n/gl.js -%%WWWDIR%%/apps/theming/l10n/gl.json -%%WWWDIR%%/apps/theming/l10n/hu.js -%%WWWDIR%%/apps/theming/l10n/hu.json -%%WWWDIR%%/apps/theming/l10n/id.js -%%WWWDIR%%/apps/theming/l10n/id.json -%%WWWDIR%%/apps/theming/l10n/is.js -%%WWWDIR%%/apps/theming/l10n/is.json -%%WWWDIR%%/apps/theming/l10n/it.js -%%WWWDIR%%/apps/theming/l10n/it.json -%%WWWDIR%%/apps/theming/l10n/ja.js -%%WWWDIR%%/apps/theming/l10n/ja.json -%%WWWDIR%%/apps/theming/l10n/ka_GE.js -%%WWWDIR%%/apps/theming/l10n/ka_GE.json -%%WWWDIR%%/apps/theming/l10n/ko.js -%%WWWDIR%%/apps/theming/l10n/ko.json -%%WWWDIR%%/apps/theming/l10n/lt_LT.js -%%WWWDIR%%/apps/theming/l10n/lt_LT.json -%%WWWDIR%%/apps/theming/l10n/lv.js -%%WWWDIR%%/apps/theming/l10n/lv.json -%%WWWDIR%%/apps/theming/l10n/mn.js -%%WWWDIR%%/apps/theming/l10n/mn.json -%%WWWDIR%%/apps/theming/l10n/nb.js -%%WWWDIR%%/apps/theming/l10n/nb.json -%%WWWDIR%%/apps/theming/l10n/nl.js -%%WWWDIR%%/apps/theming/l10n/nl.json -%%WWWDIR%%/apps/theming/l10n/pl.js -%%WWWDIR%%/apps/theming/l10n/pl.json -%%WWWDIR%%/apps/theming/l10n/pt_BR.js -%%WWWDIR%%/apps/theming/l10n/pt_BR.json -%%WWWDIR%%/apps/theming/l10n/ru.js -%%WWWDIR%%/apps/theming/l10n/ru.json -%%WWWDIR%%/apps/theming/l10n/sk.js -%%WWWDIR%%/apps/theming/l10n/sk.json -%%WWWDIR%%/apps/theming/l10n/sl.js -%%WWWDIR%%/apps/theming/l10n/sl.json -%%WWWDIR%%/apps/theming/l10n/sq.js -%%WWWDIR%%/apps/theming/l10n/sq.json -%%WWWDIR%%/apps/theming/l10n/sr.js -%%WWWDIR%%/apps/theming/l10n/sr.json -%%WWWDIR%%/apps/theming/l10n/sv.js -%%WWWDIR%%/apps/theming/l10n/sv.json -%%WWWDIR%%/apps/theming/l10n/tr.js -%%WWWDIR%%/apps/theming/l10n/tr.json -%%WWWDIR%%/apps/theming/l10n/vi.js -%%WWWDIR%%/apps/theming/l10n/vi.json -%%WWWDIR%%/apps/theming/l10n/zh_CN.js -%%WWWDIR%%/apps/theming/l10n/zh_CN.json -%%WWWDIR%%/apps/theming/l10n/zh_TW.js -%%WWWDIR%%/apps/theming/l10n/zh_TW.json -%%WWWDIR%%/apps/theming/lib/Capabilities.php -%%WWWDIR%%/apps/theming/lib/Controller/IconController.php -%%WWWDIR%%/apps/theming/lib/Controller/ThemingController.php -%%WWWDIR%%/apps/theming/lib/IconBuilder.php -%%WWWDIR%%/apps/theming/lib/ImageManager.php -%%WWWDIR%%/apps/theming/lib/Migration/ThemingImages.php -%%WWWDIR%%/apps/theming/lib/Settings/Admin.php -%%WWWDIR%%/apps/theming/lib/Settings/Section.php -%%WWWDIR%%/apps/theming/lib/ThemingDefaults.php -%%WWWDIR%%/apps/theming/lib/Util.php -%%WWWDIR%%/apps/theming/templates/settings-admin.php -%%WWWDIR%%/apps/twofactor_backupcodes/appinfo/app.php -%%WWWDIR%%/apps/twofactor_backupcodes/appinfo/info.xml -%%WWWDIR%%/apps/twofactor_backupcodes/appinfo/routes.php -%%WWWDIR%%/apps/twofactor_backupcodes/appinfo/signature.json -%%WWWDIR%%/apps/twofactor_backupcodes/composer/autoload.php -%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer.json -%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/ClassLoader.php -%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/LICENSE -%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/autoload_classmap.php -%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/autoload_namespaces.php -%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/autoload_psr4.php -%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/autoload_real.php -%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/autoload_static.php -%%WWWDIR%%/apps/twofactor_backupcodes/css/style.css -%%WWWDIR%%/apps/twofactor_backupcodes/js/settings.js -%%WWWDIR%%/apps/twofactor_backupcodes/js/settingsview.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/.gitkeep -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/af.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/af.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/ca.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/ca.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/cs.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/cs.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/cs_CZ.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/cs_CZ.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/da.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/da.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/de.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/de.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/de_DE.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/de_DE.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/el.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/el.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/en_GB.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/en_GB.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_419.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_419.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_AR.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_AR.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_CL.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_CL.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_CO.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_CO.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_CR.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_CR.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_DO.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_DO.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_EC.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_EC.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_GT.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_GT.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_HN.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_HN.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_MX.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_MX.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_NI.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_NI.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_PA.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_PA.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_PE.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_PE.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_PR.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_PR.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_PY.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_PY.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_SV.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_SV.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_UY.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_UY.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/fi.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/fi.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/fr.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/fr.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/gl.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/gl.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/hu.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/hu.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/hu_HU.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/hu_HU.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/is.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/is.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/it.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/it.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/ja.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/ja.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/ka_GE.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/ka_GE.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/ko.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/ko.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/lv.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/lv.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/mn.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/mn.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/nb.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/nb.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/nb_NO.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/nb_NO.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/nl.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/nl.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/pl.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/pl.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/pt_BR.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/pt_BR.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/ru.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/ru.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/sk.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/sk.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/sq.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/sq.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/sr.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/sr.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/sv.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/sv.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/tr.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/tr.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/zh_CN.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/zh_CN.json -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/zh_TW.js -%%WWWDIR%%/apps/twofactor_backupcodes/l10n/zh_TW.json -%%WWWDIR%%/apps/twofactor_backupcodes/lib/Activity/Provider.php -%%WWWDIR%%/apps/twofactor_backupcodes/lib/AppInfo/Application.php -%%WWWDIR%%/apps/twofactor_backupcodes/lib/Controller/SettingsController.php -%%WWWDIR%%/apps/twofactor_backupcodes/lib/Db/BackupCode.php -%%WWWDIR%%/apps/twofactor_backupcodes/lib/Db/BackupCodeMapper.php -%%WWWDIR%%/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170607104347.php -%%WWWDIR%%/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170607113030.php -%%WWWDIR%%/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170919123342.php -%%WWWDIR%%/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170926101419.php -%%WWWDIR%%/apps/twofactor_backupcodes/lib/Provider/BackupCodesProvider.php -%%WWWDIR%%/apps/twofactor_backupcodes/lib/Service/BackupCodeStorage.php -%%WWWDIR%%/apps/twofactor_backupcodes/lib/Settings/Personal.php -%%WWWDIR%%/apps/twofactor_backupcodes/templates/challenge.php -%%WWWDIR%%/apps/twofactor_backupcodes/templates/personal.php -%%WWWDIR%%/apps/updatenotification/appinfo/app.php -%%WWWDIR%%/apps/updatenotification/appinfo/info.xml -%%WWWDIR%%/apps/updatenotification/appinfo/routes.php -%%WWWDIR%%/apps/updatenotification/appinfo/signature.json -%%WWWDIR%%/apps/updatenotification/composer/autoload.php -%%WWWDIR%%/apps/updatenotification/composer/composer.json -%%WWWDIR%%/apps/updatenotification/composer/composer/ClassLoader.php -%%WWWDIR%%/apps/updatenotification/composer/composer/LICENSE -%%WWWDIR%%/apps/updatenotification/composer/composer/autoload_classmap.php -%%WWWDIR%%/apps/updatenotification/composer/composer/autoload_namespaces.php -%%WWWDIR%%/apps/updatenotification/composer/composer/autoload_psr4.php -%%WWWDIR%%/apps/updatenotification/composer/composer/autoload_real.php -%%WWWDIR%%/apps/updatenotification/composer/composer/autoload_static.php -%%WWWDIR%%/apps/updatenotification/css/admin.css -%%WWWDIR%%/apps/updatenotification/img/app.svg -%%WWWDIR%%/apps/updatenotification/img/notification.svg -%%WWWDIR%%/apps/updatenotification/js/admin.js -%%WWWDIR%%/apps/updatenotification/js/notification.js -%%WWWDIR%%/apps/updatenotification/l10n/.gitkeep -%%WWWDIR%%/apps/updatenotification/l10n/af.js -%%WWWDIR%%/apps/updatenotification/l10n/af.json -%%WWWDIR%%/apps/updatenotification/l10n/ar.js -%%WWWDIR%%/apps/updatenotification/l10n/ar.json -%%WWWDIR%%/apps/updatenotification/l10n/ast.js -%%WWWDIR%%/apps/updatenotification/l10n/ast.json -%%WWWDIR%%/apps/updatenotification/l10n/az.js -%%WWWDIR%%/apps/updatenotification/l10n/az.json -%%WWWDIR%%/apps/updatenotification/l10n/bg.js -%%WWWDIR%%/apps/updatenotification/l10n/bg.json -%%WWWDIR%%/apps/updatenotification/l10n/bg_BG.js -%%WWWDIR%%/apps/updatenotification/l10n/bg_BG.json -%%WWWDIR%%/apps/updatenotification/l10n/bn_BD.js -%%WWWDIR%%/apps/updatenotification/l10n/bn_BD.json -%%WWWDIR%%/apps/updatenotification/l10n/bs.js -%%WWWDIR%%/apps/updatenotification/l10n/bs.json -%%WWWDIR%%/apps/updatenotification/l10n/ca.js -%%WWWDIR%%/apps/updatenotification/l10n/ca.json -%%WWWDIR%%/apps/updatenotification/l10n/cs.js -%%WWWDIR%%/apps/updatenotification/l10n/cs.json -%%WWWDIR%%/apps/updatenotification/l10n/cs_CZ.js -%%WWWDIR%%/apps/updatenotification/l10n/cs_CZ.json -%%WWWDIR%%/apps/updatenotification/l10n/da.js -%%WWWDIR%%/apps/updatenotification/l10n/da.json -%%WWWDIR%%/apps/updatenotification/l10n/de.js -%%WWWDIR%%/apps/updatenotification/l10n/de.json -%%WWWDIR%%/apps/updatenotification/l10n/de_DE.js -%%WWWDIR%%/apps/updatenotification/l10n/de_DE.json -%%WWWDIR%%/apps/updatenotification/l10n/el.js -%%WWWDIR%%/apps/updatenotification/l10n/el.json -%%WWWDIR%%/apps/updatenotification/l10n/en_GB.js -%%WWWDIR%%/apps/updatenotification/l10n/en_GB.json -%%WWWDIR%%/apps/updatenotification/l10n/eo.js -%%WWWDIR%%/apps/updatenotification/l10n/eo.json -%%WWWDIR%%/apps/updatenotification/l10n/es.js -%%WWWDIR%%/apps/updatenotification/l10n/es.json -%%WWWDIR%%/apps/updatenotification/l10n/es_419.js -%%WWWDIR%%/apps/updatenotification/l10n/es_419.json -%%WWWDIR%%/apps/updatenotification/l10n/es_AR.js -%%WWWDIR%%/apps/updatenotification/l10n/es_AR.json -%%WWWDIR%%/apps/updatenotification/l10n/es_CL.js -%%WWWDIR%%/apps/updatenotification/l10n/es_CL.json -%%WWWDIR%%/apps/updatenotification/l10n/es_CO.js -%%WWWDIR%%/apps/updatenotification/l10n/es_CO.json -%%WWWDIR%%/apps/updatenotification/l10n/es_CR.js -%%WWWDIR%%/apps/updatenotification/l10n/es_CR.json -%%WWWDIR%%/apps/updatenotification/l10n/es_DO.js -%%WWWDIR%%/apps/updatenotification/l10n/es_DO.json -%%WWWDIR%%/apps/updatenotification/l10n/es_EC.js -%%WWWDIR%%/apps/updatenotification/l10n/es_EC.json -%%WWWDIR%%/apps/updatenotification/l10n/es_GT.js -%%WWWDIR%%/apps/updatenotification/l10n/es_GT.json -%%WWWDIR%%/apps/updatenotification/l10n/es_HN.js -%%WWWDIR%%/apps/updatenotification/l10n/es_HN.json -%%WWWDIR%%/apps/updatenotification/l10n/es_MX.js -%%WWWDIR%%/apps/updatenotification/l10n/es_MX.json -%%WWWDIR%%/apps/updatenotification/l10n/es_NI.js -%%WWWDIR%%/apps/updatenotification/l10n/es_NI.json -%%WWWDIR%%/apps/updatenotification/l10n/es_PA.js -%%WWWDIR%%/apps/updatenotification/l10n/es_PA.json -%%WWWDIR%%/apps/updatenotification/l10n/es_PE.js -%%WWWDIR%%/apps/updatenotification/l10n/es_PE.json -%%WWWDIR%%/apps/updatenotification/l10n/es_PR.js -%%WWWDIR%%/apps/updatenotification/l10n/es_PR.json -%%WWWDIR%%/apps/updatenotification/l10n/es_PY.js -%%WWWDIR%%/apps/updatenotification/l10n/es_PY.json -%%WWWDIR%%/apps/updatenotification/l10n/es_SV.js -%%WWWDIR%%/apps/updatenotification/l10n/es_SV.json -%%WWWDIR%%/apps/updatenotification/l10n/es_UY.js -%%WWWDIR%%/apps/updatenotification/l10n/es_UY.json -%%WWWDIR%%/apps/updatenotification/l10n/et_EE.js -%%WWWDIR%%/apps/updatenotification/l10n/et_EE.json -%%WWWDIR%%/apps/updatenotification/l10n/eu.js -%%WWWDIR%%/apps/updatenotification/l10n/eu.json -%%WWWDIR%%/apps/updatenotification/l10n/fa.js -%%WWWDIR%%/apps/updatenotification/l10n/fa.json -%%WWWDIR%%/apps/updatenotification/l10n/fi.js -%%WWWDIR%%/apps/updatenotification/l10n/fi.json -%%WWWDIR%%/apps/updatenotification/l10n/fi_FI.js -%%WWWDIR%%/apps/updatenotification/l10n/fi_FI.json -%%WWWDIR%%/apps/updatenotification/l10n/fr.js -%%WWWDIR%%/apps/updatenotification/l10n/fr.json -%%WWWDIR%%/apps/updatenotification/l10n/gl.js -%%WWWDIR%%/apps/updatenotification/l10n/gl.json -%%WWWDIR%%/apps/updatenotification/l10n/he.js -%%WWWDIR%%/apps/updatenotification/l10n/he.json -%%WWWDIR%%/apps/updatenotification/l10n/hr.js -%%WWWDIR%%/apps/updatenotification/l10n/hr.json -%%WWWDIR%%/apps/updatenotification/l10n/hu.js -%%WWWDIR%%/apps/updatenotification/l10n/hu.json -%%WWWDIR%%/apps/updatenotification/l10n/hu_HU.js -%%WWWDIR%%/apps/updatenotification/l10n/hu_HU.json -%%WWWDIR%%/apps/updatenotification/l10n/ia.js -%%WWWDIR%%/apps/updatenotification/l10n/ia.json -%%WWWDIR%%/apps/updatenotification/l10n/id.js -%%WWWDIR%%/apps/updatenotification/l10n/id.json -%%WWWDIR%%/apps/updatenotification/l10n/is.js -%%WWWDIR%%/apps/updatenotification/l10n/is.json -%%WWWDIR%%/apps/updatenotification/l10n/it.js -%%WWWDIR%%/apps/updatenotification/l10n/it.json -%%WWWDIR%%/apps/updatenotification/l10n/ja.js -%%WWWDIR%%/apps/updatenotification/l10n/ja.json -%%WWWDIR%%/apps/updatenotification/l10n/ka_GE.js -%%WWWDIR%%/apps/updatenotification/l10n/ka_GE.json -%%WWWDIR%%/apps/updatenotification/l10n/ko.js -%%WWWDIR%%/apps/updatenotification/l10n/ko.json -%%WWWDIR%%/apps/updatenotification/l10n/lb.js -%%WWWDIR%%/apps/updatenotification/l10n/lb.json -%%WWWDIR%%/apps/updatenotification/l10n/lt_LT.js -%%WWWDIR%%/apps/updatenotification/l10n/lt_LT.json -%%WWWDIR%%/apps/updatenotification/l10n/lv.js -%%WWWDIR%%/apps/updatenotification/l10n/lv.json -%%WWWDIR%%/apps/updatenotification/l10n/mk.js -%%WWWDIR%%/apps/updatenotification/l10n/mk.json -%%WWWDIR%%/apps/updatenotification/l10n/nb.js -%%WWWDIR%%/apps/updatenotification/l10n/nb.json -%%WWWDIR%%/apps/updatenotification/l10n/nb_NO.js -%%WWWDIR%%/apps/updatenotification/l10n/nb_NO.json -%%WWWDIR%%/apps/updatenotification/l10n/nl.js -%%WWWDIR%%/apps/updatenotification/l10n/nl.json -%%WWWDIR%%/apps/updatenotification/l10n/oc.js -%%WWWDIR%%/apps/updatenotification/l10n/oc.json -%%WWWDIR%%/apps/updatenotification/l10n/pl.js -%%WWWDIR%%/apps/updatenotification/l10n/pl.json -%%WWWDIR%%/apps/updatenotification/l10n/pt_BR.js -%%WWWDIR%%/apps/updatenotification/l10n/pt_BR.json -%%WWWDIR%%/apps/updatenotification/l10n/pt_PT.js -%%WWWDIR%%/apps/updatenotification/l10n/pt_PT.json -%%WWWDIR%%/apps/updatenotification/l10n/ro.js -%%WWWDIR%%/apps/updatenotification/l10n/ro.json -%%WWWDIR%%/apps/updatenotification/l10n/ru.js -%%WWWDIR%%/apps/updatenotification/l10n/ru.json -%%WWWDIR%%/apps/updatenotification/l10n/sk.js -%%WWWDIR%%/apps/updatenotification/l10n/sk.json -%%WWWDIR%%/apps/updatenotification/l10n/sk_SK.js -%%WWWDIR%%/apps/updatenotification/l10n/sk_SK.json -%%WWWDIR%%/apps/updatenotification/l10n/sl.js -%%WWWDIR%%/apps/updatenotification/l10n/sl.json -%%WWWDIR%%/apps/updatenotification/l10n/sq.js -%%WWWDIR%%/apps/updatenotification/l10n/sq.json -%%WWWDIR%%/apps/updatenotification/l10n/sr.js -%%WWWDIR%%/apps/updatenotification/l10n/sr.json -%%WWWDIR%%/apps/updatenotification/l10n/sv.js -%%WWWDIR%%/apps/updatenotification/l10n/sv.json -%%WWWDIR%%/apps/updatenotification/l10n/th_TH.js -%%WWWDIR%%/apps/updatenotification/l10n/th_TH.json -%%WWWDIR%%/apps/updatenotification/l10n/tr.js -%%WWWDIR%%/apps/updatenotification/l10n/tr.json -%%WWWDIR%%/apps/updatenotification/l10n/uk.js -%%WWWDIR%%/apps/updatenotification/l10n/uk.json -%%WWWDIR%%/apps/updatenotification/l10n/vi.js -%%WWWDIR%%/apps/updatenotification/l10n/vi.json -%%WWWDIR%%/apps/updatenotification/l10n/zh_CN.js -%%WWWDIR%%/apps/updatenotification/l10n/zh_CN.json -%%WWWDIR%%/apps/updatenotification/l10n/zh_TW.js -%%WWWDIR%%/apps/updatenotification/l10n/zh_TW.json -%%WWWDIR%%/apps/updatenotification/lib/AppInfo/Application.php -%%WWWDIR%%/apps/updatenotification/lib/Controller/AdminController.php -%%WWWDIR%%/apps/updatenotification/lib/Notification/BackgroundJob.php -%%WWWDIR%%/apps/updatenotification/lib/Notification/Notifier.php -%%WWWDIR%%/apps/updatenotification/lib/ResetTokenBackgroundJob.php -%%WWWDIR%%/apps/updatenotification/lib/UpdateChecker.php -%%WWWDIR%%/apps/updatenotification/templates/admin.php -%%WWWDIR%%/apps/user_external/appinfo/app.php -%%WWWDIR%%/apps/user_external/appinfo/database.xml -%%WWWDIR%%/apps/user_external/appinfo/info.xml -%%WWWDIR%%/apps/user_external/appinfo/signature.json -%%WWWDIR%%/apps/user_external/img/app.svg -%%WWWDIR%%/apps/user_external/lib/base.php -%%WWWDIR%%/apps/user_external/lib/ftp.php -%%WWWDIR%%/apps/user_external/lib/imap.php -%%WWWDIR%%/apps/user_external/lib/smb.php -%%WWWDIR%%/apps/user_external/lib/webdavauth.php -%%WWWDIR%%/apps/user_ldap/ajax/clearMappings.php -%%WWWDIR%%/apps/user_ldap/ajax/deleteConfiguration.php -%%WWWDIR%%/apps/user_ldap/ajax/getConfiguration.php -%%WWWDIR%%/apps/user_ldap/ajax/getNewServerConfigPrefix.php -%%WWWDIR%%/apps/user_ldap/ajax/setConfiguration.php -%%WWWDIR%%/apps/user_ldap/ajax/testConfiguration.php -%%WWWDIR%%/apps/user_ldap/ajax/wizard.php -%%WWWDIR%%/apps/user_ldap/appinfo/app.php -%%WWWDIR%%/apps/user_ldap/appinfo/database.xml -%%WWWDIR%%/apps/user_ldap/appinfo/info.xml -%%WWWDIR%%/apps/user_ldap/appinfo/install.php -%%WWWDIR%%/apps/user_ldap/appinfo/register_command.php -%%WWWDIR%%/apps/user_ldap/appinfo/routes.php -%%WWWDIR%%/apps/user_ldap/appinfo/signature.json -%%WWWDIR%%/apps/user_ldap/appinfo/update.php -%%WWWDIR%%/apps/user_ldap/composer/autoload.php -%%WWWDIR%%/apps/user_ldap/composer/composer.json -%%WWWDIR%%/apps/user_ldap/composer/composer/ClassLoader.php -%%WWWDIR%%/apps/user_ldap/composer/composer/LICENSE -%%WWWDIR%%/apps/user_ldap/composer/composer/autoload_classmap.php -%%WWWDIR%%/apps/user_ldap/composer/composer/autoload_namespaces.php -%%WWWDIR%%/apps/user_ldap/composer/composer/autoload_psr4.php -%%WWWDIR%%/apps/user_ldap/composer/composer/autoload_real.php -%%WWWDIR%%/apps/user_ldap/composer/composer/autoload_static.php -%%WWWDIR%%/apps/user_ldap/css/renewPassword.css -%%WWWDIR%%/apps/user_ldap/css/settings.css -%%WWWDIR%%/apps/user_ldap/img/app-dark.svg -%%WWWDIR%%/apps/user_ldap/img/app.svg -%%WWWDIR%%/apps/user_ldap/img/copy.png -%%WWWDIR%%/apps/user_ldap/img/copy.svg -%%WWWDIR%%/apps/user_ldap/js/renewPassword.js -%%WWWDIR%%/apps/user_ldap/js/wizard/configModel.js -%%WWWDIR%%/apps/user_ldap/js/wizard/controller.js -%%WWWDIR%%/apps/user_ldap/js/wizard/view.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizard.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorAvailableAttributes.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorBaseDN.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorClearGroupMappings.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorClearUserMappings.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorEmailAttribute.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorFeatureAbstract.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorFilterGroup.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorFilterLogin.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorFilterUser.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorGeneric.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorGroupCount.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorGroupObjectClasses.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorGroupsForGroups.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorGroupsForUsers.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorPort.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorQueue.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorSimpleRequestAbstract.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorTestAbstract.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorTestBaseDN.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorTestConfiguration.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorTestLoginName.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorUserCount.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorUserDisplayNameAttribute.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorUserGroupAssociation.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardDetectorUserObjectClasses.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardFilterOnType.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardFilterOnTypeFactory.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardObject.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardTabAbstractFilter.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardTabAdvanced.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardTabElementary.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardTabExpert.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardTabGeneric.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardTabGroupFilter.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardTabLoginFilter.js -%%WWWDIR%%/apps/user_ldap/js/wizard/wizardTabUserFilter.js -%%WWWDIR%%/apps/user_ldap/l10n/.gitkeep -%%WWWDIR%%/apps/user_ldap/l10n/ach.js -%%WWWDIR%%/apps/user_ldap/l10n/ach.json -%%WWWDIR%%/apps/user_ldap/l10n/ady.js -%%WWWDIR%%/apps/user_ldap/l10n/ady.json -%%WWWDIR%%/apps/user_ldap/l10n/af_ZA.js -%%WWWDIR%%/apps/user_ldap/l10n/af_ZA.json -%%WWWDIR%%/apps/user_ldap/l10n/ak.js -%%WWWDIR%%/apps/user_ldap/l10n/ak.json -%%WWWDIR%%/apps/user_ldap/l10n/am_ET.js -%%WWWDIR%%/apps/user_ldap/l10n/am_ET.json -%%WWWDIR%%/apps/user_ldap/l10n/ar.js -%%WWWDIR%%/apps/user_ldap/l10n/ar.json -%%WWWDIR%%/apps/user_ldap/l10n/ast.js -%%WWWDIR%%/apps/user_ldap/l10n/ast.json -%%WWWDIR%%/apps/user_ldap/l10n/az.js -%%WWWDIR%%/apps/user_ldap/l10n/az.json -%%WWWDIR%%/apps/user_ldap/l10n/be.js -%%WWWDIR%%/apps/user_ldap/l10n/be.json -%%WWWDIR%%/apps/user_ldap/l10n/bg_BG.js -%%WWWDIR%%/apps/user_ldap/l10n/bg_BG.json -%%WWWDIR%%/apps/user_ldap/l10n/bn_BD.js -%%WWWDIR%%/apps/user_ldap/l10n/bn_BD.json -%%WWWDIR%%/apps/user_ldap/l10n/bn_IN.js -%%WWWDIR%%/apps/user_ldap/l10n/bn_IN.json -%%WWWDIR%%/apps/user_ldap/l10n/bs.js -%%WWWDIR%%/apps/user_ldap/l10n/bs.json -%%WWWDIR%%/apps/user_ldap/l10n/ca.js -%%WWWDIR%%/apps/user_ldap/l10n/ca.json -%%WWWDIR%%/apps/user_ldap/l10n/cs.js -%%WWWDIR%%/apps/user_ldap/l10n/cs.json -%%WWWDIR%%/apps/user_ldap/l10n/cs_CZ.js -%%WWWDIR%%/apps/user_ldap/l10n/cs_CZ.json -%%WWWDIR%%/apps/user_ldap/l10n/cy_GB.js -%%WWWDIR%%/apps/user_ldap/l10n/cy_GB.json -%%WWWDIR%%/apps/user_ldap/l10n/da.js -%%WWWDIR%%/apps/user_ldap/l10n/da.json -%%WWWDIR%%/apps/user_ldap/l10n/de.js -%%WWWDIR%%/apps/user_ldap/l10n/de.json -%%WWWDIR%%/apps/user_ldap/l10n/de_AT.js -%%WWWDIR%%/apps/user_ldap/l10n/de_AT.json -%%WWWDIR%%/apps/user_ldap/l10n/de_DE.js -%%WWWDIR%%/apps/user_ldap/l10n/de_DE.json -%%WWWDIR%%/apps/user_ldap/l10n/el.js -%%WWWDIR%%/apps/user_ldap/l10n/el.json -%%WWWDIR%%/apps/user_ldap/l10n/en_GB.js -%%WWWDIR%%/apps/user_ldap/l10n/en_GB.json -%%WWWDIR%%/apps/user_ldap/l10n/eo.js -%%WWWDIR%%/apps/user_ldap/l10n/eo.json -%%WWWDIR%%/apps/user_ldap/l10n/es.js -%%WWWDIR%%/apps/user_ldap/l10n/es.json -%%WWWDIR%%/apps/user_ldap/l10n/es_419.js -%%WWWDIR%%/apps/user_ldap/l10n/es_419.json -%%WWWDIR%%/apps/user_ldap/l10n/es_AR.js -%%WWWDIR%%/apps/user_ldap/l10n/es_AR.json -%%WWWDIR%%/apps/user_ldap/l10n/es_CL.js -%%WWWDIR%%/apps/user_ldap/l10n/es_CL.json -%%WWWDIR%%/apps/user_ldap/l10n/es_CO.js -%%WWWDIR%%/apps/user_ldap/l10n/es_CO.json -%%WWWDIR%%/apps/user_ldap/l10n/es_CR.js -%%WWWDIR%%/apps/user_ldap/l10n/es_CR.json -%%WWWDIR%%/apps/user_ldap/l10n/es_DO.js -%%WWWDIR%%/apps/user_ldap/l10n/es_DO.json -%%WWWDIR%%/apps/user_ldap/l10n/es_EC.js -%%WWWDIR%%/apps/user_ldap/l10n/es_EC.json -%%WWWDIR%%/apps/user_ldap/l10n/es_GT.js -%%WWWDIR%%/apps/user_ldap/l10n/es_GT.json -%%WWWDIR%%/apps/user_ldap/l10n/es_HN.js -%%WWWDIR%%/apps/user_ldap/l10n/es_HN.json -%%WWWDIR%%/apps/user_ldap/l10n/es_MX.js -%%WWWDIR%%/apps/user_ldap/l10n/es_MX.json -%%WWWDIR%%/apps/user_ldap/l10n/es_NI.js -%%WWWDIR%%/apps/user_ldap/l10n/es_NI.json -%%WWWDIR%%/apps/user_ldap/l10n/es_PA.js -%%WWWDIR%%/apps/user_ldap/l10n/es_PA.json -%%WWWDIR%%/apps/user_ldap/l10n/es_PE.js -%%WWWDIR%%/apps/user_ldap/l10n/es_PE.json -%%WWWDIR%%/apps/user_ldap/l10n/es_PR.js -%%WWWDIR%%/apps/user_ldap/l10n/es_PR.json -%%WWWDIR%%/apps/user_ldap/l10n/es_PY.js -%%WWWDIR%%/apps/user_ldap/l10n/es_PY.json -%%WWWDIR%%/apps/user_ldap/l10n/es_SV.js -%%WWWDIR%%/apps/user_ldap/l10n/es_SV.json -%%WWWDIR%%/apps/user_ldap/l10n/es_UY.js -%%WWWDIR%%/apps/user_ldap/l10n/es_UY.json -%%WWWDIR%%/apps/user_ldap/l10n/et_EE.js -%%WWWDIR%%/apps/user_ldap/l10n/et_EE.json -%%WWWDIR%%/apps/user_ldap/l10n/eu.js -%%WWWDIR%%/apps/user_ldap/l10n/eu.json -%%WWWDIR%%/apps/user_ldap/l10n/fa.js -%%WWWDIR%%/apps/user_ldap/l10n/fa.json -%%WWWDIR%%/apps/user_ldap/l10n/fi_FI.js -%%WWWDIR%%/apps/user_ldap/l10n/fi_FI.json -%%WWWDIR%%/apps/user_ldap/l10n/fil.js -%%WWWDIR%%/apps/user_ldap/l10n/fil.json -%%WWWDIR%%/apps/user_ldap/l10n/fr.js -%%WWWDIR%%/apps/user_ldap/l10n/fr.json -%%WWWDIR%%/apps/user_ldap/l10n/fy_NL.js -%%WWWDIR%%/apps/user_ldap/l10n/fy_NL.json -%%WWWDIR%%/apps/user_ldap/l10n/gl.js -%%WWWDIR%%/apps/user_ldap/l10n/gl.json -%%WWWDIR%%/apps/user_ldap/l10n/gu.js -%%WWWDIR%%/apps/user_ldap/l10n/gu.json -%%WWWDIR%%/apps/user_ldap/l10n/he.js -%%WWWDIR%%/apps/user_ldap/l10n/he.json -%%WWWDIR%%/apps/user_ldap/l10n/hi.js -%%WWWDIR%%/apps/user_ldap/l10n/hi.json -%%WWWDIR%%/apps/user_ldap/l10n/hr.js -%%WWWDIR%%/apps/user_ldap/l10n/hr.json -%%WWWDIR%%/apps/user_ldap/l10n/hu.js -%%WWWDIR%%/apps/user_ldap/l10n/hu.json -%%WWWDIR%%/apps/user_ldap/l10n/hu_HU.js -%%WWWDIR%%/apps/user_ldap/l10n/hu_HU.json -%%WWWDIR%%/apps/user_ldap/l10n/hy.js -%%WWWDIR%%/apps/user_ldap/l10n/hy.json -%%WWWDIR%%/apps/user_ldap/l10n/ia.js -%%WWWDIR%%/apps/user_ldap/l10n/ia.json -%%WWWDIR%%/apps/user_ldap/l10n/id.js -%%WWWDIR%%/apps/user_ldap/l10n/id.json -%%WWWDIR%%/apps/user_ldap/l10n/io.js -%%WWWDIR%%/apps/user_ldap/l10n/io.json -%%WWWDIR%%/apps/user_ldap/l10n/is.js -%%WWWDIR%%/apps/user_ldap/l10n/is.json -%%WWWDIR%%/apps/user_ldap/l10n/it.js -%%WWWDIR%%/apps/user_ldap/l10n/it.json -%%WWWDIR%%/apps/user_ldap/l10n/ja.js -%%WWWDIR%%/apps/user_ldap/l10n/ja.json -%%WWWDIR%%/apps/user_ldap/l10n/jv.js -%%WWWDIR%%/apps/user_ldap/l10n/jv.json -%%WWWDIR%%/apps/user_ldap/l10n/ka_GE.js -%%WWWDIR%%/apps/user_ldap/l10n/ka_GE.json -%%WWWDIR%%/apps/user_ldap/l10n/km.js -%%WWWDIR%%/apps/user_ldap/l10n/km.json -%%WWWDIR%%/apps/user_ldap/l10n/kn.js -%%WWWDIR%%/apps/user_ldap/l10n/kn.json -%%WWWDIR%%/apps/user_ldap/l10n/ko.js -%%WWWDIR%%/apps/user_ldap/l10n/ko.json -%%WWWDIR%%/apps/user_ldap/l10n/ku_IQ.js -%%WWWDIR%%/apps/user_ldap/l10n/ku_IQ.json -%%WWWDIR%%/apps/user_ldap/l10n/lb.js -%%WWWDIR%%/apps/user_ldap/l10n/lb.json -%%WWWDIR%%/apps/user_ldap/l10n/lo.js -%%WWWDIR%%/apps/user_ldap/l10n/lo.json -%%WWWDIR%%/apps/user_ldap/l10n/lt_LT.js -%%WWWDIR%%/apps/user_ldap/l10n/lt_LT.json -%%WWWDIR%%/apps/user_ldap/l10n/lv.js -%%WWWDIR%%/apps/user_ldap/l10n/lv.json -%%WWWDIR%%/apps/user_ldap/l10n/mg.js -%%WWWDIR%%/apps/user_ldap/l10n/mg.json -%%WWWDIR%%/apps/user_ldap/l10n/mk.js -%%WWWDIR%%/apps/user_ldap/l10n/mk.json -%%WWWDIR%%/apps/user_ldap/l10n/ml.js -%%WWWDIR%%/apps/user_ldap/l10n/ml.json -%%WWWDIR%%/apps/user_ldap/l10n/ml_IN.js -%%WWWDIR%%/apps/user_ldap/l10n/ml_IN.json -%%WWWDIR%%/apps/user_ldap/l10n/mn.js -%%WWWDIR%%/apps/user_ldap/l10n/mn.json -%%WWWDIR%%/apps/user_ldap/l10n/mr.js -%%WWWDIR%%/apps/user_ldap/l10n/mr.json -%%WWWDIR%%/apps/user_ldap/l10n/ms_MY.js -%%WWWDIR%%/apps/user_ldap/l10n/ms_MY.json -%%WWWDIR%%/apps/user_ldap/l10n/mt_MT.js -%%WWWDIR%%/apps/user_ldap/l10n/mt_MT.json -%%WWWDIR%%/apps/user_ldap/l10n/my_MM.js -%%WWWDIR%%/apps/user_ldap/l10n/my_MM.json -%%WWWDIR%%/apps/user_ldap/l10n/nb.js -%%WWWDIR%%/apps/user_ldap/l10n/nb.json -%%WWWDIR%%/apps/user_ldap/l10n/nb_NO.js -%%WWWDIR%%/apps/user_ldap/l10n/nb_NO.json -%%WWWDIR%%/apps/user_ldap/l10n/nds.js -%%WWWDIR%%/apps/user_ldap/l10n/nds.json -%%WWWDIR%%/apps/user_ldap/l10n/nl.js -%%WWWDIR%%/apps/user_ldap/l10n/nl.json -%%WWWDIR%%/apps/user_ldap/l10n/nn_NO.js -%%WWWDIR%%/apps/user_ldap/l10n/nn_NO.json -%%WWWDIR%%/apps/user_ldap/l10n/nqo.js -%%WWWDIR%%/apps/user_ldap/l10n/nqo.json -%%WWWDIR%%/apps/user_ldap/l10n/oc.js -%%WWWDIR%%/apps/user_ldap/l10n/oc.json -%%WWWDIR%%/apps/user_ldap/l10n/pa.js -%%WWWDIR%%/apps/user_ldap/l10n/pa.json -%%WWWDIR%%/apps/user_ldap/l10n/pl.js -%%WWWDIR%%/apps/user_ldap/l10n/pl.json -%%WWWDIR%%/apps/user_ldap/l10n/pt_BR.js -%%WWWDIR%%/apps/user_ldap/l10n/pt_BR.json -%%WWWDIR%%/apps/user_ldap/l10n/pt_PT.js -%%WWWDIR%%/apps/user_ldap/l10n/pt_PT.json -%%WWWDIR%%/apps/user_ldap/l10n/ro.js -%%WWWDIR%%/apps/user_ldap/l10n/ro.json -%%WWWDIR%%/apps/user_ldap/l10n/ru.js -%%WWWDIR%%/apps/user_ldap/l10n/ru.json -%%WWWDIR%%/apps/user_ldap/l10n/si_LK.js -%%WWWDIR%%/apps/user_ldap/l10n/si_LK.json -%%WWWDIR%%/apps/user_ldap/l10n/sk.js -%%WWWDIR%%/apps/user_ldap/l10n/sk.json -%%WWWDIR%%/apps/user_ldap/l10n/sk_SK.js -%%WWWDIR%%/apps/user_ldap/l10n/sk_SK.json -%%WWWDIR%%/apps/user_ldap/l10n/sl.js -%%WWWDIR%%/apps/user_ldap/l10n/sl.json -%%WWWDIR%%/apps/user_ldap/l10n/sq.js -%%WWWDIR%%/apps/user_ldap/l10n/sq.json -%%WWWDIR%%/apps/user_ldap/l10n/sr.js -%%WWWDIR%%/apps/user_ldap/l10n/sr.json -%%WWWDIR%%/apps/user_ldap/l10n/sr@latin.js -%%WWWDIR%%/apps/user_ldap/l10n/sr@latin.json -%%WWWDIR%%/apps/user_ldap/l10n/su.js -%%WWWDIR%%/apps/user_ldap/l10n/su.json -%%WWWDIR%%/apps/user_ldap/l10n/sv.js -%%WWWDIR%%/apps/user_ldap/l10n/sv.json -%%WWWDIR%%/apps/user_ldap/l10n/sw_KE.js -%%WWWDIR%%/apps/user_ldap/l10n/sw_KE.json -%%WWWDIR%%/apps/user_ldap/l10n/ta_IN.js -%%WWWDIR%%/apps/user_ldap/l10n/ta_IN.json -%%WWWDIR%%/apps/user_ldap/l10n/ta_LK.js -%%WWWDIR%%/apps/user_ldap/l10n/ta_LK.json -%%WWWDIR%%/apps/user_ldap/l10n/te.js -%%WWWDIR%%/apps/user_ldap/l10n/te.json -%%WWWDIR%%/apps/user_ldap/l10n/tg_TJ.js -%%WWWDIR%%/apps/user_ldap/l10n/tg_TJ.json -%%WWWDIR%%/apps/user_ldap/l10n/th.js -%%WWWDIR%%/apps/user_ldap/l10n/th.json -%%WWWDIR%%/apps/user_ldap/l10n/th_TH.js -%%WWWDIR%%/apps/user_ldap/l10n/th_TH.json -%%WWWDIR%%/apps/user_ldap/l10n/tl_PH.js -%%WWWDIR%%/apps/user_ldap/l10n/tl_PH.json -%%WWWDIR%%/apps/user_ldap/l10n/tr.js -%%WWWDIR%%/apps/user_ldap/l10n/tr.json -%%WWWDIR%%/apps/user_ldap/l10n/tzm.js -%%WWWDIR%%/apps/user_ldap/l10n/tzm.json -%%WWWDIR%%/apps/user_ldap/l10n/ug.js -%%WWWDIR%%/apps/user_ldap/l10n/ug.json -%%WWWDIR%%/apps/user_ldap/l10n/uk.js -%%WWWDIR%%/apps/user_ldap/l10n/uk.json -%%WWWDIR%%/apps/user_ldap/l10n/ur_PK.js -%%WWWDIR%%/apps/user_ldap/l10n/ur_PK.json -%%WWWDIR%%/apps/user_ldap/l10n/vi.js -%%WWWDIR%%/apps/user_ldap/l10n/vi.json -%%WWWDIR%%/apps/user_ldap/l10n/zh_CN.js -%%WWWDIR%%/apps/user_ldap/l10n/zh_CN.json -%%WWWDIR%%/apps/user_ldap/l10n/zh_HK.js -%%WWWDIR%%/apps/user_ldap/l10n/zh_HK.json -%%WWWDIR%%/apps/user_ldap/l10n/zh_TW.js -%%WWWDIR%%/apps/user_ldap/l10n/zh_TW.json -%%WWWDIR%%/apps/user_ldap/lib/Access.php -%%WWWDIR%%/apps/user_ldap/lib/AccessFactory.php -%%WWWDIR%%/apps/user_ldap/lib/AppInfo/Application.php -%%WWWDIR%%/apps/user_ldap/lib/BackendUtility.php -%%WWWDIR%%/apps/user_ldap/lib/Command/CheckUser.php -%%WWWDIR%%/apps/user_ldap/lib/Command/CreateEmptyConfig.php -%%WWWDIR%%/apps/user_ldap/lib/Command/DeleteConfig.php -%%WWWDIR%%/apps/user_ldap/lib/Command/Search.php -%%WWWDIR%%/apps/user_ldap/lib/Command/SetConfig.php -%%WWWDIR%%/apps/user_ldap/lib/Command/ShowConfig.php -%%WWWDIR%%/apps/user_ldap/lib/Command/ShowRemnants.php -%%WWWDIR%%/apps/user_ldap/lib/Command/TestConfig.php -%%WWWDIR%%/apps/user_ldap/lib/Configuration.php -%%WWWDIR%%/apps/user_ldap/lib/Connection.php -%%WWWDIR%%/apps/user_ldap/lib/ConnectionFactory.php -%%WWWDIR%%/apps/user_ldap/lib/Controller/ConfigAPIController.php -%%WWWDIR%%/apps/user_ldap/lib/Controller/RenewPasswordController.php -%%WWWDIR%%/apps/user_ldap/lib/Exceptions/ConstraintViolationException.php -%%WWWDIR%%/apps/user_ldap/lib/Exceptions/NotOnLDAP.php -%%WWWDIR%%/apps/user_ldap/lib/FilesystemHelper.php -%%WWWDIR%%/apps/user_ldap/lib/GroupPluginManager.php -%%WWWDIR%%/apps/user_ldap/lib/Group_LDAP.php -%%WWWDIR%%/apps/user_ldap/lib/Group_Proxy.php -%%WWWDIR%%/apps/user_ldap/lib/Helper.php -%%WWWDIR%%/apps/user_ldap/lib/IGroupLDAP.php -%%WWWDIR%%/apps/user_ldap/lib/ILDAPGroupPlugin.php -%%WWWDIR%%/apps/user_ldap/lib/ILDAPUserPlugin.php -%%WWWDIR%%/apps/user_ldap/lib/ILDAPWrapper.php -%%WWWDIR%%/apps/user_ldap/lib/IUserLDAP.php -%%WWWDIR%%/apps/user_ldap/lib/Jobs/CleanUp.php -%%WWWDIR%%/apps/user_ldap/lib/Jobs/Sync.php -%%WWWDIR%%/apps/user_ldap/lib/Jobs/UpdateGroups.php -%%WWWDIR%%/apps/user_ldap/lib/LDAP.php -%%WWWDIR%%/apps/user_ldap/lib/LDAPProvider.php -%%WWWDIR%%/apps/user_ldap/lib/LDAPProviderFactory.php -%%WWWDIR%%/apps/user_ldap/lib/LDAPUtility.php -%%WWWDIR%%/apps/user_ldap/lib/LogWrapper.php -%%WWWDIR%%/apps/user_ldap/lib/Mapping/AbstractMapping.php -%%WWWDIR%%/apps/user_ldap/lib/Mapping/GroupMapping.php -%%WWWDIR%%/apps/user_ldap/lib/Mapping/UserMapping.php -%%WWWDIR%%/apps/user_ldap/lib/Migration/UUIDFix.php -%%WWWDIR%%/apps/user_ldap/lib/Migration/UUIDFixGroup.php -%%WWWDIR%%/apps/user_ldap/lib/Migration/UUIDFixInsert.php -%%WWWDIR%%/apps/user_ldap/lib/Migration/UUIDFixUser.php -%%WWWDIR%%/apps/user_ldap/lib/Notification/Notifier.php -%%WWWDIR%%/apps/user_ldap/lib/Proxy.php -%%WWWDIR%%/apps/user_ldap/lib/Settings/Admin.php -%%WWWDIR%%/apps/user_ldap/lib/Settings/Section.php -%%WWWDIR%%/apps/user_ldap/lib/User/DeletedUsersIndex.php -%%WWWDIR%%/apps/user_ldap/lib/User/IUserTools.php -%%WWWDIR%%/apps/user_ldap/lib/User/Manager.php -%%WWWDIR%%/apps/user_ldap/lib/User/OfflineUser.php -%%WWWDIR%%/apps/user_ldap/lib/User/User.php -%%WWWDIR%%/apps/user_ldap/lib/UserPluginManager.php -%%WWWDIR%%/apps/user_ldap/lib/User_LDAP.php -%%WWWDIR%%/apps/user_ldap/lib/User_Proxy.php -%%WWWDIR%%/apps/user_ldap/lib/Wizard.php -%%WWWDIR%%/apps/user_ldap/lib/WizardResult.php -%%WWWDIR%%/apps/user_ldap/templates/part.settingcontrols.php -%%WWWDIR%%/apps/user_ldap/templates/part.wizard-groupfilter.php -%%WWWDIR%%/apps/user_ldap/templates/part.wizard-loginfilter.php -%%WWWDIR%%/apps/user_ldap/templates/part.wizard-server.php -%%WWWDIR%%/apps/user_ldap/templates/part.wizard-userfilter.php -%%WWWDIR%%/apps/user_ldap/templates/part.wizardcontrols.php -%%WWWDIR%%/apps/user_ldap/templates/renewpassword.php -%%WWWDIR%%/apps/user_ldap/templates/settings.php -%%WWWDIR%%/apps/user_ldap/vendor/ui-multiselect/MIT-LICENSE -%%WWWDIR%%/apps/user_ldap/vendor/ui-multiselect/jquery.multiselect.css -%%WWWDIR%%/apps/user_ldap/vendor/ui-multiselect/src/jquery.multiselect.js -%%WWWDIR%%/apps/workflowengine/appinfo/app.php -%%WWWDIR%%/apps/workflowengine/appinfo/database.xml -%%WWWDIR%%/apps/workflowengine/appinfo/info.xml -%%WWWDIR%%/apps/workflowengine/appinfo/routes.php -%%WWWDIR%%/apps/workflowengine/appinfo/signature.json -%%WWWDIR%%/apps/workflowengine/css/admin.css -%%WWWDIR%%/apps/workflowengine/js/admin.js -%%WWWDIR%%/apps/workflowengine/js/filemimetypeplugin.js -%%WWWDIR%%/apps/workflowengine/js/filesizeplugin.js -%%WWWDIR%%/apps/workflowengine/js/filesystemtagsplugin.js -%%WWWDIR%%/apps/workflowengine/js/requestremoteaddressplugin.js -%%WWWDIR%%/apps/workflowengine/js/requesttimeplugin.js -%%WWWDIR%%/apps/workflowengine/js/requesturlplugin.js -%%WWWDIR%%/apps/workflowengine/js/requestuseragentplugin.js -%%WWWDIR%%/apps/workflowengine/js/usergroupmembershipplugin.js -%%WWWDIR%%/apps/workflowengine/l10n/.gitkeep -%%WWWDIR%%/apps/workflowengine/l10n/ast.js -%%WWWDIR%%/apps/workflowengine/l10n/ast.json -%%WWWDIR%%/apps/workflowengine/l10n/bg.js -%%WWWDIR%%/apps/workflowengine/l10n/bg.json -%%WWWDIR%%/apps/workflowengine/l10n/bg_BG.js -%%WWWDIR%%/apps/workflowengine/l10n/bg_BG.json -%%WWWDIR%%/apps/workflowengine/l10n/ca.js -%%WWWDIR%%/apps/workflowengine/l10n/ca.json -%%WWWDIR%%/apps/workflowengine/l10n/cs.js -%%WWWDIR%%/apps/workflowengine/l10n/cs.json -%%WWWDIR%%/apps/workflowengine/l10n/cs_CZ.js -%%WWWDIR%%/apps/workflowengine/l10n/cs_CZ.json -%%WWWDIR%%/apps/workflowengine/l10n/da.js -%%WWWDIR%%/apps/workflowengine/l10n/da.json -%%WWWDIR%%/apps/workflowengine/l10n/de.js -%%WWWDIR%%/apps/workflowengine/l10n/de.json -%%WWWDIR%%/apps/workflowengine/l10n/de_DE.js -%%WWWDIR%%/apps/workflowengine/l10n/de_DE.json -%%WWWDIR%%/apps/workflowengine/l10n/el.js -%%WWWDIR%%/apps/workflowengine/l10n/el.json -%%WWWDIR%%/apps/workflowengine/l10n/en_GB.js -%%WWWDIR%%/apps/workflowengine/l10n/en_GB.json -%%WWWDIR%%/apps/workflowengine/l10n/es.js -%%WWWDIR%%/apps/workflowengine/l10n/es.json -%%WWWDIR%%/apps/workflowengine/l10n/es_419.js -%%WWWDIR%%/apps/workflowengine/l10n/es_419.json -%%WWWDIR%%/apps/workflowengine/l10n/es_AR.js -%%WWWDIR%%/apps/workflowengine/l10n/es_AR.json -%%WWWDIR%%/apps/workflowengine/l10n/es_CL.js -%%WWWDIR%%/apps/workflowengine/l10n/es_CL.json -%%WWWDIR%%/apps/workflowengine/l10n/es_CO.js -%%WWWDIR%%/apps/workflowengine/l10n/es_CO.json -%%WWWDIR%%/apps/workflowengine/l10n/es_CR.js -%%WWWDIR%%/apps/workflowengine/l10n/es_CR.json -%%WWWDIR%%/apps/workflowengine/l10n/es_DO.js -%%WWWDIR%%/apps/workflowengine/l10n/es_DO.json -%%WWWDIR%%/apps/workflowengine/l10n/es_EC.js -%%WWWDIR%%/apps/workflowengine/l10n/es_EC.json -%%WWWDIR%%/apps/workflowengine/l10n/es_GT.js -%%WWWDIR%%/apps/workflowengine/l10n/es_GT.json -%%WWWDIR%%/apps/workflowengine/l10n/es_HN.js -%%WWWDIR%%/apps/workflowengine/l10n/es_HN.json -%%WWWDIR%%/apps/workflowengine/l10n/es_MX.js -%%WWWDIR%%/apps/workflowengine/l10n/es_MX.json -%%WWWDIR%%/apps/workflowengine/l10n/es_NI.js -%%WWWDIR%%/apps/workflowengine/l10n/es_NI.json -%%WWWDIR%%/apps/workflowengine/l10n/es_PA.js -%%WWWDIR%%/apps/workflowengine/l10n/es_PA.json -%%WWWDIR%%/apps/workflowengine/l10n/es_PE.js -%%WWWDIR%%/apps/workflowengine/l10n/es_PE.json -%%WWWDIR%%/apps/workflowengine/l10n/es_PR.js -%%WWWDIR%%/apps/workflowengine/l10n/es_PR.json -%%WWWDIR%%/apps/workflowengine/l10n/es_PY.js -%%WWWDIR%%/apps/workflowengine/l10n/es_PY.json -%%WWWDIR%%/apps/workflowengine/l10n/es_SV.js -%%WWWDIR%%/apps/workflowengine/l10n/es_SV.json -%%WWWDIR%%/apps/workflowengine/l10n/es_UY.js -%%WWWDIR%%/apps/workflowengine/l10n/es_UY.json -%%WWWDIR%%/apps/workflowengine/l10n/et_EE.js -%%WWWDIR%%/apps/workflowengine/l10n/et_EE.json -%%WWWDIR%%/apps/workflowengine/l10n/fa.js -%%WWWDIR%%/apps/workflowengine/l10n/fa.json -%%WWWDIR%%/apps/workflowengine/l10n/fi.js -%%WWWDIR%%/apps/workflowengine/l10n/fi.json -%%WWWDIR%%/apps/workflowengine/l10n/fr.js -%%WWWDIR%%/apps/workflowengine/l10n/fr.json -%%WWWDIR%%/apps/workflowengine/l10n/gl.js -%%WWWDIR%%/apps/workflowengine/l10n/gl.json -%%WWWDIR%%/apps/workflowengine/l10n/hu.js -%%WWWDIR%%/apps/workflowengine/l10n/hu.json -%%WWWDIR%%/apps/workflowengine/l10n/hu_HU.js -%%WWWDIR%%/apps/workflowengine/l10n/hu_HU.json -%%WWWDIR%%/apps/workflowengine/l10n/id.js -%%WWWDIR%%/apps/workflowengine/l10n/id.json -%%WWWDIR%%/apps/workflowengine/l10n/is.js -%%WWWDIR%%/apps/workflowengine/l10n/is.json -%%WWWDIR%%/apps/workflowengine/l10n/it.js -%%WWWDIR%%/apps/workflowengine/l10n/it.json -%%WWWDIR%%/apps/workflowengine/l10n/ja.js -%%WWWDIR%%/apps/workflowengine/l10n/ja.json -%%WWWDIR%%/apps/workflowengine/l10n/ka_GE.js -%%WWWDIR%%/apps/workflowengine/l10n/ka_GE.json -%%WWWDIR%%/apps/workflowengine/l10n/ko.js -%%WWWDIR%%/apps/workflowengine/l10n/ko.json -%%WWWDIR%%/apps/workflowengine/l10n/lt_LT.js -%%WWWDIR%%/apps/workflowengine/l10n/lt_LT.json -%%WWWDIR%%/apps/workflowengine/l10n/lv.js -%%WWWDIR%%/apps/workflowengine/l10n/lv.json -%%WWWDIR%%/apps/workflowengine/l10n/mn.js -%%WWWDIR%%/apps/workflowengine/l10n/mn.json -%%WWWDIR%%/apps/workflowengine/l10n/nb.js -%%WWWDIR%%/apps/workflowengine/l10n/nb.json -%%WWWDIR%%/apps/workflowengine/l10n/nb_NO.js -%%WWWDIR%%/apps/workflowengine/l10n/nb_NO.json -%%WWWDIR%%/apps/workflowengine/l10n/nl.js -%%WWWDIR%%/apps/workflowengine/l10n/nl.json -%%WWWDIR%%/apps/workflowengine/l10n/pl.js -%%WWWDIR%%/apps/workflowengine/l10n/pl.json -%%WWWDIR%%/apps/workflowengine/l10n/pt_BR.js -%%WWWDIR%%/apps/workflowengine/l10n/pt_BR.json -%%WWWDIR%%/apps/workflowengine/l10n/ru.js -%%WWWDIR%%/apps/workflowengine/l10n/ru.json -%%WWWDIR%%/apps/workflowengine/l10n/sk.js -%%WWWDIR%%/apps/workflowengine/l10n/sk.json -%%WWWDIR%%/apps/workflowengine/l10n/sk_SK.js -%%WWWDIR%%/apps/workflowengine/l10n/sk_SK.json -%%WWWDIR%%/apps/workflowengine/l10n/sq.js -%%WWWDIR%%/apps/workflowengine/l10n/sq.json -%%WWWDIR%%/apps/workflowengine/l10n/sr.js -%%WWWDIR%%/apps/workflowengine/l10n/sr.json -%%WWWDIR%%/apps/workflowengine/l10n/sv.js -%%WWWDIR%%/apps/workflowengine/l10n/sv.json -%%WWWDIR%%/apps/workflowengine/l10n/tr.js -%%WWWDIR%%/apps/workflowengine/l10n/tr.json -%%WWWDIR%%/apps/workflowengine/l10n/zh_CN.js -%%WWWDIR%%/apps/workflowengine/l10n/zh_CN.json -%%WWWDIR%%/apps/workflowengine/l10n/zh_TW.js -%%WWWDIR%%/apps/workflowengine/l10n/zh_TW.json -%%WWWDIR%%/apps/workflowengine/lib/AppInfo/Application.php -%%WWWDIR%%/apps/workflowengine/lib/Check/AbstractStringCheck.php -%%WWWDIR%%/apps/workflowengine/lib/Check/FileMimeType.php -%%WWWDIR%%/apps/workflowengine/lib/Check/FileSize.php -%%WWWDIR%%/apps/workflowengine/lib/Check/FileSystemTags.php -%%WWWDIR%%/apps/workflowengine/lib/Check/RequestRemoteAddress.php -%%WWWDIR%%/apps/workflowengine/lib/Check/RequestTime.php -%%WWWDIR%%/apps/workflowengine/lib/Check/RequestURL.php -%%WWWDIR%%/apps/workflowengine/lib/Check/RequestUserAgent.php -%%WWWDIR%%/apps/workflowengine/lib/Check/UserGroupMembership.php -%%WWWDIR%%/apps/workflowengine/lib/Controller/FlowOperations.php -%%WWWDIR%%/apps/workflowengine/lib/Controller/RequestTime.php -%%WWWDIR%%/apps/workflowengine/lib/Manager.php -%%WWWDIR%%/apps/workflowengine/lib/Settings/Section.php -%%WWWDIR%%/apps/workflowengine/templates/admin.php +%%WWWDIR%%/apps-pkg/activity/appinfo/app.php +%%WWWDIR%%/apps-pkg/activity/appinfo/info.xml +%%WWWDIR%%/apps-pkg/activity/appinfo/routes.php +%%WWWDIR%%/apps-pkg/activity/appinfo/signature.json +%%WWWDIR%%/apps-pkg/activity/appinfo/update.php +%%WWWDIR%%/apps-pkg/activity/css/settings.css +%%WWWDIR%%/apps-pkg/activity/css/style.css +%%WWWDIR%%/apps-pkg/activity/docs/create.md +%%WWWDIR%%/apps-pkg/activity/docs/endpoint-v2.md +%%WWWDIR%%/apps-pkg/activity/docs/filter.md +%%WWWDIR%%/apps-pkg/activity/docs/provider.md +%%WWWDIR%%/apps-pkg/activity/docs/setting.md +%%WWWDIR%%/apps-pkg/activity/img/activity-dark.svg +%%WWWDIR%%/apps-pkg/activity/img/activity.svg +%%WWWDIR%%/apps-pkg/activity/img/add-color.svg +%%WWWDIR%%/apps-pkg/activity/img/change.svg +%%WWWDIR%%/apps-pkg/activity/img/delete-color.svg +%%WWWDIR%%/apps-pkg/activity/js/activity-sidebar.json +%%WWWDIR%%/apps-pkg/activity/js/activitycollection.js +%%WWWDIR%%/apps-pkg/activity/js/activitymodel.js +%%WWWDIR%%/apps-pkg/activity/js/activitytabview.js +%%WWWDIR%%/apps-pkg/activity/js/admin.js +%%WWWDIR%%/apps-pkg/activity/js/feedSettings.js +%%WWWDIR%%/apps-pkg/activity/js/filesplugin.js +%%WWWDIR%%/apps-pkg/activity/js/richObjectStringParser.js +%%WWWDIR%%/apps-pkg/activity/js/script.js +%%WWWDIR%%/apps-pkg/activity/js/settings.js +%%WWWDIR%%/apps-pkg/activity/l10n/.gitkeep +%%WWWDIR%%/apps-pkg/activity/l10n/.tx/config +%%WWWDIR%%/apps-pkg/activity/l10n/af.js +%%WWWDIR%%/apps-pkg/activity/l10n/af.json +%%WWWDIR%%/apps-pkg/activity/l10n/ar.js +%%WWWDIR%%/apps-pkg/activity/l10n/ar.json +%%WWWDIR%%/apps-pkg/activity/l10n/ast.js +%%WWWDIR%%/apps-pkg/activity/l10n/ast.json +%%WWWDIR%%/apps-pkg/activity/l10n/az.js +%%WWWDIR%%/apps-pkg/activity/l10n/az.json +%%WWWDIR%%/apps-pkg/activity/l10n/bg.js +%%WWWDIR%%/apps-pkg/activity/l10n/bg.json +%%WWWDIR%%/apps-pkg/activity/l10n/bn_BD.js +%%WWWDIR%%/apps-pkg/activity/l10n/bn_BD.json +%%WWWDIR%%/apps-pkg/activity/l10n/br.js +%%WWWDIR%%/apps-pkg/activity/l10n/br.json +%%WWWDIR%%/apps-pkg/activity/l10n/ca.js +%%WWWDIR%%/apps-pkg/activity/l10n/ca.json +%%WWWDIR%%/apps-pkg/activity/l10n/cs.js +%%WWWDIR%%/apps-pkg/activity/l10n/cs.json +%%WWWDIR%%/apps-pkg/activity/l10n/da.js +%%WWWDIR%%/apps-pkg/activity/l10n/da.json +%%WWWDIR%%/apps-pkg/activity/l10n/de.js +%%WWWDIR%%/apps-pkg/activity/l10n/de.json +%%WWWDIR%%/apps-pkg/activity/l10n/de_DE.js +%%WWWDIR%%/apps-pkg/activity/l10n/de_DE.json +%%WWWDIR%%/apps-pkg/activity/l10n/el.js +%%WWWDIR%%/apps-pkg/activity/l10n/el.json +%%WWWDIR%%/apps-pkg/activity/l10n/en_GB.js +%%WWWDIR%%/apps-pkg/activity/l10n/en_GB.json +%%WWWDIR%%/apps-pkg/activity/l10n/eo.js +%%WWWDIR%%/apps-pkg/activity/l10n/eo.json +%%WWWDIR%%/apps-pkg/activity/l10n/es.js +%%WWWDIR%%/apps-pkg/activity/l10n/es.json +%%WWWDIR%%/apps-pkg/activity/l10n/es_419.js +%%WWWDIR%%/apps-pkg/activity/l10n/es_419.json +%%WWWDIR%%/apps-pkg/activity/l10n/es_AR.js +%%WWWDIR%%/apps-pkg/activity/l10n/es_AR.json +%%WWWDIR%%/apps-pkg/activity/l10n/es_CL.js +%%WWWDIR%%/apps-pkg/activity/l10n/es_CL.json +%%WWWDIR%%/apps-pkg/activity/l10n/es_CO.js +%%WWWDIR%%/apps-pkg/activity/l10n/es_CO.json +%%WWWDIR%%/apps-pkg/activity/l10n/es_CR.js +%%WWWDIR%%/apps-pkg/activity/l10n/es_CR.json +%%WWWDIR%%/apps-pkg/activity/l10n/es_DO.js +%%WWWDIR%%/apps-pkg/activity/l10n/es_DO.json +%%WWWDIR%%/apps-pkg/activity/l10n/es_EC.js +%%WWWDIR%%/apps-pkg/activity/l10n/es_EC.json +%%WWWDIR%%/apps-pkg/activity/l10n/es_GT.js +%%WWWDIR%%/apps-pkg/activity/l10n/es_GT.json +%%WWWDIR%%/apps-pkg/activity/l10n/es_HN.js +%%WWWDIR%%/apps-pkg/activity/l10n/es_HN.json +%%WWWDIR%%/apps-pkg/activity/l10n/es_MX.js +%%WWWDIR%%/apps-pkg/activity/l10n/es_MX.json +%%WWWDIR%%/apps-pkg/activity/l10n/es_NI.js +%%WWWDIR%%/apps-pkg/activity/l10n/es_NI.json +%%WWWDIR%%/apps-pkg/activity/l10n/es_PA.js +%%WWWDIR%%/apps-pkg/activity/l10n/es_PA.json +%%WWWDIR%%/apps-pkg/activity/l10n/es_PE.js +%%WWWDIR%%/apps-pkg/activity/l10n/es_PE.json +%%WWWDIR%%/apps-pkg/activity/l10n/es_PR.js +%%WWWDIR%%/apps-pkg/activity/l10n/es_PR.json +%%WWWDIR%%/apps-pkg/activity/l10n/es_PY.js +%%WWWDIR%%/apps-pkg/activity/l10n/es_PY.json +%%WWWDIR%%/apps-pkg/activity/l10n/es_SV.js +%%WWWDIR%%/apps-pkg/activity/l10n/es_SV.json +%%WWWDIR%%/apps-pkg/activity/l10n/es_UY.js +%%WWWDIR%%/apps-pkg/activity/l10n/es_UY.json +%%WWWDIR%%/apps-pkg/activity/l10n/et_EE.js +%%WWWDIR%%/apps-pkg/activity/l10n/et_EE.json +%%WWWDIR%%/apps-pkg/activity/l10n/eu.js +%%WWWDIR%%/apps-pkg/activity/l10n/eu.json +%%WWWDIR%%/apps-pkg/activity/l10n/fa.js +%%WWWDIR%%/apps-pkg/activity/l10n/fa.json +%%WWWDIR%%/apps-pkg/activity/l10n/fi.js +%%WWWDIR%%/apps-pkg/activity/l10n/fi.json +%%WWWDIR%%/apps-pkg/activity/l10n/fr.js +%%WWWDIR%%/apps-pkg/activity/l10n/fr.json +%%WWWDIR%%/apps-pkg/activity/l10n/gl.js +%%WWWDIR%%/apps-pkg/activity/l10n/gl.json +%%WWWDIR%%/apps-pkg/activity/l10n/he.js +%%WWWDIR%%/apps-pkg/activity/l10n/he.json +%%WWWDIR%%/apps-pkg/activity/l10n/hr.js +%%WWWDIR%%/apps-pkg/activity/l10n/hr.json +%%WWWDIR%%/apps-pkg/activity/l10n/hu.js +%%WWWDIR%%/apps-pkg/activity/l10n/hu.json +%%WWWDIR%%/apps-pkg/activity/l10n/ia.js +%%WWWDIR%%/apps-pkg/activity/l10n/ia.json +%%WWWDIR%%/apps-pkg/activity/l10n/id.js +%%WWWDIR%%/apps-pkg/activity/l10n/id.json +%%WWWDIR%%/apps-pkg/activity/l10n/is.js +%%WWWDIR%%/apps-pkg/activity/l10n/is.json +%%WWWDIR%%/apps-pkg/activity/l10n/it.js +%%WWWDIR%%/apps-pkg/activity/l10n/it.json +%%WWWDIR%%/apps-pkg/activity/l10n/ja.js +%%WWWDIR%%/apps-pkg/activity/l10n/ja.json +%%WWWDIR%%/apps-pkg/activity/l10n/ka_GE.js +%%WWWDIR%%/apps-pkg/activity/l10n/ka_GE.json +%%WWWDIR%%/apps-pkg/activity/l10n/kab.js +%%WWWDIR%%/apps-pkg/activity/l10n/kab.json +%%WWWDIR%%/apps-pkg/activity/l10n/km.js +%%WWWDIR%%/apps-pkg/activity/l10n/km.json +%%WWWDIR%%/apps-pkg/activity/l10n/ko.js +%%WWWDIR%%/apps-pkg/activity/l10n/ko.json +%%WWWDIR%%/apps-pkg/activity/l10n/lb.js +%%WWWDIR%%/apps-pkg/activity/l10n/lb.json +%%WWWDIR%%/apps-pkg/activity/l10n/lt_LT.js +%%WWWDIR%%/apps-pkg/activity/l10n/lt_LT.json +%%WWWDIR%%/apps-pkg/activity/l10n/lv.js +%%WWWDIR%%/apps-pkg/activity/l10n/lv.json +%%WWWDIR%%/apps-pkg/activity/l10n/mk.js +%%WWWDIR%%/apps-pkg/activity/l10n/mk.json +%%WWWDIR%%/apps-pkg/activity/l10n/mn.js +%%WWWDIR%%/apps-pkg/activity/l10n/mn.json +%%WWWDIR%%/apps-pkg/activity/l10n/nb.js +%%WWWDIR%%/apps-pkg/activity/l10n/nb.json +%%WWWDIR%%/apps-pkg/activity/l10n/ne.js +%%WWWDIR%%/apps-pkg/activity/l10n/ne.json +%%WWWDIR%%/apps-pkg/activity/l10n/nl.js +%%WWWDIR%%/apps-pkg/activity/l10n/nl.json +%%WWWDIR%%/apps-pkg/activity/l10n/nn_NO.js +%%WWWDIR%%/apps-pkg/activity/l10n/nn_NO.json +%%WWWDIR%%/apps-pkg/activity/l10n/no-php +%%WWWDIR%%/apps-pkg/activity/l10n/pl.js +%%WWWDIR%%/apps-pkg/activity/l10n/pl.json +%%WWWDIR%%/apps-pkg/activity/l10n/pt_BR.js +%%WWWDIR%%/apps-pkg/activity/l10n/pt_BR.json +%%WWWDIR%%/apps-pkg/activity/l10n/pt_PT.js +%%WWWDIR%%/apps-pkg/activity/l10n/pt_PT.json +%%WWWDIR%%/apps-pkg/activity/l10n/ro.js +%%WWWDIR%%/apps-pkg/activity/l10n/ro.json +%%WWWDIR%%/apps-pkg/activity/l10n/ru.js +%%WWWDIR%%/apps-pkg/activity/l10n/ru.json +%%WWWDIR%%/apps-pkg/activity/l10n/si_LK.js +%%WWWDIR%%/apps-pkg/activity/l10n/si_LK.json +%%WWWDIR%%/apps-pkg/activity/l10n/sk.js +%%WWWDIR%%/apps-pkg/activity/l10n/sk.json +%%WWWDIR%%/apps-pkg/activity/l10n/sl.js +%%WWWDIR%%/apps-pkg/activity/l10n/sl.json +%%WWWDIR%%/apps-pkg/activity/l10n/sq.js +%%WWWDIR%%/apps-pkg/activity/l10n/sq.json +%%WWWDIR%%/apps-pkg/activity/l10n/sr.js +%%WWWDIR%%/apps-pkg/activity/l10n/sr.json +%%WWWDIR%%/apps-pkg/activity/l10n/sv.js +%%WWWDIR%%/apps-pkg/activity/l10n/sv.json +%%WWWDIR%%/apps-pkg/activity/l10n/th.js +%%WWWDIR%%/apps-pkg/activity/l10n/th.json +%%WWWDIR%%/apps-pkg/activity/l10n/tr.js +%%WWWDIR%%/apps-pkg/activity/l10n/tr.json +%%WWWDIR%%/apps-pkg/activity/l10n/uk.js +%%WWWDIR%%/apps-pkg/activity/l10n/uk.json +%%WWWDIR%%/apps-pkg/activity/l10n/vi.js +%%WWWDIR%%/apps-pkg/activity/l10n/vi.json +%%WWWDIR%%/apps-pkg/activity/l10n/zh_CN.js +%%WWWDIR%%/apps-pkg/activity/l10n/zh_CN.json +%%WWWDIR%%/apps-pkg/activity/l10n/zh_HK.js +%%WWWDIR%%/apps-pkg/activity/l10n/zh_HK.json +%%WWWDIR%%/apps-pkg/activity/l10n/zh_TW.js +%%WWWDIR%%/apps-pkg/activity/l10n/zh_TW.json +%%WWWDIR%%/apps-pkg/activity/lib/AppInfo/Application.php +%%WWWDIR%%/apps-pkg/activity/lib/BackgroundJob/EmailNotification.php +%%WWWDIR%%/apps-pkg/activity/lib/BackgroundJob/ExpireActivities.php +%%WWWDIR%%/apps-pkg/activity/lib/BackgroundJob/RemoteActivity.php +%%WWWDIR%%/apps-pkg/activity/lib/Capabilities.php +%%WWWDIR%%/apps-pkg/activity/lib/Command/SendEmails.php +%%WWWDIR%%/apps-pkg/activity/lib/Consumer.php +%%WWWDIR%%/apps-pkg/activity/lib/Controller/APIv1.php +%%WWWDIR%%/apps-pkg/activity/lib/Controller/APIv2.php +%%WWWDIR%%/apps-pkg/activity/lib/Controller/Activities.php +%%WWWDIR%%/apps-pkg/activity/lib/Controller/Feed.php +%%WWWDIR%%/apps-pkg/activity/lib/Controller/RemoteActivity.php +%%WWWDIR%%/apps-pkg/activity/lib/Controller/Settings.php +%%WWWDIR%%/apps-pkg/activity/lib/CurrentUser.php +%%WWWDIR%%/apps-pkg/activity/lib/Data.php +%%WWWDIR%%/apps-pkg/activity/lib/DataHelper.php +%%WWWDIR%%/apps-pkg/activity/lib/Exception/InvalidFilterException.php +%%WWWDIR%%/apps-pkg/activity/lib/Extension/Files.php +%%WWWDIR%%/apps-pkg/activity/lib/Extension/Files_Sharing.php +%%WWWDIR%%/apps-pkg/activity/lib/Extension/LegacyParser.php +%%WWWDIR%%/apps-pkg/activity/lib/FilesHooks.php +%%WWWDIR%%/apps-pkg/activity/lib/FilesHooksStatic.php +%%WWWDIR%%/apps-pkg/activity/lib/Filter/AllFilter.php +%%WWWDIR%%/apps-pkg/activity/lib/Filter/ByFilter.php +%%WWWDIR%%/apps-pkg/activity/lib/Filter/SelfFilter.php +%%WWWDIR%%/apps-pkg/activity/lib/Formatter/BaseFormatter.php +%%WWWDIR%%/apps-pkg/activity/lib/Formatter/CloudIDFormatter.php +%%WWWDIR%%/apps-pkg/activity/lib/Formatter/FileFormatter.php +%%WWWDIR%%/apps-pkg/activity/lib/Formatter/IFormatter.php +%%WWWDIR%%/apps-pkg/activity/lib/Formatter/UserFormatter.php +%%WWWDIR%%/apps-pkg/activity/lib/GroupHelper.php +%%WWWDIR%%/apps-pkg/activity/lib/GroupHelperDisabled.php +%%WWWDIR%%/apps-pkg/activity/lib/Hooks.php +%%WWWDIR%%/apps-pkg/activity/lib/MailQueueHandler.php +%%WWWDIR%%/apps-pkg/activity/lib/Migration/Version2006Date20170808154933.php +%%WWWDIR%%/apps-pkg/activity/lib/Migration/Version2006Date20170808155040.php +%%WWWDIR%%/apps-pkg/activity/lib/Migration/Version2006Date20170919095939.php +%%WWWDIR%%/apps-pkg/activity/lib/Navigation.php +%%WWWDIR%%/apps-pkg/activity/lib/Parameter/Collection.php +%%WWWDIR%%/apps-pkg/activity/lib/Parameter/Factory.php +%%WWWDIR%%/apps-pkg/activity/lib/Parameter/IParameter.php +%%WWWDIR%%/apps-pkg/activity/lib/Parameter/Parameter.php +%%WWWDIR%%/apps-pkg/activity/lib/PlainTextParser.php +%%WWWDIR%%/apps-pkg/activity/lib/Settings/Admin.php +%%WWWDIR%%/apps-pkg/activity/lib/Settings/Section.php +%%WWWDIR%%/apps-pkg/activity/lib/UserSettings.php +%%WWWDIR%%/apps-pkg/activity/lib/ViewInfoCache.php +%%WWWDIR%%/apps-pkg/activity/personal.php +%%WWWDIR%%/apps-pkg/activity/templates/rss.php +%%WWWDIR%%/apps-pkg/activity/templates/settings/admin.php +%%WWWDIR%%/apps-pkg/activity/templates/settings/form.php +%%WWWDIR%%/apps-pkg/activity/templates/settings/personal.php +%%WWWDIR%%/apps-pkg/activity/templates/stream.app.navigation.php +%%WWWDIR%%/apps-pkg/activity/templates/stream.body.php +%%WWWDIR%%/apps-pkg/admin_audit/appinfo/app.php +%%WWWDIR%%/apps-pkg/admin_audit/appinfo/info.xml +%%WWWDIR%%/apps-pkg/admin_audit/appinfo/signature.json +%%WWWDIR%%/apps-pkg/admin_audit/composer/autoload.php +%%WWWDIR%%/apps-pkg/admin_audit/composer/composer.json +%%WWWDIR%%/apps-pkg/admin_audit/composer/composer/ClassLoader.php +%%WWWDIR%%/apps-pkg/admin_audit/composer/composer/LICENSE +%%WWWDIR%%/apps-pkg/admin_audit/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps-pkg/admin_audit/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps-pkg/admin_audit/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps-pkg/admin_audit/composer/composer/autoload_real.php +%%WWWDIR%%/apps-pkg/admin_audit/composer/composer/autoload_static.php +%%WWWDIR%%/apps-pkg/admin_audit/lib/Actions/Action.php +%%WWWDIR%%/apps-pkg/admin_audit/lib/Actions/AppManagement.php +%%WWWDIR%%/apps-pkg/admin_audit/lib/Actions/Auth.php +%%WWWDIR%%/apps-pkg/admin_audit/lib/Actions/Console.php +%%WWWDIR%%/apps-pkg/admin_audit/lib/Actions/Files.php +%%WWWDIR%%/apps-pkg/admin_audit/lib/Actions/GroupManagement.php +%%WWWDIR%%/apps-pkg/admin_audit/lib/Actions/Sharing.php +%%WWWDIR%%/apps-pkg/admin_audit/lib/Actions/Trashbin.php +%%WWWDIR%%/apps-pkg/admin_audit/lib/Actions/UserManagement.php +%%WWWDIR%%/apps-pkg/admin_audit/lib/Actions/Versions.php +%%WWWDIR%%/apps-pkg/admin_audit/lib/AppInfo/Application.php +%%WWWDIR%%/apps-pkg/comments/.bowerrc +%%WWWDIR%%/apps-pkg/comments/appinfo/app.php +%%WWWDIR%%/apps-pkg/comments/appinfo/info.xml +%%WWWDIR%%/apps-pkg/comments/appinfo/routes.php +%%WWWDIR%%/apps-pkg/comments/appinfo/signature.json +%%WWWDIR%%/apps-pkg/comments/composer/autoload.php +%%WWWDIR%%/apps-pkg/comments/composer/composer.json +%%WWWDIR%%/apps-pkg/comments/composer/composer/ClassLoader.php +%%WWWDIR%%/apps-pkg/comments/composer/composer/LICENSE +%%WWWDIR%%/apps-pkg/comments/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps-pkg/comments/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps-pkg/comments/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps-pkg/comments/composer/composer/autoload_real.php +%%WWWDIR%%/apps-pkg/comments/composer/composer/autoload_static.php +%%WWWDIR%%/apps-pkg/comments/css/autocomplete.scss +%%WWWDIR%%/apps-pkg/comments/css/comments.css +%%WWWDIR%%/apps-pkg/comments/img/comments-dark.svg +%%WWWDIR%%/apps-pkg/comments/img/comments.svg +%%WWWDIR%%/apps-pkg/comments/js/activitytabviewplugin.js +%%WWWDIR%%/apps-pkg/comments/js/app.js +%%WWWDIR%%/apps-pkg/comments/js/commentcollection.js +%%WWWDIR%%/apps-pkg/comments/js/commentmodel.js +%%WWWDIR%%/apps-pkg/comments/js/commentstabview.js +%%WWWDIR%%/apps-pkg/comments/js/commentsummarymodel.js +%%WWWDIR%%/apps-pkg/comments/js/filesplugin.js +%%WWWDIR%%/apps-pkg/comments/js/merged.json +%%WWWDIR%%/apps-pkg/comments/js/vendor/At.js/dist/js/jquery.atwho.min.js +%%WWWDIR%%/apps-pkg/comments/js/vendor/Caret.js/dist/jquery.caret.min.js +%%WWWDIR%%/apps-pkg/comments/l10n/.gitkeep +%%WWWDIR%%/apps-pkg/comments/l10n/af.js +%%WWWDIR%%/apps-pkg/comments/l10n/af.json +%%WWWDIR%%/apps-pkg/comments/l10n/af_ZA.js +%%WWWDIR%%/apps-pkg/comments/l10n/af_ZA.json +%%WWWDIR%%/apps-pkg/comments/l10n/ar.js +%%WWWDIR%%/apps-pkg/comments/l10n/ar.json +%%WWWDIR%%/apps-pkg/comments/l10n/ast.js +%%WWWDIR%%/apps-pkg/comments/l10n/ast.json +%%WWWDIR%%/apps-pkg/comments/l10n/az.js +%%WWWDIR%%/apps-pkg/comments/l10n/az.json +%%WWWDIR%%/apps-pkg/comments/l10n/bg.js +%%WWWDIR%%/apps-pkg/comments/l10n/bg.json +%%WWWDIR%%/apps-pkg/comments/l10n/bg_BG.js +%%WWWDIR%%/apps-pkg/comments/l10n/bg_BG.json +%%WWWDIR%%/apps-pkg/comments/l10n/bn_BD.js +%%WWWDIR%%/apps-pkg/comments/l10n/bn_BD.json +%%WWWDIR%%/apps-pkg/comments/l10n/bn_IN.js +%%WWWDIR%%/apps-pkg/comments/l10n/bn_IN.json +%%WWWDIR%%/apps-pkg/comments/l10n/bs.js +%%WWWDIR%%/apps-pkg/comments/l10n/bs.json +%%WWWDIR%%/apps-pkg/comments/l10n/ca.js +%%WWWDIR%%/apps-pkg/comments/l10n/ca.json +%%WWWDIR%%/apps-pkg/comments/l10n/cs.js +%%WWWDIR%%/apps-pkg/comments/l10n/cs.json +%%WWWDIR%%/apps-pkg/comments/l10n/cs_CZ.js +%%WWWDIR%%/apps-pkg/comments/l10n/cs_CZ.json +%%WWWDIR%%/apps-pkg/comments/l10n/cy_GB.js +%%WWWDIR%%/apps-pkg/comments/l10n/cy_GB.json +%%WWWDIR%%/apps-pkg/comments/l10n/da.js +%%WWWDIR%%/apps-pkg/comments/l10n/da.json +%%WWWDIR%%/apps-pkg/comments/l10n/de.js +%%WWWDIR%%/apps-pkg/comments/l10n/de.json +%%WWWDIR%%/apps-pkg/comments/l10n/de_AT.js +%%WWWDIR%%/apps-pkg/comments/l10n/de_AT.json +%%WWWDIR%%/apps-pkg/comments/l10n/de_DE.js +%%WWWDIR%%/apps-pkg/comments/l10n/de_DE.json +%%WWWDIR%%/apps-pkg/comments/l10n/el.js +%%WWWDIR%%/apps-pkg/comments/l10n/el.json +%%WWWDIR%%/apps-pkg/comments/l10n/en_GB.js +%%WWWDIR%%/apps-pkg/comments/l10n/en_GB.json +%%WWWDIR%%/apps-pkg/comments/l10n/eo.js +%%WWWDIR%%/apps-pkg/comments/l10n/eo.json +%%WWWDIR%%/apps-pkg/comments/l10n/es.js +%%WWWDIR%%/apps-pkg/comments/l10n/es.json +%%WWWDIR%%/apps-pkg/comments/l10n/es_419.js +%%WWWDIR%%/apps-pkg/comments/l10n/es_419.json +%%WWWDIR%%/apps-pkg/comments/l10n/es_AR.js +%%WWWDIR%%/apps-pkg/comments/l10n/es_AR.json +%%WWWDIR%%/apps-pkg/comments/l10n/es_CL.js +%%WWWDIR%%/apps-pkg/comments/l10n/es_CL.json +%%WWWDIR%%/apps-pkg/comments/l10n/es_CO.js +%%WWWDIR%%/apps-pkg/comments/l10n/es_CO.json +%%WWWDIR%%/apps-pkg/comments/l10n/es_CR.js +%%WWWDIR%%/apps-pkg/comments/l10n/es_CR.json +%%WWWDIR%%/apps-pkg/comments/l10n/es_DO.js +%%WWWDIR%%/apps-pkg/comments/l10n/es_DO.json +%%WWWDIR%%/apps-pkg/comments/l10n/es_EC.js +%%WWWDIR%%/apps-pkg/comments/l10n/es_EC.json +%%WWWDIR%%/apps-pkg/comments/l10n/es_GT.js +%%WWWDIR%%/apps-pkg/comments/l10n/es_GT.json +%%WWWDIR%%/apps-pkg/comments/l10n/es_HN.js +%%WWWDIR%%/apps-pkg/comments/l10n/es_HN.json +%%WWWDIR%%/apps-pkg/comments/l10n/es_MX.js +%%WWWDIR%%/apps-pkg/comments/l10n/es_MX.json +%%WWWDIR%%/apps-pkg/comments/l10n/es_NI.js +%%WWWDIR%%/apps-pkg/comments/l10n/es_NI.json +%%WWWDIR%%/apps-pkg/comments/l10n/es_PA.js +%%WWWDIR%%/apps-pkg/comments/l10n/es_PA.json +%%WWWDIR%%/apps-pkg/comments/l10n/es_PE.js +%%WWWDIR%%/apps-pkg/comments/l10n/es_PE.json +%%WWWDIR%%/apps-pkg/comments/l10n/es_PR.js +%%WWWDIR%%/apps-pkg/comments/l10n/es_PR.json +%%WWWDIR%%/apps-pkg/comments/l10n/es_PY.js +%%WWWDIR%%/apps-pkg/comments/l10n/es_PY.json +%%WWWDIR%%/apps-pkg/comments/l10n/es_SV.js +%%WWWDIR%%/apps-pkg/comments/l10n/es_SV.json +%%WWWDIR%%/apps-pkg/comments/l10n/es_UY.js +%%WWWDIR%%/apps-pkg/comments/l10n/es_UY.json +%%WWWDIR%%/apps-pkg/comments/l10n/et_EE.js +%%WWWDIR%%/apps-pkg/comments/l10n/et_EE.json +%%WWWDIR%%/apps-pkg/comments/l10n/eu.js +%%WWWDIR%%/apps-pkg/comments/l10n/eu.json +%%WWWDIR%%/apps-pkg/comments/l10n/fa.js +%%WWWDIR%%/apps-pkg/comments/l10n/fa.json +%%WWWDIR%%/apps-pkg/comments/l10n/fi.js +%%WWWDIR%%/apps-pkg/comments/l10n/fi.json +%%WWWDIR%%/apps-pkg/comments/l10n/fi_FI.js +%%WWWDIR%%/apps-pkg/comments/l10n/fi_FI.json +%%WWWDIR%%/apps-pkg/comments/l10n/fil.js +%%WWWDIR%%/apps-pkg/comments/l10n/fil.json +%%WWWDIR%%/apps-pkg/comments/l10n/fr.js +%%WWWDIR%%/apps-pkg/comments/l10n/fr.json +%%WWWDIR%%/apps-pkg/comments/l10n/gl.js +%%WWWDIR%%/apps-pkg/comments/l10n/gl.json +%%WWWDIR%%/apps-pkg/comments/l10n/he.js +%%WWWDIR%%/apps-pkg/comments/l10n/he.json +%%WWWDIR%%/apps-pkg/comments/l10n/hi.js +%%WWWDIR%%/apps-pkg/comments/l10n/hi.json +%%WWWDIR%%/apps-pkg/comments/l10n/hr.js +%%WWWDIR%%/apps-pkg/comments/l10n/hr.json +%%WWWDIR%%/apps-pkg/comments/l10n/hu.js +%%WWWDIR%%/apps-pkg/comments/l10n/hu.json +%%WWWDIR%%/apps-pkg/comments/l10n/hu_HU.js +%%WWWDIR%%/apps-pkg/comments/l10n/hu_HU.json +%%WWWDIR%%/apps-pkg/comments/l10n/hy.js +%%WWWDIR%%/apps-pkg/comments/l10n/hy.json +%%WWWDIR%%/apps-pkg/comments/l10n/ia.js +%%WWWDIR%%/apps-pkg/comments/l10n/ia.json +%%WWWDIR%%/apps-pkg/comments/l10n/id.js +%%WWWDIR%%/apps-pkg/comments/l10n/id.json +%%WWWDIR%%/apps-pkg/comments/l10n/is.js +%%WWWDIR%%/apps-pkg/comments/l10n/is.json +%%WWWDIR%%/apps-pkg/comments/l10n/it.js +%%WWWDIR%%/apps-pkg/comments/l10n/it.json +%%WWWDIR%%/apps-pkg/comments/l10n/ja.js +%%WWWDIR%%/apps-pkg/comments/l10n/ja.json +%%WWWDIR%%/apps-pkg/comments/l10n/ka_GE.js +%%WWWDIR%%/apps-pkg/comments/l10n/ka_GE.json +%%WWWDIR%%/apps-pkg/comments/l10n/km.js +%%WWWDIR%%/apps-pkg/comments/l10n/km.json +%%WWWDIR%%/apps-pkg/comments/l10n/kn.js +%%WWWDIR%%/apps-pkg/comments/l10n/kn.json +%%WWWDIR%%/apps-pkg/comments/l10n/ko.js +%%WWWDIR%%/apps-pkg/comments/l10n/ko.json +%%WWWDIR%%/apps-pkg/comments/l10n/ku_IQ.js +%%WWWDIR%%/apps-pkg/comments/l10n/ku_IQ.json +%%WWWDIR%%/apps-pkg/comments/l10n/lb.js +%%WWWDIR%%/apps-pkg/comments/l10n/lb.json +%%WWWDIR%%/apps-pkg/comments/l10n/lt_LT.js +%%WWWDIR%%/apps-pkg/comments/l10n/lt_LT.json +%%WWWDIR%%/apps-pkg/comments/l10n/lv.js +%%WWWDIR%%/apps-pkg/comments/l10n/lv.json +%%WWWDIR%%/apps-pkg/comments/l10n/mk.js +%%WWWDIR%%/apps-pkg/comments/l10n/mk.json +%%WWWDIR%%/apps-pkg/comments/l10n/mn.js +%%WWWDIR%%/apps-pkg/comments/l10n/mn.json +%%WWWDIR%%/apps-pkg/comments/l10n/ms_MY.js +%%WWWDIR%%/apps-pkg/comments/l10n/ms_MY.json +%%WWWDIR%%/apps-pkg/comments/l10n/my_MM.js +%%WWWDIR%%/apps-pkg/comments/l10n/my_MM.json +%%WWWDIR%%/apps-pkg/comments/l10n/nb.js +%%WWWDIR%%/apps-pkg/comments/l10n/nb.json +%%WWWDIR%%/apps-pkg/comments/l10n/nb_NO.js +%%WWWDIR%%/apps-pkg/comments/l10n/nb_NO.json +%%WWWDIR%%/apps-pkg/comments/l10n/nds.js +%%WWWDIR%%/apps-pkg/comments/l10n/nds.json +%%WWWDIR%%/apps-pkg/comments/l10n/nl.js +%%WWWDIR%%/apps-pkg/comments/l10n/nl.json +%%WWWDIR%%/apps-pkg/comments/l10n/nn_NO.js +%%WWWDIR%%/apps-pkg/comments/l10n/nn_NO.json +%%WWWDIR%%/apps-pkg/comments/l10n/oc.js +%%WWWDIR%%/apps-pkg/comments/l10n/oc.json +%%WWWDIR%%/apps-pkg/comments/l10n/pa.js +%%WWWDIR%%/apps-pkg/comments/l10n/pa.json +%%WWWDIR%%/apps-pkg/comments/l10n/pl.js +%%WWWDIR%%/apps-pkg/comments/l10n/pl.json +%%WWWDIR%%/apps-pkg/comments/l10n/pt_BR.js +%%WWWDIR%%/apps-pkg/comments/l10n/pt_BR.json +%%WWWDIR%%/apps-pkg/comments/l10n/pt_PT.js +%%WWWDIR%%/apps-pkg/comments/l10n/pt_PT.json +%%WWWDIR%%/apps-pkg/comments/l10n/ro.js +%%WWWDIR%%/apps-pkg/comments/l10n/ro.json +%%WWWDIR%%/apps-pkg/comments/l10n/ru.js +%%WWWDIR%%/apps-pkg/comments/l10n/ru.json +%%WWWDIR%%/apps-pkg/comments/l10n/si_LK.js +%%WWWDIR%%/apps-pkg/comments/l10n/si_LK.json +%%WWWDIR%%/apps-pkg/comments/l10n/sk.js +%%WWWDIR%%/apps-pkg/comments/l10n/sk.json +%%WWWDIR%%/apps-pkg/comments/l10n/sk_SK.js +%%WWWDIR%%/apps-pkg/comments/l10n/sk_SK.json +%%WWWDIR%%/apps-pkg/comments/l10n/sl.js +%%WWWDIR%%/apps-pkg/comments/l10n/sl.json +%%WWWDIR%%/apps-pkg/comments/l10n/sq.js +%%WWWDIR%%/apps-pkg/comments/l10n/sq.json +%%WWWDIR%%/apps-pkg/comments/l10n/sr.js +%%WWWDIR%%/apps-pkg/comments/l10n/sr.json +%%WWWDIR%%/apps-pkg/comments/l10n/sr@latin.js +%%WWWDIR%%/apps-pkg/comments/l10n/sr@latin.json +%%WWWDIR%%/apps-pkg/comments/l10n/sv.js +%%WWWDIR%%/apps-pkg/comments/l10n/sv.json +%%WWWDIR%%/apps-pkg/comments/l10n/ta_LK.js +%%WWWDIR%%/apps-pkg/comments/l10n/ta_LK.json +%%WWWDIR%%/apps-pkg/comments/l10n/te.js +%%WWWDIR%%/apps-pkg/comments/l10n/te.json +%%WWWDIR%%/apps-pkg/comments/l10n/th.js +%%WWWDIR%%/apps-pkg/comments/l10n/th.json +%%WWWDIR%%/apps-pkg/comments/l10n/th_TH.js +%%WWWDIR%%/apps-pkg/comments/l10n/th_TH.json +%%WWWDIR%%/apps-pkg/comments/l10n/tr.js +%%WWWDIR%%/apps-pkg/comments/l10n/tr.json +%%WWWDIR%%/apps-pkg/comments/l10n/ug.js +%%WWWDIR%%/apps-pkg/comments/l10n/ug.json +%%WWWDIR%%/apps-pkg/comments/l10n/uk.js +%%WWWDIR%%/apps-pkg/comments/l10n/uk.json +%%WWWDIR%%/apps-pkg/comments/l10n/ur_PK.js +%%WWWDIR%%/apps-pkg/comments/l10n/ur_PK.json +%%WWWDIR%%/apps-pkg/comments/l10n/vi.js +%%WWWDIR%%/apps-pkg/comments/l10n/vi.json +%%WWWDIR%%/apps-pkg/comments/l10n/zh_CN.js +%%WWWDIR%%/apps-pkg/comments/l10n/zh_CN.json +%%WWWDIR%%/apps-pkg/comments/l10n/zh_HK.js +%%WWWDIR%%/apps-pkg/comments/l10n/zh_HK.json +%%WWWDIR%%/apps-pkg/comments/l10n/zh_TW.js +%%WWWDIR%%/apps-pkg/comments/l10n/zh_TW.json +%%WWWDIR%%/apps-pkg/comments/lib/Activity/Filter.php +%%WWWDIR%%/apps-pkg/comments/lib/Activity/Listener.php +%%WWWDIR%%/apps-pkg/comments/lib/Activity/Provider.php +%%WWWDIR%%/apps-pkg/comments/lib/Activity/Setting.php +%%WWWDIR%%/apps-pkg/comments/lib/AppInfo/Application.php +%%WWWDIR%%/apps-pkg/comments/lib/Collaboration/CommentersSorter.php +%%WWWDIR%%/apps-pkg/comments/lib/Controller/Notifications.php +%%WWWDIR%%/apps-pkg/comments/lib/EventHandler.php +%%WWWDIR%%/apps-pkg/comments/lib/JSSettingsHelper.php +%%WWWDIR%%/apps-pkg/comments/lib/Notification/Listener.php +%%WWWDIR%%/apps-pkg/comments/lib/Notification/Notifier.php +%%WWWDIR%%/apps-pkg/dav/appinfo/app.php +%%WWWDIR%%/apps-pkg/dav/appinfo/info.xml +%%WWWDIR%%/apps-pkg/dav/appinfo/routes.php +%%WWWDIR%%/apps-pkg/dav/appinfo/signature.json +%%WWWDIR%%/apps-pkg/dav/appinfo/v1/caldav.php +%%WWWDIR%%/apps-pkg/dav/appinfo/v1/carddav.php +%%WWWDIR%%/apps-pkg/dav/appinfo/v1/publicwebdav.php +%%WWWDIR%%/apps-pkg/dav/appinfo/v1/webdav.php +%%WWWDIR%%/apps-pkg/dav/appinfo/v2/remote.php +%%WWWDIR%%/apps-pkg/dav/bin/chunkperf.php +%%WWWDIR%%/apps-pkg/dav/composer/autoload.php +%%WWWDIR%%/apps-pkg/dav/composer/composer.json +%%WWWDIR%%/apps-pkg/dav/composer/composer/ClassLoader.php +%%WWWDIR%%/apps-pkg/dav/composer/composer/LICENSE +%%WWWDIR%%/apps-pkg/dav/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps-pkg/dav/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps-pkg/dav/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps-pkg/dav/composer/composer/autoload_real.php +%%WWWDIR%%/apps-pkg/dav/composer/composer/autoload_static.php +%%WWWDIR%%/apps-pkg/dav/js/settings-admin-caldav.js +%%WWWDIR%%/apps-pkg/dav/l10n/.gitkeep +%%WWWDIR%%/apps-pkg/dav/l10n/bg.js +%%WWWDIR%%/apps-pkg/dav/l10n/bg.json +%%WWWDIR%%/apps-pkg/dav/l10n/bg_BG.js +%%WWWDIR%%/apps-pkg/dav/l10n/bg_BG.json +%%WWWDIR%%/apps-pkg/dav/l10n/ca.js +%%WWWDIR%%/apps-pkg/dav/l10n/ca.json +%%WWWDIR%%/apps-pkg/dav/l10n/cs.js +%%WWWDIR%%/apps-pkg/dav/l10n/cs.json +%%WWWDIR%%/apps-pkg/dav/l10n/cs_CZ.js +%%WWWDIR%%/apps-pkg/dav/l10n/cs_CZ.json +%%WWWDIR%%/apps-pkg/dav/l10n/da.js +%%WWWDIR%%/apps-pkg/dav/l10n/da.json +%%WWWDIR%%/apps-pkg/dav/l10n/de.js +%%WWWDIR%%/apps-pkg/dav/l10n/de.json +%%WWWDIR%%/apps-pkg/dav/l10n/de_DE.js +%%WWWDIR%%/apps-pkg/dav/l10n/de_DE.json +%%WWWDIR%%/apps-pkg/dav/l10n/el.js +%%WWWDIR%%/apps-pkg/dav/l10n/el.json +%%WWWDIR%%/apps-pkg/dav/l10n/en_GB.js +%%WWWDIR%%/apps-pkg/dav/l10n/en_GB.json +%%WWWDIR%%/apps-pkg/dav/l10n/es.js +%%WWWDIR%%/apps-pkg/dav/l10n/es.json +%%WWWDIR%%/apps-pkg/dav/l10n/es_419.js +%%WWWDIR%%/apps-pkg/dav/l10n/es_419.json +%%WWWDIR%%/apps-pkg/dav/l10n/es_AR.js +%%WWWDIR%%/apps-pkg/dav/l10n/es_AR.json +%%WWWDIR%%/apps-pkg/dav/l10n/es_CL.js +%%WWWDIR%%/apps-pkg/dav/l10n/es_CL.json +%%WWWDIR%%/apps-pkg/dav/l10n/es_CO.js +%%WWWDIR%%/apps-pkg/dav/l10n/es_CO.json +%%WWWDIR%%/apps-pkg/dav/l10n/es_CR.js +%%WWWDIR%%/apps-pkg/dav/l10n/es_CR.json +%%WWWDIR%%/apps-pkg/dav/l10n/es_DO.js +%%WWWDIR%%/apps-pkg/dav/l10n/es_DO.json +%%WWWDIR%%/apps-pkg/dav/l10n/es_EC.js +%%WWWDIR%%/apps-pkg/dav/l10n/es_EC.json +%%WWWDIR%%/apps-pkg/dav/l10n/es_GT.js +%%WWWDIR%%/apps-pkg/dav/l10n/es_GT.json +%%WWWDIR%%/apps-pkg/dav/l10n/es_HN.js +%%WWWDIR%%/apps-pkg/dav/l10n/es_HN.json +%%WWWDIR%%/apps-pkg/dav/l10n/es_MX.js +%%WWWDIR%%/apps-pkg/dav/l10n/es_MX.json +%%WWWDIR%%/apps-pkg/dav/l10n/es_NI.js +%%WWWDIR%%/apps-pkg/dav/l10n/es_NI.json +%%WWWDIR%%/apps-pkg/dav/l10n/es_PA.js +%%WWWDIR%%/apps-pkg/dav/l10n/es_PA.json +%%WWWDIR%%/apps-pkg/dav/l10n/es_PE.js +%%WWWDIR%%/apps-pkg/dav/l10n/es_PE.json +%%WWWDIR%%/apps-pkg/dav/l10n/es_PR.js +%%WWWDIR%%/apps-pkg/dav/l10n/es_PR.json +%%WWWDIR%%/apps-pkg/dav/l10n/es_PY.js +%%WWWDIR%%/apps-pkg/dav/l10n/es_PY.json +%%WWWDIR%%/apps-pkg/dav/l10n/es_SV.js +%%WWWDIR%%/apps-pkg/dav/l10n/es_SV.json +%%WWWDIR%%/apps-pkg/dav/l10n/es_UY.js +%%WWWDIR%%/apps-pkg/dav/l10n/es_UY.json +%%WWWDIR%%/apps-pkg/dav/l10n/et_EE.js +%%WWWDIR%%/apps-pkg/dav/l10n/et_EE.json +%%WWWDIR%%/apps-pkg/dav/l10n/eu.js +%%WWWDIR%%/apps-pkg/dav/l10n/eu.json +%%WWWDIR%%/apps-pkg/dav/l10n/fi.js +%%WWWDIR%%/apps-pkg/dav/l10n/fi.json +%%WWWDIR%%/apps-pkg/dav/l10n/fi_FI.js +%%WWWDIR%%/apps-pkg/dav/l10n/fi_FI.json +%%WWWDIR%%/apps-pkg/dav/l10n/fr.js +%%WWWDIR%%/apps-pkg/dav/l10n/fr.json +%%WWWDIR%%/apps-pkg/dav/l10n/gl.js +%%WWWDIR%%/apps-pkg/dav/l10n/gl.json +%%WWWDIR%%/apps-pkg/dav/l10n/hu.js +%%WWWDIR%%/apps-pkg/dav/l10n/hu.json +%%WWWDIR%%/apps-pkg/dav/l10n/hu_HU.js +%%WWWDIR%%/apps-pkg/dav/l10n/hu_HU.json +%%WWWDIR%%/apps-pkg/dav/l10n/id.js +%%WWWDIR%%/apps-pkg/dav/l10n/id.json +%%WWWDIR%%/apps-pkg/dav/l10n/is.js +%%WWWDIR%%/apps-pkg/dav/l10n/is.json +%%WWWDIR%%/apps-pkg/dav/l10n/it.js +%%WWWDIR%%/apps-pkg/dav/l10n/it.json +%%WWWDIR%%/apps-pkg/dav/l10n/ja.js +%%WWWDIR%%/apps-pkg/dav/l10n/ja.json +%%WWWDIR%%/apps-pkg/dav/l10n/ka_GE.js +%%WWWDIR%%/apps-pkg/dav/l10n/ka_GE.json +%%WWWDIR%%/apps-pkg/dav/l10n/ko.js +%%WWWDIR%%/apps-pkg/dav/l10n/ko.json +%%WWWDIR%%/apps-pkg/dav/l10n/lt_LT.js +%%WWWDIR%%/apps-pkg/dav/l10n/lt_LT.json +%%WWWDIR%%/apps-pkg/dav/l10n/lv.js +%%WWWDIR%%/apps-pkg/dav/l10n/lv.json +%%WWWDIR%%/apps-pkg/dav/l10n/nb.js +%%WWWDIR%%/apps-pkg/dav/l10n/nb.json +%%WWWDIR%%/apps-pkg/dav/l10n/nb_NO.js +%%WWWDIR%%/apps-pkg/dav/l10n/nb_NO.json +%%WWWDIR%%/apps-pkg/dav/l10n/nl.js +%%WWWDIR%%/apps-pkg/dav/l10n/nl.json +%%WWWDIR%%/apps-pkg/dav/l10n/nn_NO.js +%%WWWDIR%%/apps-pkg/dav/l10n/nn_NO.json +%%WWWDIR%%/apps-pkg/dav/l10n/pl.js +%%WWWDIR%%/apps-pkg/dav/l10n/pl.json +%%WWWDIR%%/apps-pkg/dav/l10n/pt_BR.js +%%WWWDIR%%/apps-pkg/dav/l10n/pt_BR.json +%%WWWDIR%%/apps-pkg/dav/l10n/ro.js +%%WWWDIR%%/apps-pkg/dav/l10n/ro.json +%%WWWDIR%%/apps-pkg/dav/l10n/ru.js +%%WWWDIR%%/apps-pkg/dav/l10n/ru.json +%%WWWDIR%%/apps-pkg/dav/l10n/sk.js +%%WWWDIR%%/apps-pkg/dav/l10n/sk.json +%%WWWDIR%%/apps-pkg/dav/l10n/sl.js +%%WWWDIR%%/apps-pkg/dav/l10n/sl.json +%%WWWDIR%%/apps-pkg/dav/l10n/sq.js +%%WWWDIR%%/apps-pkg/dav/l10n/sq.json +%%WWWDIR%%/apps-pkg/dav/l10n/sr.js +%%WWWDIR%%/apps-pkg/dav/l10n/sr.json +%%WWWDIR%%/apps-pkg/dav/l10n/sv.js +%%WWWDIR%%/apps-pkg/dav/l10n/sv.json +%%WWWDIR%%/apps-pkg/dav/l10n/tr.js +%%WWWDIR%%/apps-pkg/dav/l10n/tr.json +%%WWWDIR%%/apps-pkg/dav/l10n/zh_CN.js +%%WWWDIR%%/apps-pkg/dav/l10n/zh_CN.json +%%WWWDIR%%/apps-pkg/dav/l10n/zh_TW.js +%%WWWDIR%%/apps-pkg/dav/l10n/zh_TW.json +%%WWWDIR%%/apps-pkg/dav/lib/AppInfo/Application.php +%%WWWDIR%%/apps-pkg/dav/lib/AppInfo/PluginManager.php +%%WWWDIR%%/apps-pkg/dav/lib/Avatars/AvatarHome.php +%%WWWDIR%%/apps-pkg/dav/lib/Avatars/AvatarNode.php +%%WWWDIR%%/apps-pkg/dav/lib/Avatars/RootCollection.php +%%WWWDIR%%/apps-pkg/dav/lib/BackgroundJob/GenerateBirthdayCalendarBackgroundJob.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Activity/Backend.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Activity/Filter/Calendar.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Activity/Filter/Todo.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Activity/Provider/Base.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Activity/Provider/Calendar.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Activity/Provider/Event.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Activity/Provider/Todo.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Activity/Setting/Calendar.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Activity/Setting/Event.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Activity/Setting/Todo.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/BirthdayCalendar/EnablePlugin.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/BirthdayService.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/CalDavBackend.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Calendar.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/CalendarHome.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/CalendarImpl.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/CalendarManager.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/CalendarObject.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/CalendarRoot.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Plugin.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Principal/Collection.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Principal/User.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/PublicCalendar.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/PublicCalendarObject.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/PublicCalendarRoot.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Publishing/PublishPlugin.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Publishing/Xml/Publisher.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Schedule/IMipPlugin.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Schedule/Plugin.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Search/SearchPlugin.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Search/Xml/Filter/CompFilter.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Search/Xml/Filter/LimitFilter.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Search/Xml/Filter/OffsetFilter.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Search/Xml/Filter/ParamFilter.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Search/Xml/Filter/PropFilter.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Search/Xml/Filter/SearchTermFilter.php +%%WWWDIR%%/apps-pkg/dav/lib/CalDAV/Search/Xml/Request/CalendarSearchReport.php +%%WWWDIR%%/apps-pkg/dav/lib/Capabilities.php +%%WWWDIR%%/apps-pkg/dav/lib/CardDAV/AddressBook.php +%%WWWDIR%%/apps-pkg/dav/lib/CardDAV/AddressBookImpl.php +%%WWWDIR%%/apps-pkg/dav/lib/CardDAV/AddressBookRoot.php +%%WWWDIR%%/apps-pkg/dav/lib/CardDAV/CardDavBackend.php +%%WWWDIR%%/apps-pkg/dav/lib/CardDAV/ContactsManager.php +%%WWWDIR%%/apps-pkg/dav/lib/CardDAV/Converter.php +%%WWWDIR%%/apps-pkg/dav/lib/CardDAV/ImageExportPlugin.php +%%WWWDIR%%/apps-pkg/dav/lib/CardDAV/PhotoCache.php +%%WWWDIR%%/apps-pkg/dav/lib/CardDAV/Plugin.php +%%WWWDIR%%/apps-pkg/dav/lib/CardDAV/SyncService.php +%%WWWDIR%%/apps-pkg/dav/lib/CardDAV/UserAddressBooks.php +%%WWWDIR%%/apps-pkg/dav/lib/CardDAV/Xml/Groups.php +%%WWWDIR%%/apps-pkg/dav/lib/Command/CreateAddressBook.php +%%WWWDIR%%/apps-pkg/dav/lib/Command/CreateCalendar.php +%%WWWDIR%%/apps-pkg/dav/lib/Command/SyncBirthdayCalendar.php +%%WWWDIR%%/apps-pkg/dav/lib/Command/SyncSystemAddressBook.php +%%WWWDIR%%/apps-pkg/dav/lib/Comments/CommentNode.php +%%WWWDIR%%/apps-pkg/dav/lib/Comments/CommentsPlugin.php +%%WWWDIR%%/apps-pkg/dav/lib/Comments/EntityCollection.php +%%WWWDIR%%/apps-pkg/dav/lib/Comments/EntityTypeCollection.php +%%WWWDIR%%/apps-pkg/dav/lib/Comments/RootCollection.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/LegacyDAVACL.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/PublicAuth.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/AppEnabledPlugin.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/Auth.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/BearerAuth.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/BlockLegacyClientPlugin.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/CachingTree.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/ChecksumList.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/CommentPropertiesPlugin.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/CopyEtagHeaderPlugin.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/CustomPropertiesBackend.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/DavAclPlugin.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/Directory.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/DummyGetResponsePlugin.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/Exception/EntityTooLarge.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/Exception/FileLocked.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/Exception/Forbidden.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/Exception/InvalidPath.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/Exception/PasswordLoginForbidden.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/Exception/UnsupportedMediaType.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/ExceptionLoggerPlugin.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/FakeLockerPlugin.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/File.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/FilesPlugin.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/FilesReportPlugin.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/LockPlugin.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/MaintenancePlugin.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/Node.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/ObjectTree.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/Principal.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/QuotaPlugin.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/Server.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/ServerFactory.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/ShareTypeList.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/SharesPlugin.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/TagList.php +%%WWWDIR%%/apps-pkg/dav/lib/Connector/Sabre/TagsPlugin.php +%%WWWDIR%%/apps-pkg/dav/lib/Controller/BirthdayCalendarController.php +%%WWWDIR%%/apps-pkg/dav/lib/DAV/CustomPropertiesBackend.php +%%WWWDIR%%/apps-pkg/dav/lib/DAV/GroupPrincipalBackend.php +%%WWWDIR%%/apps-pkg/dav/lib/DAV/PublicAuth.php +%%WWWDIR%%/apps-pkg/dav/lib/DAV/Sharing/Backend.php +%%WWWDIR%%/apps-pkg/dav/lib/DAV/Sharing/IShareable.php +%%WWWDIR%%/apps-pkg/dav/lib/DAV/Sharing/Plugin.php +%%WWWDIR%%/apps-pkg/dav/lib/DAV/Sharing/Xml/Invite.php +%%WWWDIR%%/apps-pkg/dav/lib/DAV/Sharing/Xml/ShareRequest.php +%%WWWDIR%%/apps-pkg/dav/lib/DAV/SystemPrincipalBackend.php +%%WWWDIR%%/apps-pkg/dav/lib/Files/BrowserErrorPagePlugin.php +%%WWWDIR%%/apps-pkg/dav/lib/Files/FileSearchBackend.php +%%WWWDIR%%/apps-pkg/dav/lib/Files/FilesHome.php +%%WWWDIR%%/apps-pkg/dav/lib/Files/RootCollection.php +%%WWWDIR%%/apps-pkg/dav/lib/Files/Sharing/FilesDropPlugin.php +%%WWWDIR%%/apps-pkg/dav/lib/Files/Sharing/PublicLinkCheckPlugin.php +%%WWWDIR%%/apps-pkg/dav/lib/HookManager.php +%%WWWDIR%%/apps-pkg/dav/lib/Migration/BuildCalendarSearchIndex.php +%%WWWDIR%%/apps-pkg/dav/lib/Migration/BuildCalendarSearchIndexBackgroundJob.php +%%WWWDIR%%/apps-pkg/dav/lib/Migration/CalDAVRemoveEmptyValue.php +%%WWWDIR%%/apps-pkg/dav/lib/Migration/FixBirthdayCalendarComponent.php +%%WWWDIR%%/apps-pkg/dav/lib/Migration/Version1004Date20170825134824.php +%%WWWDIR%%/apps-pkg/dav/lib/Migration/Version1004Date20170919104507.php +%%WWWDIR%%/apps-pkg/dav/lib/Migration/Version1004Date20170924124212.php +%%WWWDIR%%/apps-pkg/dav/lib/Migration/Version1004Date20170926103422.php +%%WWWDIR%%/apps-pkg/dav/lib/RootCollection.php +%%WWWDIR%%/apps-pkg/dav/lib/Server.php +%%WWWDIR%%/apps-pkg/dav/lib/Settings/CalDAVSettings.php +%%WWWDIR%%/apps-pkg/dav/lib/SystemTag/SystemTagMappingNode.php +%%WWWDIR%%/apps-pkg/dav/lib/SystemTag/SystemTagNode.php +%%WWWDIR%%/apps-pkg/dav/lib/SystemTag/SystemTagPlugin.php +%%WWWDIR%%/apps-pkg/dav/lib/SystemTag/SystemTagsByIdCollection.php +%%WWWDIR%%/apps-pkg/dav/lib/SystemTag/SystemTagsObjectMappingCollection.php +%%WWWDIR%%/apps-pkg/dav/lib/SystemTag/SystemTagsObjectTypeCollection.php +%%WWWDIR%%/apps-pkg/dav/lib/SystemTag/SystemTagsRelationsCollection.php +%%WWWDIR%%/apps-pkg/dav/lib/Upload/AssemblyStream.php +%%WWWDIR%%/apps-pkg/dav/lib/Upload/ChunkingPlugin.php +%%WWWDIR%%/apps-pkg/dav/lib/Upload/FutureFile.php +%%WWWDIR%%/apps-pkg/dav/lib/Upload/RootCollection.php +%%WWWDIR%%/apps-pkg/dav/lib/Upload/UploadFolder.php +%%WWWDIR%%/apps-pkg/dav/lib/Upload/UploadHome.php +%%WWWDIR%%/apps-pkg/dav/templates/exception.php +%%WWWDIR%%/apps-pkg/dav/templates/settings-admin-caldav.php +%%WWWDIR%%/apps-pkg/encryption/appinfo/app.php +%%WWWDIR%%/apps-pkg/encryption/appinfo/info.xml +%%WWWDIR%%/apps-pkg/encryption/appinfo/routes.php +%%WWWDIR%%/apps-pkg/encryption/appinfo/signature.json +%%WWWDIR%%/apps-pkg/encryption/composer/autoload.php +%%WWWDIR%%/apps-pkg/encryption/composer/composer.json +%%WWWDIR%%/apps-pkg/encryption/composer/composer/ClassLoader.php +%%WWWDIR%%/apps-pkg/encryption/composer/composer/LICENSE +%%WWWDIR%%/apps-pkg/encryption/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps-pkg/encryption/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps-pkg/encryption/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps-pkg/encryption/composer/composer/autoload_real.php +%%WWWDIR%%/apps-pkg/encryption/composer/composer/autoload_static.php +%%WWWDIR%%/apps-pkg/encryption/css/settings-admin.css +%%WWWDIR%%/apps-pkg/encryption/css/settings-personal.css +%%WWWDIR%%/apps-pkg/encryption/img/app.svg +%%WWWDIR%%/apps-pkg/encryption/js/encryption.js +%%WWWDIR%%/apps-pkg/encryption/js/settings-admin.js +%%WWWDIR%%/apps-pkg/encryption/js/settings-personal.js +%%WWWDIR%%/apps-pkg/encryption/l10n/.gitkeep +%%WWWDIR%%/apps-pkg/encryption/l10n/ar.js +%%WWWDIR%%/apps-pkg/encryption/l10n/ar.json +%%WWWDIR%%/apps-pkg/encryption/l10n/ast.js +%%WWWDIR%%/apps-pkg/encryption/l10n/ast.json +%%WWWDIR%%/apps-pkg/encryption/l10n/az.js +%%WWWDIR%%/apps-pkg/encryption/l10n/az.json +%%WWWDIR%%/apps-pkg/encryption/l10n/bg.js +%%WWWDIR%%/apps-pkg/encryption/l10n/bg.json +%%WWWDIR%%/apps-pkg/encryption/l10n/bg_BG.js +%%WWWDIR%%/apps-pkg/encryption/l10n/bg_BG.json +%%WWWDIR%%/apps-pkg/encryption/l10n/bn_BD.js +%%WWWDIR%%/apps-pkg/encryption/l10n/bn_BD.json +%%WWWDIR%%/apps-pkg/encryption/l10n/bs.js +%%WWWDIR%%/apps-pkg/encryption/l10n/bs.json +%%WWWDIR%%/apps-pkg/encryption/l10n/ca.js +%%WWWDIR%%/apps-pkg/encryption/l10n/ca.json +%%WWWDIR%%/apps-pkg/encryption/l10n/cs.js +%%WWWDIR%%/apps-pkg/encryption/l10n/cs.json +%%WWWDIR%%/apps-pkg/encryption/l10n/cs_CZ.js +%%WWWDIR%%/apps-pkg/encryption/l10n/cs_CZ.json +%%WWWDIR%%/apps-pkg/encryption/l10n/da.js +%%WWWDIR%%/apps-pkg/encryption/l10n/da.json +%%WWWDIR%%/apps-pkg/encryption/l10n/de.js +%%WWWDIR%%/apps-pkg/encryption/l10n/de.json +%%WWWDIR%%/apps-pkg/encryption/l10n/de_AT.js +%%WWWDIR%%/apps-pkg/encryption/l10n/de_AT.json +%%WWWDIR%%/apps-pkg/encryption/l10n/de_DE.js +%%WWWDIR%%/apps-pkg/encryption/l10n/de_DE.json +%%WWWDIR%%/apps-pkg/encryption/l10n/el.js +%%WWWDIR%%/apps-pkg/encryption/l10n/el.json +%%WWWDIR%%/apps-pkg/encryption/l10n/en_GB.js +%%WWWDIR%%/apps-pkg/encryption/l10n/en_GB.json +%%WWWDIR%%/apps-pkg/encryption/l10n/eo.js +%%WWWDIR%%/apps-pkg/encryption/l10n/eo.json +%%WWWDIR%%/apps-pkg/encryption/l10n/es.js +%%WWWDIR%%/apps-pkg/encryption/l10n/es.json +%%WWWDIR%%/apps-pkg/encryption/l10n/es_419.js +%%WWWDIR%%/apps-pkg/encryption/l10n/es_419.json +%%WWWDIR%%/apps-pkg/encryption/l10n/es_AR.js +%%WWWDIR%%/apps-pkg/encryption/l10n/es_AR.json +%%WWWDIR%%/apps-pkg/encryption/l10n/es_CL.js +%%WWWDIR%%/apps-pkg/encryption/l10n/es_CL.json +%%WWWDIR%%/apps-pkg/encryption/l10n/es_CO.js +%%WWWDIR%%/apps-pkg/encryption/l10n/es_CO.json +%%WWWDIR%%/apps-pkg/encryption/l10n/es_CR.js +%%WWWDIR%%/apps-pkg/encryption/l10n/es_CR.json +%%WWWDIR%%/apps-pkg/encryption/l10n/es_DO.js +%%WWWDIR%%/apps-pkg/encryption/l10n/es_DO.json +%%WWWDIR%%/apps-pkg/encryption/l10n/es_EC.js +%%WWWDIR%%/apps-pkg/encryption/l10n/es_EC.json +%%WWWDIR%%/apps-pkg/encryption/l10n/es_GT.js +%%WWWDIR%%/apps-pkg/encryption/l10n/es_GT.json +%%WWWDIR%%/apps-pkg/encryption/l10n/es_HN.js +%%WWWDIR%%/apps-pkg/encryption/l10n/es_HN.json +%%WWWDIR%%/apps-pkg/encryption/l10n/es_MX.js +%%WWWDIR%%/apps-pkg/encryption/l10n/es_MX.json +%%WWWDIR%%/apps-pkg/encryption/l10n/es_NI.js +%%WWWDIR%%/apps-pkg/encryption/l10n/es_NI.json +%%WWWDIR%%/apps-pkg/encryption/l10n/es_PA.js +%%WWWDIR%%/apps-pkg/encryption/l10n/es_PA.json +%%WWWDIR%%/apps-pkg/encryption/l10n/es_PE.js +%%WWWDIR%%/apps-pkg/encryption/l10n/es_PE.json +%%WWWDIR%%/apps-pkg/encryption/l10n/es_PR.js +%%WWWDIR%%/apps-pkg/encryption/l10n/es_PR.json +%%WWWDIR%%/apps-pkg/encryption/l10n/es_PY.js +%%WWWDIR%%/apps-pkg/encryption/l10n/es_PY.json +%%WWWDIR%%/apps-pkg/encryption/l10n/es_SV.js +%%WWWDIR%%/apps-pkg/encryption/l10n/es_SV.json +%%WWWDIR%%/apps-pkg/encryption/l10n/es_UY.js +%%WWWDIR%%/apps-pkg/encryption/l10n/es_UY.json +%%WWWDIR%%/apps-pkg/encryption/l10n/et_EE.js +%%WWWDIR%%/apps-pkg/encryption/l10n/et_EE.json +%%WWWDIR%%/apps-pkg/encryption/l10n/eu.js +%%WWWDIR%%/apps-pkg/encryption/l10n/eu.json +%%WWWDIR%%/apps-pkg/encryption/l10n/fa.js +%%WWWDIR%%/apps-pkg/encryption/l10n/fa.json +%%WWWDIR%%/apps-pkg/encryption/l10n/fi.js +%%WWWDIR%%/apps-pkg/encryption/l10n/fi.json +%%WWWDIR%%/apps-pkg/encryption/l10n/fi_FI.js +%%WWWDIR%%/apps-pkg/encryption/l10n/fi_FI.json +%%WWWDIR%%/apps-pkg/encryption/l10n/fr.js +%%WWWDIR%%/apps-pkg/encryption/l10n/fr.json +%%WWWDIR%%/apps-pkg/encryption/l10n/gl.js +%%WWWDIR%%/apps-pkg/encryption/l10n/gl.json +%%WWWDIR%%/apps-pkg/encryption/l10n/he.js +%%WWWDIR%%/apps-pkg/encryption/l10n/he.json +%%WWWDIR%%/apps-pkg/encryption/l10n/hr.js +%%WWWDIR%%/apps-pkg/encryption/l10n/hr.json +%%WWWDIR%%/apps-pkg/encryption/l10n/hu.js +%%WWWDIR%%/apps-pkg/encryption/l10n/hu.json +%%WWWDIR%%/apps-pkg/encryption/l10n/hu_HU.js +%%WWWDIR%%/apps-pkg/encryption/l10n/hu_HU.json +%%WWWDIR%%/apps-pkg/encryption/l10n/ia.js +%%WWWDIR%%/apps-pkg/encryption/l10n/ia.json +%%WWWDIR%%/apps-pkg/encryption/l10n/id.js +%%WWWDIR%%/apps-pkg/encryption/l10n/id.json +%%WWWDIR%%/apps-pkg/encryption/l10n/is.js +%%WWWDIR%%/apps-pkg/encryption/l10n/is.json +%%WWWDIR%%/apps-pkg/encryption/l10n/it.js +%%WWWDIR%%/apps-pkg/encryption/l10n/it.json +%%WWWDIR%%/apps-pkg/encryption/l10n/ja.js +%%WWWDIR%%/apps-pkg/encryption/l10n/ja.json +%%WWWDIR%%/apps-pkg/encryption/l10n/ka_GE.js +%%WWWDIR%%/apps-pkg/encryption/l10n/ka_GE.json +%%WWWDIR%%/apps-pkg/encryption/l10n/km.js +%%WWWDIR%%/apps-pkg/encryption/l10n/km.json +%%WWWDIR%%/apps-pkg/encryption/l10n/kn.js +%%WWWDIR%%/apps-pkg/encryption/l10n/kn.json +%%WWWDIR%%/apps-pkg/encryption/l10n/ko.js +%%WWWDIR%%/apps-pkg/encryption/l10n/ko.json +%%WWWDIR%%/apps-pkg/encryption/l10n/lb.js +%%WWWDIR%%/apps-pkg/encryption/l10n/lb.json +%%WWWDIR%%/apps-pkg/encryption/l10n/lt_LT.js +%%WWWDIR%%/apps-pkg/encryption/l10n/lt_LT.json +%%WWWDIR%%/apps-pkg/encryption/l10n/lv.js +%%WWWDIR%%/apps-pkg/encryption/l10n/lv.json +%%WWWDIR%%/apps-pkg/encryption/l10n/mk.js +%%WWWDIR%%/apps-pkg/encryption/l10n/mk.json +%%WWWDIR%%/apps-pkg/encryption/l10n/nb.js +%%WWWDIR%%/apps-pkg/encryption/l10n/nb.json +%%WWWDIR%%/apps-pkg/encryption/l10n/nb_NO.js +%%WWWDIR%%/apps-pkg/encryption/l10n/nb_NO.json +%%WWWDIR%%/apps-pkg/encryption/l10n/nl.js +%%WWWDIR%%/apps-pkg/encryption/l10n/nl.json +%%WWWDIR%%/apps-pkg/encryption/l10n/oc.js +%%WWWDIR%%/apps-pkg/encryption/l10n/oc.json +%%WWWDIR%%/apps-pkg/encryption/l10n/pl.js +%%WWWDIR%%/apps-pkg/encryption/l10n/pl.json +%%WWWDIR%%/apps-pkg/encryption/l10n/pt_BR.js +%%WWWDIR%%/apps-pkg/encryption/l10n/pt_BR.json +%%WWWDIR%%/apps-pkg/encryption/l10n/pt_PT.js +%%WWWDIR%%/apps-pkg/encryption/l10n/pt_PT.json +%%WWWDIR%%/apps-pkg/encryption/l10n/ro.js +%%WWWDIR%%/apps-pkg/encryption/l10n/ro.json +%%WWWDIR%%/apps-pkg/encryption/l10n/ru.js +%%WWWDIR%%/apps-pkg/encryption/l10n/ru.json +%%WWWDIR%%/apps-pkg/encryption/l10n/sk.js +%%WWWDIR%%/apps-pkg/encryption/l10n/sk.json +%%WWWDIR%%/apps-pkg/encryption/l10n/sk_SK.js +%%WWWDIR%%/apps-pkg/encryption/l10n/sk_SK.json +%%WWWDIR%%/apps-pkg/encryption/l10n/sl.js +%%WWWDIR%%/apps-pkg/encryption/l10n/sl.json +%%WWWDIR%%/apps-pkg/encryption/l10n/sq.js +%%WWWDIR%%/apps-pkg/encryption/l10n/sq.json +%%WWWDIR%%/apps-pkg/encryption/l10n/sr.js +%%WWWDIR%%/apps-pkg/encryption/l10n/sr.json +%%WWWDIR%%/apps-pkg/encryption/l10n/sr@latin.js +%%WWWDIR%%/apps-pkg/encryption/l10n/sr@latin.json +%%WWWDIR%%/apps-pkg/encryption/l10n/sv.js +%%WWWDIR%%/apps-pkg/encryption/l10n/sv.json +%%WWWDIR%%/apps-pkg/encryption/l10n/th.js +%%WWWDIR%%/apps-pkg/encryption/l10n/th.json +%%WWWDIR%%/apps-pkg/encryption/l10n/th_TH.js +%%WWWDIR%%/apps-pkg/encryption/l10n/th_TH.json +%%WWWDIR%%/apps-pkg/encryption/l10n/tr.js +%%WWWDIR%%/apps-pkg/encryption/l10n/tr.json +%%WWWDIR%%/apps-pkg/encryption/l10n/uk.js +%%WWWDIR%%/apps-pkg/encryption/l10n/uk.json +%%WWWDIR%%/apps-pkg/encryption/l10n/ur_PK.js +%%WWWDIR%%/apps-pkg/encryption/l10n/ur_PK.json +%%WWWDIR%%/apps-pkg/encryption/l10n/vi.js +%%WWWDIR%%/apps-pkg/encryption/l10n/vi.json +%%WWWDIR%%/apps-pkg/encryption/l10n/zh_CN.js +%%WWWDIR%%/apps-pkg/encryption/l10n/zh_CN.json +%%WWWDIR%%/apps-pkg/encryption/l10n/zh_HK.js +%%WWWDIR%%/apps-pkg/encryption/l10n/zh_HK.json +%%WWWDIR%%/apps-pkg/encryption/l10n/zh_TW.js +%%WWWDIR%%/apps-pkg/encryption/l10n/zh_TW.json +%%WWWDIR%%/apps-pkg/encryption/lib/AppInfo/Application.php +%%WWWDIR%%/apps-pkg/encryption/lib/Command/DisableMasterKey.php +%%WWWDIR%%/apps-pkg/encryption/lib/Command/EnableMasterKey.php +%%WWWDIR%%/apps-pkg/encryption/lib/Command/MigrateKeys.php +%%WWWDIR%%/apps-pkg/encryption/lib/Controller/RecoveryController.php +%%WWWDIR%%/apps-pkg/encryption/lib/Controller/SettingsController.php +%%WWWDIR%%/apps-pkg/encryption/lib/Controller/StatusController.php +%%WWWDIR%%/apps-pkg/encryption/lib/Crypto/Crypt.php +%%WWWDIR%%/apps-pkg/encryption/lib/Crypto/DecryptAll.php +%%WWWDIR%%/apps-pkg/encryption/lib/Crypto/EncryptAll.php +%%WWWDIR%%/apps-pkg/encryption/lib/Crypto/Encryption.php +%%WWWDIR%%/apps-pkg/encryption/lib/Exceptions/MultiKeyDecryptException.php +%%WWWDIR%%/apps-pkg/encryption/lib/Exceptions/MultiKeyEncryptException.php +%%WWWDIR%%/apps-pkg/encryption/lib/Exceptions/PrivateKeyMissingException.php +%%WWWDIR%%/apps-pkg/encryption/lib/Exceptions/PublicKeyMissingException.php +%%WWWDIR%%/apps-pkg/encryption/lib/HookManager.php +%%WWWDIR%%/apps-pkg/encryption/lib/Hooks/Contracts/IHook.php +%%WWWDIR%%/apps-pkg/encryption/lib/Hooks/UserHooks.php +%%WWWDIR%%/apps-pkg/encryption/lib/KeyManager.php +%%WWWDIR%%/apps-pkg/encryption/lib/Migration.php +%%WWWDIR%%/apps-pkg/encryption/lib/Migration/SetMasterKeyStatus.php +%%WWWDIR%%/apps-pkg/encryption/lib/Recovery.php +%%WWWDIR%%/apps-pkg/encryption/lib/Session.php +%%WWWDIR%%/apps-pkg/encryption/lib/Settings/Admin.php +%%WWWDIR%%/apps-pkg/encryption/lib/Settings/Personal.php +%%WWWDIR%%/apps-pkg/encryption/lib/Users/Setup.php +%%WWWDIR%%/apps-pkg/encryption/lib/Util.php +%%WWWDIR%%/apps-pkg/encryption/templates/altmail.php +%%WWWDIR%%/apps-pkg/encryption/templates/mail.php +%%WWWDIR%%/apps-pkg/encryption/templates/settings-admin.php +%%WWWDIR%%/apps-pkg/encryption/templates/settings-personal.php +%%WWWDIR%%/apps-pkg/federatedfilesharing/appinfo/app.php +%%WWWDIR%%/apps-pkg/federatedfilesharing/appinfo/database.xml +%%WWWDIR%%/apps-pkg/federatedfilesharing/appinfo/info.xml +%%WWWDIR%%/apps-pkg/federatedfilesharing/appinfo/routes.php +%%WWWDIR%%/apps-pkg/federatedfilesharing/appinfo/signature.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/composer/autoload.php +%%WWWDIR%%/apps-pkg/federatedfilesharing/composer/composer.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/composer/composer/ClassLoader.php +%%WWWDIR%%/apps-pkg/federatedfilesharing/composer/composer/LICENSE +%%WWWDIR%%/apps-pkg/federatedfilesharing/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps-pkg/federatedfilesharing/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps-pkg/federatedfilesharing/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps-pkg/federatedfilesharing/composer/composer/autoload_real.php +%%WWWDIR%%/apps-pkg/federatedfilesharing/composer/composer/autoload_static.php +%%WWWDIR%%/apps-pkg/federatedfilesharing/css/settings-personal.css +%%WWWDIR%%/apps-pkg/federatedfilesharing/img/social-diaspora.svg +%%WWWDIR%%/apps-pkg/federatedfilesharing/img/social-facebook.svg +%%WWWDIR%%/apps-pkg/federatedfilesharing/img/social-googleplus.svg +%%WWWDIR%%/apps-pkg/federatedfilesharing/img/social-twitter.svg +%%WWWDIR%%/apps-pkg/federatedfilesharing/js/external.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/js/settings-admin.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/js/settings-personal.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/.gitkeep +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ar.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ar.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ast.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ast.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/az.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/az.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/bg.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/bg.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/bg_BG.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/bg_BG.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ca.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ca.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/cs.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/cs.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/cs_CZ.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/cs_CZ.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/da.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/da.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/de.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/de.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/de_DE.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/de_DE.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/el.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/el.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/en_GB.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/en_GB.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/eo.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/eo.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_419.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_419.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_AR.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_AR.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_CL.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_CL.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_CO.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_CO.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_CR.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_CR.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_DO.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_DO.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_EC.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_EC.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_GT.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_GT.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_HN.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_HN.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_MX.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_MX.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_NI.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_NI.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_PA.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_PA.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_PE.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_PE.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_PR.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_PR.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_PY.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_PY.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_SV.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_SV.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_UY.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/es_UY.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/et_EE.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/et_EE.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/eu.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/eu.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/fa.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/fa.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/fi.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/fi.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/fi_FI.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/fi_FI.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/fr.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/fr.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/gl.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/gl.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/he.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/he.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/hr.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/hr.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/hu.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/hu.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/hu_HU.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/hu_HU.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ia.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ia.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/id.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/id.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/is.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/is.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/it.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/it.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ja.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ja.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ka_GE.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ka_GE.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ko.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ko.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/lb.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/lb.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/lt_LT.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/lt_LT.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/lv.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/lv.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/mk.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/mk.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/nb.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/nb.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/nb_NO.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/nb_NO.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/nl.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/nl.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/oc.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/oc.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/pl.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/pl.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/pt_BR.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/pt_BR.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/pt_PT.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/pt_PT.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ro.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ro.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ru.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/ru.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/sk.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/sk.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/sk_SK.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/sk_SK.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/sl.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/sl.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/sq.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/sq.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/sr.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/sr.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/sr@latin.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/sr@latin.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/sv.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/sv.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/th_TH.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/th_TH.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/tr.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/tr.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/uk.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/uk.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/zh_CN.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/zh_CN.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/zh_TW.js +%%WWWDIR%%/apps-pkg/federatedfilesharing/l10n/zh_TW.json +%%WWWDIR%%/apps-pkg/federatedfilesharing/lib/AddressHandler.php +%%WWWDIR%%/apps-pkg/federatedfilesharing/lib/AppInfo/Application.php +%%WWWDIR%%/apps-pkg/federatedfilesharing/lib/BackgroundJob/RetryJob.php +%%WWWDIR%%/apps-pkg/federatedfilesharing/lib/Controller/MountPublicLinkController.php +%%WWWDIR%%/apps-pkg/federatedfilesharing/lib/Controller/RequestHandlerController.php +%%WWWDIR%%/apps-pkg/federatedfilesharing/lib/FederatedShareProvider.php +%%WWWDIR%%/apps-pkg/federatedfilesharing/lib/Notifications.php +%%WWWDIR%%/apps-pkg/federatedfilesharing/lib/Notifier.php +%%WWWDIR%%/apps-pkg/federatedfilesharing/lib/Settings/Admin.php +%%WWWDIR%%/apps-pkg/federatedfilesharing/lib/Settings/Personal.php +%%WWWDIR%%/apps-pkg/federatedfilesharing/lib/Settings/PersonalSection.php +%%WWWDIR%%/apps-pkg/federatedfilesharing/lib/TokenHandler.php +%%WWWDIR%%/apps-pkg/federatedfilesharing/templates/settings-admin.php +%%WWWDIR%%/apps-pkg/federatedfilesharing/templates/settings-personal.php +%%WWWDIR%%/apps-pkg/federation/appinfo/app.php +%%WWWDIR%%/apps-pkg/federation/appinfo/database.xml +%%WWWDIR%%/apps-pkg/federation/appinfo/info.xml +%%WWWDIR%%/apps-pkg/federation/appinfo/routes.php +%%WWWDIR%%/apps-pkg/federation/appinfo/signature.json +%%WWWDIR%%/apps-pkg/federation/composer/autoload.php +%%WWWDIR%%/apps-pkg/federation/composer/composer.json +%%WWWDIR%%/apps-pkg/federation/composer/composer/ClassLoader.php +%%WWWDIR%%/apps-pkg/federation/composer/composer/LICENSE +%%WWWDIR%%/apps-pkg/federation/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps-pkg/federation/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps-pkg/federation/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps-pkg/federation/composer/composer/autoload_real.php +%%WWWDIR%%/apps-pkg/federation/composer/composer/autoload_static.php +%%WWWDIR%%/apps-pkg/federation/css/settings-admin.css +%%WWWDIR%%/apps-pkg/federation/img/app.svg +%%WWWDIR%%/apps-pkg/federation/js/settings-admin.js +%%WWWDIR%%/apps-pkg/federation/l10n/.gitkeep +%%WWWDIR%%/apps-pkg/federation/l10n/ar.js +%%WWWDIR%%/apps-pkg/federation/l10n/ar.json +%%WWWDIR%%/apps-pkg/federation/l10n/ast.js +%%WWWDIR%%/apps-pkg/federation/l10n/ast.json +%%WWWDIR%%/apps-pkg/federation/l10n/bg_BG.js +%%WWWDIR%%/apps-pkg/federation/l10n/bg_BG.json +%%WWWDIR%%/apps-pkg/federation/l10n/ca.js +%%WWWDIR%%/apps-pkg/federation/l10n/ca.json +%%WWWDIR%%/apps-pkg/federation/l10n/cs.js +%%WWWDIR%%/apps-pkg/federation/l10n/cs.json +%%WWWDIR%%/apps-pkg/federation/l10n/cs_CZ.js +%%WWWDIR%%/apps-pkg/federation/l10n/cs_CZ.json +%%WWWDIR%%/apps-pkg/federation/l10n/da.js +%%WWWDIR%%/apps-pkg/federation/l10n/da.json +%%WWWDIR%%/apps-pkg/federation/l10n/de.js +%%WWWDIR%%/apps-pkg/federation/l10n/de.json +%%WWWDIR%%/apps-pkg/federation/l10n/de_DE.js +%%WWWDIR%%/apps-pkg/federation/l10n/de_DE.json +%%WWWDIR%%/apps-pkg/federation/l10n/el.js +%%WWWDIR%%/apps-pkg/federation/l10n/el.json +%%WWWDIR%%/apps-pkg/federation/l10n/en_GB.js +%%WWWDIR%%/apps-pkg/federation/l10n/en_GB.json +%%WWWDIR%%/apps-pkg/federation/l10n/eo.js +%%WWWDIR%%/apps-pkg/federation/l10n/eo.json +%%WWWDIR%%/apps-pkg/federation/l10n/es.js +%%WWWDIR%%/apps-pkg/federation/l10n/es.json +%%WWWDIR%%/apps-pkg/federation/l10n/es_419.js +%%WWWDIR%%/apps-pkg/federation/l10n/es_419.json +%%WWWDIR%%/apps-pkg/federation/l10n/es_AR.js +%%WWWDIR%%/apps-pkg/federation/l10n/es_AR.json +%%WWWDIR%%/apps-pkg/federation/l10n/es_CL.js +%%WWWDIR%%/apps-pkg/federation/l10n/es_CL.json +%%WWWDIR%%/apps-pkg/federation/l10n/es_CO.js +%%WWWDIR%%/apps-pkg/federation/l10n/es_CO.json +%%WWWDIR%%/apps-pkg/federation/l10n/es_CR.js +%%WWWDIR%%/apps-pkg/federation/l10n/es_CR.json +%%WWWDIR%%/apps-pkg/federation/l10n/es_DO.js +%%WWWDIR%%/apps-pkg/federation/l10n/es_DO.json +%%WWWDIR%%/apps-pkg/federation/l10n/es_EC.js +%%WWWDIR%%/apps-pkg/federation/l10n/es_EC.json +%%WWWDIR%%/apps-pkg/federation/l10n/es_GT.js +%%WWWDIR%%/apps-pkg/federation/l10n/es_GT.json +%%WWWDIR%%/apps-pkg/federation/l10n/es_HN.js +%%WWWDIR%%/apps-pkg/federation/l10n/es_HN.json +%%WWWDIR%%/apps-pkg/federation/l10n/es_MX.js +%%WWWDIR%%/apps-pkg/federation/l10n/es_MX.json +%%WWWDIR%%/apps-pkg/federation/l10n/es_NI.js +%%WWWDIR%%/apps-pkg/federation/l10n/es_NI.json +%%WWWDIR%%/apps-pkg/federation/l10n/es_PA.js +%%WWWDIR%%/apps-pkg/federation/l10n/es_PA.json +%%WWWDIR%%/apps-pkg/federation/l10n/es_PE.js +%%WWWDIR%%/apps-pkg/federation/l10n/es_PE.json +%%WWWDIR%%/apps-pkg/federation/l10n/es_PR.js +%%WWWDIR%%/apps-pkg/federation/l10n/es_PR.json +%%WWWDIR%%/apps-pkg/federation/l10n/es_PY.js +%%WWWDIR%%/apps-pkg/federation/l10n/es_PY.json +%%WWWDIR%%/apps-pkg/federation/l10n/es_SV.js +%%WWWDIR%%/apps-pkg/federation/l10n/es_SV.json +%%WWWDIR%%/apps-pkg/federation/l10n/es_UY.js +%%WWWDIR%%/apps-pkg/federation/l10n/es_UY.json +%%WWWDIR%%/apps-pkg/federation/l10n/et_EE.js +%%WWWDIR%%/apps-pkg/federation/l10n/et_EE.json +%%WWWDIR%%/apps-pkg/federation/l10n/eu.js +%%WWWDIR%%/apps-pkg/federation/l10n/eu.json +%%WWWDIR%%/apps-pkg/federation/l10n/fa.js +%%WWWDIR%%/apps-pkg/federation/l10n/fa.json +%%WWWDIR%%/apps-pkg/federation/l10n/fi.js +%%WWWDIR%%/apps-pkg/federation/l10n/fi.json +%%WWWDIR%%/apps-pkg/federation/l10n/fi_FI.js +%%WWWDIR%%/apps-pkg/federation/l10n/fi_FI.json +%%WWWDIR%%/apps-pkg/federation/l10n/fr.js +%%WWWDIR%%/apps-pkg/federation/l10n/fr.json +%%WWWDIR%%/apps-pkg/federation/l10n/gl.js +%%WWWDIR%%/apps-pkg/federation/l10n/gl.json +%%WWWDIR%%/apps-pkg/federation/l10n/he.js +%%WWWDIR%%/apps-pkg/federation/l10n/he.json +%%WWWDIR%%/apps-pkg/federation/l10n/hu.js +%%WWWDIR%%/apps-pkg/federation/l10n/hu.json +%%WWWDIR%%/apps-pkg/federation/l10n/hu_HU.js +%%WWWDIR%%/apps-pkg/federation/l10n/hu_HU.json +%%WWWDIR%%/apps-pkg/federation/l10n/ia.js +%%WWWDIR%%/apps-pkg/federation/l10n/ia.json +%%WWWDIR%%/apps-pkg/federation/l10n/id.js +%%WWWDIR%%/apps-pkg/federation/l10n/id.json +%%WWWDIR%%/apps-pkg/federation/l10n/is.js +%%WWWDIR%%/apps-pkg/federation/l10n/is.json +%%WWWDIR%%/apps-pkg/federation/l10n/it.js +%%WWWDIR%%/apps-pkg/federation/l10n/it.json +%%WWWDIR%%/apps-pkg/federation/l10n/ja.js +%%WWWDIR%%/apps-pkg/federation/l10n/ja.json +%%WWWDIR%%/apps-pkg/federation/l10n/ka_GE.js +%%WWWDIR%%/apps-pkg/federation/l10n/ka_GE.json +%%WWWDIR%%/apps-pkg/federation/l10n/ko.js +%%WWWDIR%%/apps-pkg/federation/l10n/ko.json +%%WWWDIR%%/apps-pkg/federation/l10n/lb.js +%%WWWDIR%%/apps-pkg/federation/l10n/lb.json +%%WWWDIR%%/apps-pkg/federation/l10n/lt_LT.js +%%WWWDIR%%/apps-pkg/federation/l10n/lt_LT.json +%%WWWDIR%%/apps-pkg/federation/l10n/lv.js +%%WWWDIR%%/apps-pkg/federation/l10n/lv.json +%%WWWDIR%%/apps-pkg/federation/l10n/mn.js +%%WWWDIR%%/apps-pkg/federation/l10n/mn.json +%%WWWDIR%%/apps-pkg/federation/l10n/nb.js +%%WWWDIR%%/apps-pkg/federation/l10n/nb.json +%%WWWDIR%%/apps-pkg/federation/l10n/nb_NO.js +%%WWWDIR%%/apps-pkg/federation/l10n/nb_NO.json +%%WWWDIR%%/apps-pkg/federation/l10n/nl.js +%%WWWDIR%%/apps-pkg/federation/l10n/nl.json +%%WWWDIR%%/apps-pkg/federation/l10n/oc.js +%%WWWDIR%%/apps-pkg/federation/l10n/oc.json +%%WWWDIR%%/apps-pkg/federation/l10n/pl.js +%%WWWDIR%%/apps-pkg/federation/l10n/pl.json +%%WWWDIR%%/apps-pkg/federation/l10n/pt_BR.js +%%WWWDIR%%/apps-pkg/federation/l10n/pt_BR.json +%%WWWDIR%%/apps-pkg/federation/l10n/pt_PT.js +%%WWWDIR%%/apps-pkg/federation/l10n/pt_PT.json +%%WWWDIR%%/apps-pkg/federation/l10n/ro.js +%%WWWDIR%%/apps-pkg/federation/l10n/ro.json +%%WWWDIR%%/apps-pkg/federation/l10n/ru.js +%%WWWDIR%%/apps-pkg/federation/l10n/ru.json +%%WWWDIR%%/apps-pkg/federation/l10n/sk.js +%%WWWDIR%%/apps-pkg/federation/l10n/sk.json +%%WWWDIR%%/apps-pkg/federation/l10n/sl.js +%%WWWDIR%%/apps-pkg/federation/l10n/sl.json +%%WWWDIR%%/apps-pkg/federation/l10n/sq.js +%%WWWDIR%%/apps-pkg/federation/l10n/sq.json +%%WWWDIR%%/apps-pkg/federation/l10n/sr.js +%%WWWDIR%%/apps-pkg/federation/l10n/sr.json +%%WWWDIR%%/apps-pkg/federation/l10n/sv.js +%%WWWDIR%%/apps-pkg/federation/l10n/sv.json +%%WWWDIR%%/apps-pkg/federation/l10n/th_TH.js +%%WWWDIR%%/apps-pkg/federation/l10n/th_TH.json +%%WWWDIR%%/apps-pkg/federation/l10n/tr.js +%%WWWDIR%%/apps-pkg/federation/l10n/tr.json +%%WWWDIR%%/apps-pkg/federation/l10n/uk.js +%%WWWDIR%%/apps-pkg/federation/l10n/uk.json +%%WWWDIR%%/apps-pkg/federation/l10n/zh_CN.js +%%WWWDIR%%/apps-pkg/federation/l10n/zh_CN.json +%%WWWDIR%%/apps-pkg/federation/l10n/zh_TW.js +%%WWWDIR%%/apps-pkg/federation/l10n/zh_TW.json +%%WWWDIR%%/apps-pkg/federation/lib/AppInfo/Application.php +%%WWWDIR%%/apps-pkg/federation/lib/BackgroundJob/GetSharedSecret.php +%%WWWDIR%%/apps-pkg/federation/lib/BackgroundJob/RequestSharedSecret.php +%%WWWDIR%%/apps-pkg/federation/lib/Command/SyncFederationAddressBooks.php +%%WWWDIR%%/apps-pkg/federation/lib/Controller/OCSAuthAPIController.php +%%WWWDIR%%/apps-pkg/federation/lib/Controller/SettingsController.php +%%WWWDIR%%/apps-pkg/federation/lib/DAV/FedAuth.php +%%WWWDIR%%/apps-pkg/federation/lib/DbHandler.php +%%WWWDIR%%/apps-pkg/federation/lib/Hooks.php +%%WWWDIR%%/apps-pkg/federation/lib/Middleware/AddServerMiddleware.php +%%WWWDIR%%/apps-pkg/federation/lib/Settings/Admin.php +%%WWWDIR%%/apps-pkg/federation/lib/SyncFederationAddressBooks.php +%%WWWDIR%%/apps-pkg/federation/lib/SyncJob.php +%%WWWDIR%%/apps-pkg/federation/lib/TrustedServers.php +%%WWWDIR%%/apps-pkg/federation/templates/settings-admin.php +%%WWWDIR%%/apps-pkg/files/ajax/download.php +%%WWWDIR%%/apps-pkg/files/ajax/getstoragestats.php +%%WWWDIR%%/apps-pkg/files/ajax/list.php +%%WWWDIR%%/apps-pkg/files/appinfo/app.php +%%WWWDIR%%/apps-pkg/files/appinfo/info.xml +%%WWWDIR%%/apps-pkg/files/appinfo/routes.php +%%WWWDIR%%/apps-pkg/files/appinfo/signature.json +%%WWWDIR%%/apps-pkg/files/composer/autoload.php +%%WWWDIR%%/apps-pkg/files/composer/composer.json +%%WWWDIR%%/apps-pkg/files/composer/composer/ClassLoader.php +%%WWWDIR%%/apps-pkg/files/composer/composer/LICENSE +%%WWWDIR%%/apps-pkg/files/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps-pkg/files/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps-pkg/files/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps-pkg/files/composer/composer/autoload_real.php +%%WWWDIR%%/apps-pkg/files/composer/composer/autoload_static.php +%%WWWDIR%%/apps-pkg/files/css/detailsView.scss +%%WWWDIR%%/apps-pkg/files/css/files.scss +%%WWWDIR%%/apps-pkg/files/css/merged.scss +%%WWWDIR%%/apps-pkg/files/css/mobile.scss +%%WWWDIR%%/apps-pkg/files/css/upload.scss +%%WWWDIR%%/apps-pkg/files/download.php +%%WWWDIR%%/apps-pkg/files/img/add-color.png +%%WWWDIR%%/apps-pkg/files/img/add-color.svg +%%WWWDIR%%/apps-pkg/files/img/app.svg +%%WWWDIR%%/apps-pkg/files/img/change.png +%%WWWDIR%%/apps-pkg/files/img/change.svg +%%WWWDIR%%/apps-pkg/files/img/delete-color.png +%%WWWDIR%%/apps-pkg/files/img/delete-color.svg +%%WWWDIR%%/apps-pkg/files/img/delete.svg +%%WWWDIR%%/apps-pkg/files/img/external.svg +%%WWWDIR%%/apps-pkg/files/img/folder.svg +%%WWWDIR%%/apps-pkg/files/img/public.svg +%%WWWDIR%%/apps-pkg/files/img/quota.svg +%%WWWDIR%%/apps-pkg/files/img/recent.svg +%%WWWDIR%%/apps-pkg/files/img/share.svg +%%WWWDIR%%/apps-pkg/files/img/star.svg +%%WWWDIR%%/apps-pkg/files/js/admin.js +%%WWWDIR%%/apps-pkg/files/js/app.js +%%WWWDIR%%/apps-pkg/files/js/breadcrumb.js +%%WWWDIR%%/apps-pkg/files/js/detailfileinfoview.js +%%WWWDIR%%/apps-pkg/files/js/detailsview.js +%%WWWDIR%%/apps-pkg/files/js/detailtabview.js +%%WWWDIR%%/apps-pkg/files/js/favoritesfilelist.js +%%WWWDIR%%/apps-pkg/files/js/favoritesplugin.js +%%WWWDIR%%/apps-pkg/files/js/file-upload.js +%%WWWDIR%%/apps-pkg/files/js/fileactions.js +%%WWWDIR%%/apps-pkg/files/js/fileactionsmenu.js +%%WWWDIR%%/apps-pkg/files/js/fileinfomodel.js +%%WWWDIR%%/apps-pkg/files/js/filelist.js +%%WWWDIR%%/apps-pkg/files/js/files.js +%%WWWDIR%%/apps-pkg/files/js/filesummary.js +%%WWWDIR%%/apps-pkg/files/js/gotoplugin.js +%%WWWDIR%%/apps-pkg/files/js/jquery-visibility.js +%%WWWDIR%%/apps-pkg/files/js/jquery.fileupload.js +%%WWWDIR%%/apps-pkg/files/js/keyboardshortcuts.js +%%WWWDIR%%/apps-pkg/files/js/mainfileinfodetailview.js +%%WWWDIR%%/apps-pkg/files/js/merged-index.json +%%WWWDIR%%/apps-pkg/files/js/navigation.js +%%WWWDIR%%/apps-pkg/files/js/newfilemenu.js +%%WWWDIR%%/apps-pkg/files/js/recentfilelist.js +%%WWWDIR%%/apps-pkg/files/js/recentplugin.js +%%WWWDIR%%/apps-pkg/files/js/search.js +%%WWWDIR%%/apps-pkg/files/js/sidebarpreviewmanager.js +%%WWWDIR%%/apps-pkg/files/js/sidebarpreviewtext.js +%%WWWDIR%%/apps-pkg/files/js/tagsplugin.js +%%WWWDIR%%/apps-pkg/files/js/templates/detailsview.handlebars.js +%%WWWDIR%%/apps-pkg/files/js/upload.js +%%WWWDIR%%/apps-pkg/files/l10n/ach.js +%%WWWDIR%%/apps-pkg/files/l10n/ach.json +%%WWWDIR%%/apps-pkg/files/l10n/ady.js +%%WWWDIR%%/apps-pkg/files/l10n/ady.json +%%WWWDIR%%/apps-pkg/files/l10n/af_ZA.js +%%WWWDIR%%/apps-pkg/files/l10n/af_ZA.json +%%WWWDIR%%/apps-pkg/files/l10n/ak.js +%%WWWDIR%%/apps-pkg/files/l10n/ak.json +%%WWWDIR%%/apps-pkg/files/l10n/am_ET.js +%%WWWDIR%%/apps-pkg/files/l10n/am_ET.json +%%WWWDIR%%/apps-pkg/files/l10n/ar.js +%%WWWDIR%%/apps-pkg/files/l10n/ar.json +%%WWWDIR%%/apps-pkg/files/l10n/ast.js +%%WWWDIR%%/apps-pkg/files/l10n/ast.json +%%WWWDIR%%/apps-pkg/files/l10n/az.js +%%WWWDIR%%/apps-pkg/files/l10n/az.json +%%WWWDIR%%/apps-pkg/files/l10n/be.js +%%WWWDIR%%/apps-pkg/files/l10n/be.json +%%WWWDIR%%/apps-pkg/files/l10n/bg.js +%%WWWDIR%%/apps-pkg/files/l10n/bg.json +%%WWWDIR%%/apps-pkg/files/l10n/bg_BG.js +%%WWWDIR%%/apps-pkg/files/l10n/bg_BG.json +%%WWWDIR%%/apps-pkg/files/l10n/bn_BD.js +%%WWWDIR%%/apps-pkg/files/l10n/bn_BD.json +%%WWWDIR%%/apps-pkg/files/l10n/bn_IN.js +%%WWWDIR%%/apps-pkg/files/l10n/bn_IN.json +%%WWWDIR%%/apps-pkg/files/l10n/bs.js +%%WWWDIR%%/apps-pkg/files/l10n/bs.json +%%WWWDIR%%/apps-pkg/files/l10n/ca.js +%%WWWDIR%%/apps-pkg/files/l10n/ca.json +%%WWWDIR%%/apps-pkg/files/l10n/cs.js +%%WWWDIR%%/apps-pkg/files/l10n/cs.json +%%WWWDIR%%/apps-pkg/files/l10n/cs_CZ.js +%%WWWDIR%%/apps-pkg/files/l10n/cs_CZ.json +%%WWWDIR%%/apps-pkg/files/l10n/cy_GB.js +%%WWWDIR%%/apps-pkg/files/l10n/cy_GB.json +%%WWWDIR%%/apps-pkg/files/l10n/da.js +%%WWWDIR%%/apps-pkg/files/l10n/da.json +%%WWWDIR%%/apps-pkg/files/l10n/de.js +%%WWWDIR%%/apps-pkg/files/l10n/de.json +%%WWWDIR%%/apps-pkg/files/l10n/de_AT.js +%%WWWDIR%%/apps-pkg/files/l10n/de_AT.json +%%WWWDIR%%/apps-pkg/files/l10n/de_DE.js +%%WWWDIR%%/apps-pkg/files/l10n/de_DE.json +%%WWWDIR%%/apps-pkg/files/l10n/el.js +%%WWWDIR%%/apps-pkg/files/l10n/el.json +%%WWWDIR%%/apps-pkg/files/l10n/en_GB.js +%%WWWDIR%%/apps-pkg/files/l10n/en_GB.json +%%WWWDIR%%/apps-pkg/files/l10n/eo.js +%%WWWDIR%%/apps-pkg/files/l10n/eo.json +%%WWWDIR%%/apps-pkg/files/l10n/es.js +%%WWWDIR%%/apps-pkg/files/l10n/es.json +%%WWWDIR%%/apps-pkg/files/l10n/es_419.js +%%WWWDIR%%/apps-pkg/files/l10n/es_419.json +%%WWWDIR%%/apps-pkg/files/l10n/es_AR.js +%%WWWDIR%%/apps-pkg/files/l10n/es_AR.json +%%WWWDIR%%/apps-pkg/files/l10n/es_CL.js +%%WWWDIR%%/apps-pkg/files/l10n/es_CL.json +%%WWWDIR%%/apps-pkg/files/l10n/es_CO.js +%%WWWDIR%%/apps-pkg/files/l10n/es_CO.json +%%WWWDIR%%/apps-pkg/files/l10n/es_CR.js +%%WWWDIR%%/apps-pkg/files/l10n/es_CR.json +%%WWWDIR%%/apps-pkg/files/l10n/es_DO.js +%%WWWDIR%%/apps-pkg/files/l10n/es_DO.json +%%WWWDIR%%/apps-pkg/files/l10n/es_EC.js +%%WWWDIR%%/apps-pkg/files/l10n/es_EC.json +%%WWWDIR%%/apps-pkg/files/l10n/es_GT.js +%%WWWDIR%%/apps-pkg/files/l10n/es_GT.json +%%WWWDIR%%/apps-pkg/files/l10n/es_HN.js +%%WWWDIR%%/apps-pkg/files/l10n/es_HN.json +%%WWWDIR%%/apps-pkg/files/l10n/es_MX.js +%%WWWDIR%%/apps-pkg/files/l10n/es_MX.json +%%WWWDIR%%/apps-pkg/files/l10n/es_NI.js +%%WWWDIR%%/apps-pkg/files/l10n/es_NI.json +%%WWWDIR%%/apps-pkg/files/l10n/es_PA.js +%%WWWDIR%%/apps-pkg/files/l10n/es_PA.json +%%WWWDIR%%/apps-pkg/files/l10n/es_PE.js +%%WWWDIR%%/apps-pkg/files/l10n/es_PE.json +%%WWWDIR%%/apps-pkg/files/l10n/es_PR.js +%%WWWDIR%%/apps-pkg/files/l10n/es_PR.json +%%WWWDIR%%/apps-pkg/files/l10n/es_PY.js +%%WWWDIR%%/apps-pkg/files/l10n/es_PY.json +%%WWWDIR%%/apps-pkg/files/l10n/es_SV.js +%%WWWDIR%%/apps-pkg/files/l10n/es_SV.json +%%WWWDIR%%/apps-pkg/files/l10n/es_UY.js +%%WWWDIR%%/apps-pkg/files/l10n/es_UY.json +%%WWWDIR%%/apps-pkg/files/l10n/et_EE.js +%%WWWDIR%%/apps-pkg/files/l10n/et_EE.json +%%WWWDIR%%/apps-pkg/files/l10n/eu.js +%%WWWDIR%%/apps-pkg/files/l10n/eu.json +%%WWWDIR%%/apps-pkg/files/l10n/fa.js +%%WWWDIR%%/apps-pkg/files/l10n/fa.json +%%WWWDIR%%/apps-pkg/files/l10n/fi.js +%%WWWDIR%%/apps-pkg/files/l10n/fi.json +%%WWWDIR%%/apps-pkg/files/l10n/fi_FI.js +%%WWWDIR%%/apps-pkg/files/l10n/fi_FI.json +%%WWWDIR%%/apps-pkg/files/l10n/fil.js +%%WWWDIR%%/apps-pkg/files/l10n/fil.json +%%WWWDIR%%/apps-pkg/files/l10n/fr.js +%%WWWDIR%%/apps-pkg/files/l10n/fr.json +%%WWWDIR%%/apps-pkg/files/l10n/fy_NL.js +%%WWWDIR%%/apps-pkg/files/l10n/fy_NL.json +%%WWWDIR%%/apps-pkg/files/l10n/gl.js +%%WWWDIR%%/apps-pkg/files/l10n/gl.json +%%WWWDIR%%/apps-pkg/files/l10n/gu.js +%%WWWDIR%%/apps-pkg/files/l10n/gu.json +%%WWWDIR%%/apps-pkg/files/l10n/he.js +%%WWWDIR%%/apps-pkg/files/l10n/he.json +%%WWWDIR%%/apps-pkg/files/l10n/hi.js +%%WWWDIR%%/apps-pkg/files/l10n/hi.json +%%WWWDIR%%/apps-pkg/files/l10n/hr.js +%%WWWDIR%%/apps-pkg/files/l10n/hr.json +%%WWWDIR%%/apps-pkg/files/l10n/hu.js +%%WWWDIR%%/apps-pkg/files/l10n/hu.json +%%WWWDIR%%/apps-pkg/files/l10n/hu_HU.js +%%WWWDIR%%/apps-pkg/files/l10n/hu_HU.json +%%WWWDIR%%/apps-pkg/files/l10n/hy.js +%%WWWDIR%%/apps-pkg/files/l10n/hy.json +%%WWWDIR%%/apps-pkg/files/l10n/ia.js +%%WWWDIR%%/apps-pkg/files/l10n/ia.json +%%WWWDIR%%/apps-pkg/files/l10n/id.js +%%WWWDIR%%/apps-pkg/files/l10n/id.json +%%WWWDIR%%/apps-pkg/files/l10n/io.js +%%WWWDIR%%/apps-pkg/files/l10n/io.json +%%WWWDIR%%/apps-pkg/files/l10n/is.js +%%WWWDIR%%/apps-pkg/files/l10n/is.json +%%WWWDIR%%/apps-pkg/files/l10n/it.js +%%WWWDIR%%/apps-pkg/files/l10n/it.json +%%WWWDIR%%/apps-pkg/files/l10n/ja.js +%%WWWDIR%%/apps-pkg/files/l10n/ja.json +%%WWWDIR%%/apps-pkg/files/l10n/jv.js +%%WWWDIR%%/apps-pkg/files/l10n/jv.json +%%WWWDIR%%/apps-pkg/files/l10n/ka_GE.js +%%WWWDIR%%/apps-pkg/files/l10n/ka_GE.json +%%WWWDIR%%/apps-pkg/files/l10n/km.js +%%WWWDIR%%/apps-pkg/files/l10n/km.json +%%WWWDIR%%/apps-pkg/files/l10n/kn.js +%%WWWDIR%%/apps-pkg/files/l10n/kn.json +%%WWWDIR%%/apps-pkg/files/l10n/ko.js +%%WWWDIR%%/apps-pkg/files/l10n/ko.json +%%WWWDIR%%/apps-pkg/files/l10n/ku_IQ.js +%%WWWDIR%%/apps-pkg/files/l10n/ku_IQ.json +%%WWWDIR%%/apps-pkg/files/l10n/lb.js +%%WWWDIR%%/apps-pkg/files/l10n/lb.json +%%WWWDIR%%/apps-pkg/files/l10n/lo.js +%%WWWDIR%%/apps-pkg/files/l10n/lo.json +%%WWWDIR%%/apps-pkg/files/l10n/lt_LT.js +%%WWWDIR%%/apps-pkg/files/l10n/lt_LT.json +%%WWWDIR%%/apps-pkg/files/l10n/lv.js +%%WWWDIR%%/apps-pkg/files/l10n/lv.json +%%WWWDIR%%/apps-pkg/files/l10n/mg.js +%%WWWDIR%%/apps-pkg/files/l10n/mg.json +%%WWWDIR%%/apps-pkg/files/l10n/mk.js +%%WWWDIR%%/apps-pkg/files/l10n/mk.json +%%WWWDIR%%/apps-pkg/files/l10n/ml.js +%%WWWDIR%%/apps-pkg/files/l10n/ml.json +%%WWWDIR%%/apps-pkg/files/l10n/ml_IN.js +%%WWWDIR%%/apps-pkg/files/l10n/ml_IN.json +%%WWWDIR%%/apps-pkg/files/l10n/mn.js +%%WWWDIR%%/apps-pkg/files/l10n/mn.json +%%WWWDIR%%/apps-pkg/files/l10n/mr.js +%%WWWDIR%%/apps-pkg/files/l10n/mr.json +%%WWWDIR%%/apps-pkg/files/l10n/ms_MY.js +%%WWWDIR%%/apps-pkg/files/l10n/ms_MY.json +%%WWWDIR%%/apps-pkg/files/l10n/mt_MT.js +%%WWWDIR%%/apps-pkg/files/l10n/mt_MT.json +%%WWWDIR%%/apps-pkg/files/l10n/my_MM.js +%%WWWDIR%%/apps-pkg/files/l10n/my_MM.json +%%WWWDIR%%/apps-pkg/files/l10n/nb.js +%%WWWDIR%%/apps-pkg/files/l10n/nb.json +%%WWWDIR%%/apps-pkg/files/l10n/nb_NO.js +%%WWWDIR%%/apps-pkg/files/l10n/nb_NO.json +%%WWWDIR%%/apps-pkg/files/l10n/nds.js +%%WWWDIR%%/apps-pkg/files/l10n/nds.json +%%WWWDIR%%/apps-pkg/files/l10n/nl.js +%%WWWDIR%%/apps-pkg/files/l10n/nl.json +%%WWWDIR%%/apps-pkg/files/l10n/nn_NO.js +%%WWWDIR%%/apps-pkg/files/l10n/nn_NO.json +%%WWWDIR%%/apps-pkg/files/l10n/nqo.js +%%WWWDIR%%/apps-pkg/files/l10n/nqo.json +%%WWWDIR%%/apps-pkg/files/l10n/oc.js +%%WWWDIR%%/apps-pkg/files/l10n/oc.json +%%WWWDIR%%/apps-pkg/files/l10n/pa.js +%%WWWDIR%%/apps-pkg/files/l10n/pa.json +%%WWWDIR%%/apps-pkg/files/l10n/pl.js +%%WWWDIR%%/apps-pkg/files/l10n/pl.json +%%WWWDIR%%/apps-pkg/files/l10n/pt_BR.js +%%WWWDIR%%/apps-pkg/files/l10n/pt_BR.json +%%WWWDIR%%/apps-pkg/files/l10n/pt_PT.js +%%WWWDIR%%/apps-pkg/files/l10n/pt_PT.json +%%WWWDIR%%/apps-pkg/files/l10n/ro.js +%%WWWDIR%%/apps-pkg/files/l10n/ro.json +%%WWWDIR%%/apps-pkg/files/l10n/ru.js +%%WWWDIR%%/apps-pkg/files/l10n/ru.json +%%WWWDIR%%/apps-pkg/files/l10n/si_LK.js +%%WWWDIR%%/apps-pkg/files/l10n/si_LK.json +%%WWWDIR%%/apps-pkg/files/l10n/sk.js +%%WWWDIR%%/apps-pkg/files/l10n/sk.json +%%WWWDIR%%/apps-pkg/files/l10n/sk_SK.js +%%WWWDIR%%/apps-pkg/files/l10n/sk_SK.json +%%WWWDIR%%/apps-pkg/files/l10n/sl.js +%%WWWDIR%%/apps-pkg/files/l10n/sl.json +%%WWWDIR%%/apps-pkg/files/l10n/sq.js +%%WWWDIR%%/apps-pkg/files/l10n/sq.json +%%WWWDIR%%/apps-pkg/files/l10n/sr.js +%%WWWDIR%%/apps-pkg/files/l10n/sr.json +%%WWWDIR%%/apps-pkg/files/l10n/sr@latin.js +%%WWWDIR%%/apps-pkg/files/l10n/sr@latin.json +%%WWWDIR%%/apps-pkg/files/l10n/su.js +%%WWWDIR%%/apps-pkg/files/l10n/su.json +%%WWWDIR%%/apps-pkg/files/l10n/sv.js +%%WWWDIR%%/apps-pkg/files/l10n/sv.json +%%WWWDIR%%/apps-pkg/files/l10n/sw_KE.js +%%WWWDIR%%/apps-pkg/files/l10n/sw_KE.json +%%WWWDIR%%/apps-pkg/files/l10n/ta_IN.js +%%WWWDIR%%/apps-pkg/files/l10n/ta_IN.json +%%WWWDIR%%/apps-pkg/files/l10n/ta_LK.js +%%WWWDIR%%/apps-pkg/files/l10n/ta_LK.json +%%WWWDIR%%/apps-pkg/files/l10n/te.js +%%WWWDIR%%/apps-pkg/files/l10n/te.json +%%WWWDIR%%/apps-pkg/files/l10n/tg_TJ.js +%%WWWDIR%%/apps-pkg/files/l10n/tg_TJ.json +%%WWWDIR%%/apps-pkg/files/l10n/th.js +%%WWWDIR%%/apps-pkg/files/l10n/th.json +%%WWWDIR%%/apps-pkg/files/l10n/th_TH.js +%%WWWDIR%%/apps-pkg/files/l10n/th_TH.json +%%WWWDIR%%/apps-pkg/files/l10n/tl_PH.js +%%WWWDIR%%/apps-pkg/files/l10n/tl_PH.json +%%WWWDIR%%/apps-pkg/files/l10n/tr.js +%%WWWDIR%%/apps-pkg/files/l10n/tr.json +%%WWWDIR%%/apps-pkg/files/l10n/tzm.js +%%WWWDIR%%/apps-pkg/files/l10n/tzm.json +%%WWWDIR%%/apps-pkg/files/l10n/ug.js +%%WWWDIR%%/apps-pkg/files/l10n/ug.json +%%WWWDIR%%/apps-pkg/files/l10n/uk.js +%%WWWDIR%%/apps-pkg/files/l10n/uk.json +%%WWWDIR%%/apps-pkg/files/l10n/ur_PK.js +%%WWWDIR%%/apps-pkg/files/l10n/ur_PK.json +%%WWWDIR%%/apps-pkg/files/l10n/vi.js +%%WWWDIR%%/apps-pkg/files/l10n/vi.json +%%WWWDIR%%/apps-pkg/files/l10n/xgettextfiles +%%WWWDIR%%/apps-pkg/files/l10n/zh_CN.js +%%WWWDIR%%/apps-pkg/files/l10n/zh_CN.json +%%WWWDIR%%/apps-pkg/files/l10n/zh_HK.js +%%WWWDIR%%/apps-pkg/files/l10n/zh_HK.json +%%WWWDIR%%/apps-pkg/files/l10n/zh_TW.js +%%WWWDIR%%/apps-pkg/files/l10n/zh_TW.json +%%WWWDIR%%/apps-pkg/files/lib/Activity/FavoriteProvider.php +%%WWWDIR%%/apps-pkg/files/lib/Activity/Filter/Favorites.php +%%WWWDIR%%/apps-pkg/files/lib/Activity/Filter/FileChanges.php +%%WWWDIR%%/apps-pkg/files/lib/Activity/Helper.php +%%WWWDIR%%/apps-pkg/files/lib/Activity/Provider.php +%%WWWDIR%%/apps-pkg/files/lib/Activity/Settings/FavoriteAction.php +%%WWWDIR%%/apps-pkg/files/lib/Activity/Settings/FileChanged.php +%%WWWDIR%%/apps-pkg/files/lib/Activity/Settings/FileCreated.php +%%WWWDIR%%/apps-pkg/files/lib/Activity/Settings/FileDeleted.php +%%WWWDIR%%/apps-pkg/files/lib/Activity/Settings/FileFavorite.php +%%WWWDIR%%/apps-pkg/files/lib/Activity/Settings/FileRestored.php +%%WWWDIR%%/apps-pkg/files/lib/App.php +%%WWWDIR%%/apps-pkg/files/lib/AppInfo/Application.php +%%WWWDIR%%/apps-pkg/files/lib/BackgroundJob/CleanupFileLocks.php +%%WWWDIR%%/apps-pkg/files/lib/BackgroundJob/DeleteOrphanedItems.php +%%WWWDIR%%/apps-pkg/files/lib/BackgroundJob/ScanFiles.php +%%WWWDIR%%/apps-pkg/files/lib/Capabilities.php +%%WWWDIR%%/apps-pkg/files/lib/Command/DeleteOrphanedFiles.php +%%WWWDIR%%/apps-pkg/files/lib/Command/Scan.php +%%WWWDIR%%/apps-pkg/files/lib/Command/ScanAppData.php +%%WWWDIR%%/apps-pkg/files/lib/Command/TransferOwnership.php +%%WWWDIR%%/apps-pkg/files/lib/Controller/ApiController.php +%%WWWDIR%%/apps-pkg/files/lib/Controller/SettingsController.php +%%WWWDIR%%/apps-pkg/files/lib/Controller/ViewController.php +%%WWWDIR%%/apps-pkg/files/lib/Helper.php +%%WWWDIR%%/apps-pkg/files/lib/Service/TagService.php +%%WWWDIR%%/apps-pkg/files/lib/Settings/Admin.php +%%WWWDIR%%/apps-pkg/files/list.php +%%WWWDIR%%/apps-pkg/files/recentlist.php +%%WWWDIR%%/apps-pkg/files/simplelist.php +%%WWWDIR%%/apps-pkg/files/templates/admin.php +%%WWWDIR%%/apps-pkg/files/templates/appnavigation.php +%%WWWDIR%%/apps-pkg/files/templates/fileexists.html +%%WWWDIR%%/apps-pkg/files/templates/index.php +%%WWWDIR%%/apps-pkg/files/templates/list.php +%%WWWDIR%%/apps-pkg/files/templates/recentlist.php +%%WWWDIR%%/apps-pkg/files/templates/simplelist.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/.gitignore +%%WWWDIR%%/apps-pkg/files_external/3rdparty/autoload.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/composer.json +%%WWWDIR%%/apps-pkg/files_external/3rdparty/composer.lock +%%WWWDIR%%/apps-pkg/files_external/3rdparty/composer/ClassLoader.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/composer/LICENSE +%%WWWDIR%%/apps-pkg/files_external/3rdparty/composer/autoload_classmap.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/composer/autoload_namespaces.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/composer/autoload_psr4.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/composer/autoload_real.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/composer/autoload_static.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/composer/installed.json +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/.gitignore +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/LICENSE.txt +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/README.md +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/composer.json +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/AbstractShare.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Change.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Connection.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/ErrorCodes.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/AccessDeniedException.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/AlreadyExistsException.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/AuthenticationException.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/ConnectException.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/ConnectionException.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/ConnectionRefusedException.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/DependencyException.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/Exception.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/FileInUseException.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/ForbiddenException.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/HostDownException.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/InvalidHostException.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/InvalidParameterException.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/InvalidPathException.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/InvalidRequestException.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/InvalidResourceException.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/InvalidTypeException.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/NoLoginServerException.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/NoRouteToHostException.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/NotEmptyException.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/NotFoundException.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/OutOfSpaceException.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/RevisionMismatchException.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Exception/TimedOutException.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/FileInfo.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/IFileInfo.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/INotifyHandler.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/IShare.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/NativeFileInfo.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/NativeReadStream.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/NativeServer.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/NativeShare.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/NativeState.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/NativeStream.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/NativeWriteStream.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/NotifyHandler.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Parser.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/RawConnection.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Server.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/Share.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/System.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/smb/src/TimeZoneProvider.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams-dummy/composer.json +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/.gitignore +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/.travis.yml +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/LICENCE +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/README.md +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/composer.json +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/src/CallbackWrapper.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/src/Directory.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/src/DirectoryFilter.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/src/DirectoryWrapper.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/src/File.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/src/IteratorDirectory.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/src/NullWrapper.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/src/Path.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/src/PathWrapper.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/src/RetryWrapper.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/src/SeekableWrapper.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/src/Url.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/src/UrlCallBack.php +%%WWWDIR%%/apps-pkg/files_external/3rdparty/icewind/streams/src/Wrapper.php +%%WWWDIR%%/apps-pkg/files_external/ajax/applicable.php +%%WWWDIR%%/apps-pkg/files_external/ajax/oauth2.php +%%WWWDIR%%/apps-pkg/files_external/appinfo/app.php +%%WWWDIR%%/apps-pkg/files_external/appinfo/database.xml +%%WWWDIR%%/apps-pkg/files_external/appinfo/info.xml +%%WWWDIR%%/apps-pkg/files_external/appinfo/routes.php +%%WWWDIR%%/apps-pkg/files_external/appinfo/signature.json +%%WWWDIR%%/apps-pkg/files_external/css/external.css +%%WWWDIR%%/apps-pkg/files_external/css/settings.css +%%WWWDIR%%/apps-pkg/files_external/img/app-dark.svg +%%WWWDIR%%/apps-pkg/files_external/img/app.svg +%%WWWDIR%%/apps-pkg/files_external/js/app.js +%%WWWDIR%%/apps-pkg/files_external/js/mountsfilelist.js +%%WWWDIR%%/apps-pkg/files_external/js/oauth1.js +%%WWWDIR%%/apps-pkg/files_external/js/oauth2.js +%%WWWDIR%%/apps-pkg/files_external/js/public_key.js +%%WWWDIR%%/apps-pkg/files_external/js/rollingqueue.js +%%WWWDIR%%/apps-pkg/files_external/js/settings.js +%%WWWDIR%%/apps-pkg/files_external/js/statusmanager.js +%%WWWDIR%%/apps-pkg/files_external/l10n/.gitkeep +%%WWWDIR%%/apps-pkg/files_external/l10n/af_ZA.js +%%WWWDIR%%/apps-pkg/files_external/l10n/af_ZA.json +%%WWWDIR%%/apps-pkg/files_external/l10n/ar.js +%%WWWDIR%%/apps-pkg/files_external/l10n/ar.json +%%WWWDIR%%/apps-pkg/files_external/l10n/ast.js +%%WWWDIR%%/apps-pkg/files_external/l10n/ast.json +%%WWWDIR%%/apps-pkg/files_external/l10n/az.js +%%WWWDIR%%/apps-pkg/files_external/l10n/az.json +%%WWWDIR%%/apps-pkg/files_external/l10n/bg.js +%%WWWDIR%%/apps-pkg/files_external/l10n/bg.json +%%WWWDIR%%/apps-pkg/files_external/l10n/bg_BG.js +%%WWWDIR%%/apps-pkg/files_external/l10n/bg_BG.json +%%WWWDIR%%/apps-pkg/files_external/l10n/bn_BD.js +%%WWWDIR%%/apps-pkg/files_external/l10n/bn_BD.json +%%WWWDIR%%/apps-pkg/files_external/l10n/bn_IN.js +%%WWWDIR%%/apps-pkg/files_external/l10n/bn_IN.json +%%WWWDIR%%/apps-pkg/files_external/l10n/bs.js +%%WWWDIR%%/apps-pkg/files_external/l10n/bs.json +%%WWWDIR%%/apps-pkg/files_external/l10n/ca.js +%%WWWDIR%%/apps-pkg/files_external/l10n/ca.json +%%WWWDIR%%/apps-pkg/files_external/l10n/cs.js +%%WWWDIR%%/apps-pkg/files_external/l10n/cs.json +%%WWWDIR%%/apps-pkg/files_external/l10n/cs_CZ.js +%%WWWDIR%%/apps-pkg/files_external/l10n/cs_CZ.json +%%WWWDIR%%/apps-pkg/files_external/l10n/cy_GB.js +%%WWWDIR%%/apps-pkg/files_external/l10n/cy_GB.json +%%WWWDIR%%/apps-pkg/files_external/l10n/da.js +%%WWWDIR%%/apps-pkg/files_external/l10n/da.json +%%WWWDIR%%/apps-pkg/files_external/l10n/de.js +%%WWWDIR%%/apps-pkg/files_external/l10n/de.json +%%WWWDIR%%/apps-pkg/files_external/l10n/de_AT.js +%%WWWDIR%%/apps-pkg/files_external/l10n/de_AT.json +%%WWWDIR%%/apps-pkg/files_external/l10n/de_DE.js +%%WWWDIR%%/apps-pkg/files_external/l10n/de_DE.json +%%WWWDIR%%/apps-pkg/files_external/l10n/el.js +%%WWWDIR%%/apps-pkg/files_external/l10n/el.json +%%WWWDIR%%/apps-pkg/files_external/l10n/en_GB.js +%%WWWDIR%%/apps-pkg/files_external/l10n/en_GB.json +%%WWWDIR%%/apps-pkg/files_external/l10n/eo.js +%%WWWDIR%%/apps-pkg/files_external/l10n/eo.json +%%WWWDIR%%/apps-pkg/files_external/l10n/es.js +%%WWWDIR%%/apps-pkg/files_external/l10n/es.json +%%WWWDIR%%/apps-pkg/files_external/l10n/es_419.js +%%WWWDIR%%/apps-pkg/files_external/l10n/es_419.json +%%WWWDIR%%/apps-pkg/files_external/l10n/es_AR.js +%%WWWDIR%%/apps-pkg/files_external/l10n/es_AR.json +%%WWWDIR%%/apps-pkg/files_external/l10n/es_CL.js +%%WWWDIR%%/apps-pkg/files_external/l10n/es_CL.json +%%WWWDIR%%/apps-pkg/files_external/l10n/es_CO.js +%%WWWDIR%%/apps-pkg/files_external/l10n/es_CO.json +%%WWWDIR%%/apps-pkg/files_external/l10n/es_CR.js +%%WWWDIR%%/apps-pkg/files_external/l10n/es_CR.json +%%WWWDIR%%/apps-pkg/files_external/l10n/es_DO.js +%%WWWDIR%%/apps-pkg/files_external/l10n/es_DO.json +%%WWWDIR%%/apps-pkg/files_external/l10n/es_EC.js +%%WWWDIR%%/apps-pkg/files_external/l10n/es_EC.json +%%WWWDIR%%/apps-pkg/files_external/l10n/es_GT.js +%%WWWDIR%%/apps-pkg/files_external/l10n/es_GT.json +%%WWWDIR%%/apps-pkg/files_external/l10n/es_HN.js +%%WWWDIR%%/apps-pkg/files_external/l10n/es_HN.json +%%WWWDIR%%/apps-pkg/files_external/l10n/es_MX.js +%%WWWDIR%%/apps-pkg/files_external/l10n/es_MX.json +%%WWWDIR%%/apps-pkg/files_external/l10n/es_NI.js +%%WWWDIR%%/apps-pkg/files_external/l10n/es_NI.json +%%WWWDIR%%/apps-pkg/files_external/l10n/es_PA.js +%%WWWDIR%%/apps-pkg/files_external/l10n/es_PA.json +%%WWWDIR%%/apps-pkg/files_external/l10n/es_PE.js +%%WWWDIR%%/apps-pkg/files_external/l10n/es_PE.json +%%WWWDIR%%/apps-pkg/files_external/l10n/es_PR.js +%%WWWDIR%%/apps-pkg/files_external/l10n/es_PR.json +%%WWWDIR%%/apps-pkg/files_external/l10n/es_PY.js +%%WWWDIR%%/apps-pkg/files_external/l10n/es_PY.json +%%WWWDIR%%/apps-pkg/files_external/l10n/es_SV.js +%%WWWDIR%%/apps-pkg/files_external/l10n/es_SV.json +%%WWWDIR%%/apps-pkg/files_external/l10n/es_UY.js +%%WWWDIR%%/apps-pkg/files_external/l10n/es_UY.json +%%WWWDIR%%/apps-pkg/files_external/l10n/et_EE.js +%%WWWDIR%%/apps-pkg/files_external/l10n/et_EE.json +%%WWWDIR%%/apps-pkg/files_external/l10n/eu.js +%%WWWDIR%%/apps-pkg/files_external/l10n/eu.json +%%WWWDIR%%/apps-pkg/files_external/l10n/fa.js +%%WWWDIR%%/apps-pkg/files_external/l10n/fa.json +%%WWWDIR%%/apps-pkg/files_external/l10n/fi.js +%%WWWDIR%%/apps-pkg/files_external/l10n/fi.json +%%WWWDIR%%/apps-pkg/files_external/l10n/fi_FI.js +%%WWWDIR%%/apps-pkg/files_external/l10n/fi_FI.json +%%WWWDIR%%/apps-pkg/files_external/l10n/fil.js +%%WWWDIR%%/apps-pkg/files_external/l10n/fil.json +%%WWWDIR%%/apps-pkg/files_external/l10n/fr.js +%%WWWDIR%%/apps-pkg/files_external/l10n/fr.json +%%WWWDIR%%/apps-pkg/files_external/l10n/gl.js +%%WWWDIR%%/apps-pkg/files_external/l10n/gl.json +%%WWWDIR%%/apps-pkg/files_external/l10n/he.js +%%WWWDIR%%/apps-pkg/files_external/l10n/he.json +%%WWWDIR%%/apps-pkg/files_external/l10n/hi.js +%%WWWDIR%%/apps-pkg/files_external/l10n/hi.json +%%WWWDIR%%/apps-pkg/files_external/l10n/hr.js +%%WWWDIR%%/apps-pkg/files_external/l10n/hr.json +%%WWWDIR%%/apps-pkg/files_external/l10n/hu.js +%%WWWDIR%%/apps-pkg/files_external/l10n/hu.json +%%WWWDIR%%/apps-pkg/files_external/l10n/hu_HU.js +%%WWWDIR%%/apps-pkg/files_external/l10n/hu_HU.json +%%WWWDIR%%/apps-pkg/files_external/l10n/hy.js +%%WWWDIR%%/apps-pkg/files_external/l10n/hy.json +%%WWWDIR%%/apps-pkg/files_external/l10n/ia.js +%%WWWDIR%%/apps-pkg/files_external/l10n/ia.json +%%WWWDIR%%/apps-pkg/files_external/l10n/id.js +%%WWWDIR%%/apps-pkg/files_external/l10n/id.json +%%WWWDIR%%/apps-pkg/files_external/l10n/is.js +%%WWWDIR%%/apps-pkg/files_external/l10n/is.json +%%WWWDIR%%/apps-pkg/files_external/l10n/it.js +%%WWWDIR%%/apps-pkg/files_external/l10n/it.json +%%WWWDIR%%/apps-pkg/files_external/l10n/ja.js +%%WWWDIR%%/apps-pkg/files_external/l10n/ja.json +%%WWWDIR%%/apps-pkg/files_external/l10n/jv.js +%%WWWDIR%%/apps-pkg/files_external/l10n/jv.json +%%WWWDIR%%/apps-pkg/files_external/l10n/ka_GE.js +%%WWWDIR%%/apps-pkg/files_external/l10n/ka_GE.json +%%WWWDIR%%/apps-pkg/files_external/l10n/km.js +%%WWWDIR%%/apps-pkg/files_external/l10n/km.json +%%WWWDIR%%/apps-pkg/files_external/l10n/kn.js +%%WWWDIR%%/apps-pkg/files_external/l10n/kn.json +%%WWWDIR%%/apps-pkg/files_external/l10n/ko.js +%%WWWDIR%%/apps-pkg/files_external/l10n/ko.json +%%WWWDIR%%/apps-pkg/files_external/l10n/ku_IQ.js +%%WWWDIR%%/apps-pkg/files_external/l10n/ku_IQ.json +%%WWWDIR%%/apps-pkg/files_external/l10n/lb.js +%%WWWDIR%%/apps-pkg/files_external/l10n/lb.json +%%WWWDIR%%/apps-pkg/files_external/l10n/lt_LT.js +%%WWWDIR%%/apps-pkg/files_external/l10n/lt_LT.json +%%WWWDIR%%/apps-pkg/files_external/l10n/lv.js +%%WWWDIR%%/apps-pkg/files_external/l10n/lv.json +%%WWWDIR%%/apps-pkg/files_external/l10n/mk.js +%%WWWDIR%%/apps-pkg/files_external/l10n/mk.json +%%WWWDIR%%/apps-pkg/files_external/l10n/mn.js +%%WWWDIR%%/apps-pkg/files_external/l10n/mn.json +%%WWWDIR%%/apps-pkg/files_external/l10n/ms_MY.js +%%WWWDIR%%/apps-pkg/files_external/l10n/ms_MY.json +%%WWWDIR%%/apps-pkg/files_external/l10n/my_MM.js +%%WWWDIR%%/apps-pkg/files_external/l10n/my_MM.json +%%WWWDIR%%/apps-pkg/files_external/l10n/nb.js +%%WWWDIR%%/apps-pkg/files_external/l10n/nb.json +%%WWWDIR%%/apps-pkg/files_external/l10n/nb_NO.js +%%WWWDIR%%/apps-pkg/files_external/l10n/nb_NO.json +%%WWWDIR%%/apps-pkg/files_external/l10n/nds.js +%%WWWDIR%%/apps-pkg/files_external/l10n/nds.json +%%WWWDIR%%/apps-pkg/files_external/l10n/nl.js +%%WWWDIR%%/apps-pkg/files_external/l10n/nl.json +%%WWWDIR%%/apps-pkg/files_external/l10n/nn_NO.js +%%WWWDIR%%/apps-pkg/files_external/l10n/nn_NO.json +%%WWWDIR%%/apps-pkg/files_external/l10n/oc.js +%%WWWDIR%%/apps-pkg/files_external/l10n/oc.json +%%WWWDIR%%/apps-pkg/files_external/l10n/pa.js +%%WWWDIR%%/apps-pkg/files_external/l10n/pa.json +%%WWWDIR%%/apps-pkg/files_external/l10n/pl.js +%%WWWDIR%%/apps-pkg/files_external/l10n/pl.json +%%WWWDIR%%/apps-pkg/files_external/l10n/pt_BR.js +%%WWWDIR%%/apps-pkg/files_external/l10n/pt_BR.json +%%WWWDIR%%/apps-pkg/files_external/l10n/pt_PT.js +%%WWWDIR%%/apps-pkg/files_external/l10n/pt_PT.json +%%WWWDIR%%/apps-pkg/files_external/l10n/ro.js +%%WWWDIR%%/apps-pkg/files_external/l10n/ro.json +%%WWWDIR%%/apps-pkg/files_external/l10n/ru.js +%%WWWDIR%%/apps-pkg/files_external/l10n/ru.json +%%WWWDIR%%/apps-pkg/files_external/l10n/si_LK.js +%%WWWDIR%%/apps-pkg/files_external/l10n/si_LK.json +%%WWWDIR%%/apps-pkg/files_external/l10n/sk.js +%%WWWDIR%%/apps-pkg/files_external/l10n/sk.json +%%WWWDIR%%/apps-pkg/files_external/l10n/sk_SK.js +%%WWWDIR%%/apps-pkg/files_external/l10n/sk_SK.json +%%WWWDIR%%/apps-pkg/files_external/l10n/sl.js +%%WWWDIR%%/apps-pkg/files_external/l10n/sl.json +%%WWWDIR%%/apps-pkg/files_external/l10n/sq.js +%%WWWDIR%%/apps-pkg/files_external/l10n/sq.json +%%WWWDIR%%/apps-pkg/files_external/l10n/sr.js +%%WWWDIR%%/apps-pkg/files_external/l10n/sr.json +%%WWWDIR%%/apps-pkg/files_external/l10n/sr@latin.js +%%WWWDIR%%/apps-pkg/files_external/l10n/sr@latin.json +%%WWWDIR%%/apps-pkg/files_external/l10n/sv.js +%%WWWDIR%%/apps-pkg/files_external/l10n/sv.json +%%WWWDIR%%/apps-pkg/files_external/l10n/ta_LK.js +%%WWWDIR%%/apps-pkg/files_external/l10n/ta_LK.json +%%WWWDIR%%/apps-pkg/files_external/l10n/te.js +%%WWWDIR%%/apps-pkg/files_external/l10n/te.json +%%WWWDIR%%/apps-pkg/files_external/l10n/th.js +%%WWWDIR%%/apps-pkg/files_external/l10n/th.json +%%WWWDIR%%/apps-pkg/files_external/l10n/th_TH.js +%%WWWDIR%%/apps-pkg/files_external/l10n/th_TH.json +%%WWWDIR%%/apps-pkg/files_external/l10n/tr.js +%%WWWDIR%%/apps-pkg/files_external/l10n/tr.json +%%WWWDIR%%/apps-pkg/files_external/l10n/ug.js +%%WWWDIR%%/apps-pkg/files_external/l10n/ug.json +%%WWWDIR%%/apps-pkg/files_external/l10n/uk.js +%%WWWDIR%%/apps-pkg/files_external/l10n/uk.json +%%WWWDIR%%/apps-pkg/files_external/l10n/ur_PK.js +%%WWWDIR%%/apps-pkg/files_external/l10n/ur_PK.json +%%WWWDIR%%/apps-pkg/files_external/l10n/vi.js +%%WWWDIR%%/apps-pkg/files_external/l10n/vi.json +%%WWWDIR%%/apps-pkg/files_external/l10n/zh_CN.js +%%WWWDIR%%/apps-pkg/files_external/l10n/zh_CN.json +%%WWWDIR%%/apps-pkg/files_external/l10n/zh_HK.js +%%WWWDIR%%/apps-pkg/files_external/l10n/zh_HK.json +%%WWWDIR%%/apps-pkg/files_external/l10n/zh_TW.js +%%WWWDIR%%/apps-pkg/files_external/l10n/zh_TW.json +%%WWWDIR%%/apps-pkg/files_external/lib/AppInfo/Application.php +%%WWWDIR%%/apps-pkg/files_external/lib/Command/Applicable.php +%%WWWDIR%%/apps-pkg/files_external/lib/Command/Backends.php +%%WWWDIR%%/apps-pkg/files_external/lib/Command/Config.php +%%WWWDIR%%/apps-pkg/files_external/lib/Command/Create.php +%%WWWDIR%%/apps-pkg/files_external/lib/Command/Delete.php +%%WWWDIR%%/apps-pkg/files_external/lib/Command/Export.php +%%WWWDIR%%/apps-pkg/files_external/lib/Command/Import.php +%%WWWDIR%%/apps-pkg/files_external/lib/Command/ListCommand.php +%%WWWDIR%%/apps-pkg/files_external/lib/Command/Notify.php +%%WWWDIR%%/apps-pkg/files_external/lib/Command/Option.php +%%WWWDIR%%/apps-pkg/files_external/lib/Command/Verify.php +%%WWWDIR%%/apps-pkg/files_external/lib/Config/ConfigAdapter.php +%%WWWDIR%%/apps-pkg/files_external/lib/Config/ExternalMountPoint.php +%%WWWDIR%%/apps-pkg/files_external/lib/Controller/AjaxController.php +%%WWWDIR%%/apps-pkg/files_external/lib/Controller/GlobalStoragesController.php +%%WWWDIR%%/apps-pkg/files_external/lib/Controller/StoragesController.php +%%WWWDIR%%/apps-pkg/files_external/lib/Controller/UserGlobalStoragesController.php +%%WWWDIR%%/apps-pkg/files_external/lib/Controller/UserStoragesController.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Api.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Auth/AmazonS3/AccessKey.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Auth/AuthMechanism.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Auth/Builtin.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Auth/IUserProvided.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Auth/InvalidAuth.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Auth/NullMechanism.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Auth/OAuth1/OAuth1.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Auth/OAuth2/OAuth2.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Auth/OpenStack/OpenStack.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Auth/OpenStack/Rackspace.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Auth/Password/GlobalAuth.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Auth/Password/LoginCredentials.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Auth/Password/Password.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Auth/Password/SessionCredentials.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Auth/Password/UserProvided.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Auth/PublicKey/RSA.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Backend/AmazonS3.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Backend/Backend.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Backend/DAV.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Backend/FTP.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Backend/InvalidBackend.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Backend/LegacyBackend.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Backend/Local.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Backend/OwnCloud.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Backend/SFTP.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Backend/SFTP_Key.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Backend/SMB.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Backend/SMB_OC.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Backend/Swift.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Config/IAuthMechanismProvider.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Config/IBackendProvider.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/DefinitionParameter.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/DependencyTrait.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/FrontendDefinitionTrait.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/IdentifierTrait.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/InsufficientDataForMeaningfulAnswerException.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/LegacyDependencyCheckPolyfill.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/MissingDependency.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Notify/SMBNotifyHandler.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/PersonalMount.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/PriorityTrait.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/SessionStorageWrapper.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Storage/AmazonS3.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Storage/FTP.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Storage/OwnCloud.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Storage/SFTP.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Storage/SMB.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Storage/StreamWrapper.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/Storage/Swift.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/StorageConfig.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/StorageModifierTrait.php +%%WWWDIR%%/apps-pkg/files_external/lib/Lib/VisibilityTrait.php +%%WWWDIR%%/apps-pkg/files_external/lib/Migration/DummyUserSession.php +%%WWWDIR%%/apps-pkg/files_external/lib/Migration/StorageMigrator.php +%%WWWDIR%%/apps-pkg/files_external/lib/NotFoundException.php +%%WWWDIR%%/apps-pkg/files_external/lib/Service/BackendService.php +%%WWWDIR%%/apps-pkg/files_external/lib/Service/DBConfigService.php +%%WWWDIR%%/apps-pkg/files_external/lib/Service/GlobalStoragesService.php +%%WWWDIR%%/apps-pkg/files_external/lib/Service/ImportLegacyStoragesService.php +%%WWWDIR%%/apps-pkg/files_external/lib/Service/LegacyStoragesService.php +%%WWWDIR%%/apps-pkg/files_external/lib/Service/StoragesService.php +%%WWWDIR%%/apps-pkg/files_external/lib/Service/UserGlobalStoragesService.php +%%WWWDIR%%/apps-pkg/files_external/lib/Service/UserLegacyStoragesService.php +%%WWWDIR%%/apps-pkg/files_external/lib/Service/UserStoragesService.php +%%WWWDIR%%/apps-pkg/files_external/lib/Service/UserTrait.php +%%WWWDIR%%/apps-pkg/files_external/lib/Settings/Admin.php +%%WWWDIR%%/apps-pkg/files_external/lib/Settings/Personal.php +%%WWWDIR%%/apps-pkg/files_external/lib/Settings/PersonalSection.php +%%WWWDIR%%/apps-pkg/files_external/lib/Settings/Section.php +%%WWWDIR%%/apps-pkg/files_external/lib/config.php +%%WWWDIR%%/apps-pkg/files_external/list.php +%%WWWDIR%%/apps-pkg/files_external/templates/list.php +%%WWWDIR%%/apps-pkg/files_external/templates/settings.php +%%WWWDIR%%/apps-pkg/files_pdfviewer/.github/contributing.md +%%WWWDIR%%/apps-pkg/files_pdfviewer/.github/issue_template.md +%%WWWDIR%%/apps-pkg/files_pdfviewer/appinfo/app.php +%%WWWDIR%%/apps-pkg/files_pdfviewer/appinfo/info.xml +%%WWWDIR%%/apps-pkg/files_pdfviewer/appinfo/routes.php +%%WWWDIR%%/apps-pkg/files_pdfviewer/appinfo/signature.json +%%WWWDIR%%/apps-pkg/files_pdfviewer/controller/displaycontroller.php +%%WWWDIR%%/apps-pkg/files_pdfviewer/css/minmode.css +%%WWWDIR%%/apps-pkg/files_pdfviewer/css/style.css +%%WWWDIR%%/apps-pkg/files_pdfviewer/css/viewer.css +%%WWWDIR%%/apps-pkg/files_pdfviewer/img/app.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/img/app.svg +%%WWWDIR%%/apps-pkg/files_pdfviewer/img/toolbarButton-secondaryToolbarClose.svg +%%WWWDIR%%/apps-pkg/files_pdfviewer/js/previewplugin.js +%%WWWDIR%%/apps-pkg/files_pdfviewer/js/workersrc.js +%%WWWDIR%%/apps-pkg/files_pdfviewer/templates/viewer.php +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/LICENSE +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/build/pdf.js +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/build/pdf.js.map +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/build/pdf.worker.js +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/build/pdf.worker.js.map +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/78-EUC-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/78-EUC-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/78-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/78-RKSJ-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/78-RKSJ-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/78-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/78ms-RKSJ-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/78ms-RKSJ-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/83pv-RKSJ-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/90ms-RKSJ-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/90ms-RKSJ-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/90msp-RKSJ-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/90msp-RKSJ-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/90pv-RKSJ-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/90pv-RKSJ-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Add-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Add-RKSJ-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Add-RKSJ-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Add-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-0.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-1.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-2.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-3.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-4.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-5.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-6.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-CNS1-UCS2.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-0.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-1.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-2.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-3.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-4.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-5.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-GB1-UCS2.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-0.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-1.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-2.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-3.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-4.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-5.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-6.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Japan1-UCS2.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Korea1-0.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Korea1-1.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Korea1-2.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Adobe-Korea1-UCS2.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/B5-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/B5-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/B5pc-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/B5pc-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/CNS-EUC-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/CNS-EUC-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/CNS1-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/CNS1-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/CNS2-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/CNS2-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/ETHK-B5-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/ETHK-B5-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/ETen-B5-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/ETen-B5-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/ETenms-B5-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/ETenms-B5-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/EUC-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/EUC-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Ext-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Ext-RKSJ-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Ext-RKSJ-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Ext-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GB-EUC-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GB-EUC-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GB-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GB-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GBK-EUC-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GBK-EUC-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GBK2K-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GBK2K-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GBKp-EUC-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GBKp-EUC-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GBT-EUC-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GBT-EUC-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GBT-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GBT-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GBTpc-EUC-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GBTpc-EUC-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GBpc-EUC-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/GBpc-EUC-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/HKdla-B5-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/HKdla-B5-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/HKdlb-B5-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/HKdlb-B5-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/HKgccs-B5-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/HKgccs-B5-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/HKm314-B5-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/HKm314-B5-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/HKm471-B5-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/HKm471-B5-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/HKscs-B5-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/HKscs-B5-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Hankaku.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Hiragana.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/KSC-EUC-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/KSC-EUC-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/KSC-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/KSC-Johab-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/KSC-Johab-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/KSC-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/KSCms-UHC-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/KSCms-UHC-HW-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/KSCms-UHC-HW-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/KSCms-UHC-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/KSCpc-EUC-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/KSCpc-EUC-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Katakana.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/LICENSE +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/NWP-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/NWP-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/RKSJ-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/RKSJ-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/Roman.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UCS2-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UCS2-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UTF16-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UTF16-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UTF32-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UTF32-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UTF8-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniCNS-UTF8-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UCS2-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UCS2-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UTF16-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UTF16-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UTF32-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UTF32-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UTF8-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniGB-UTF8-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UCS2-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UCS2-HW-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UCS2-HW-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UCS2-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UTF16-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UTF16-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UTF32-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UTF32-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UTF8-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS-UTF8-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS2004-UTF16-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS2004-UTF16-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS2004-UTF32-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS2004-UTF32-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS2004-UTF8-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJIS2004-UTF8-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISPro-UCS2-HW-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISPro-UCS2-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISPro-UTF8-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISX0213-UTF32-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISX0213-UTF32-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISX02132004-UTF32-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniJISX02132004-UTF32-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UCS2-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UCS2-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UTF16-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UTF16-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UTF32-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UTF32-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UTF8-H.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/UniKS-UTF8-V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/V.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/cmaps/WP-Symbol.bcmap +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/debugger.js +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/annotation-check.svg +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/annotation-comment.svg +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/annotation-help.svg +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/annotation-insert.svg +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/annotation-key.svg +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/annotation-newparagraph.svg +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/annotation-noicon.svg +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/annotation-note.svg +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/annotation-paragraph.svg +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-next-rtl.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-next-rtl@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-next.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-next@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-previous-rtl.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-previous-rtl@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-previous.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/findbarButton-previous@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/grab.cur +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/grabbing.cur +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/loading-icon.gif +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/loading-small.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/loading-small@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-documentProperties.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-documentProperties@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-firstPage.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-firstPage@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-handTool.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-handTool@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-lastPage.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-lastPage@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-rotateCcw.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-rotateCcw@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-rotateCw.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-rotateCw@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-selectTool.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/secondaryToolbarButton-selectTool@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/shadow.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/texture.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-bookmark.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-bookmark@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-download.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-download@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-menuArrows.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-menuArrows@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-openFile.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-openFile@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageDown-rtl.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageDown-rtl@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageDown.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageDown@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageUp-rtl.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageUp-rtl@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageUp.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-pageUp@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-presentationMode.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-presentationMode@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-print.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-print@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-search.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-search@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-secondaryToolbarToggle-rtl.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-secondaryToolbarToggle-rtl@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-secondaryToolbarToggle.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-secondaryToolbarToggle@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-sidebarToggle-rtl.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-sidebarToggle-rtl@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-sidebarToggle.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-sidebarToggle@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewAttachments.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewAttachments@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewOutline-rtl.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewOutline-rtl@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewOutline.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewOutline@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewThumbnail.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-viewThumbnail@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-zoomIn.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-zoomIn@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-zoomOut.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/toolbarButton-zoomOut@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/treeitem-collapsed-rtl.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/treeitem-collapsed-rtl@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/treeitem-collapsed.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/treeitem-collapsed@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/treeitem-expanded.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/images/treeitem-expanded@2x.png +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ach/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/af/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ak/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/an/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ar/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/as/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ast/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/az/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/be/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/bg/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/bn-BD/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/bn-IN/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/br/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/bs/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ca/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/cs/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/csb/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/cy/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/da/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/de/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/el/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/en-GB/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/en-US/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/en-ZA/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/eo/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/es-AR/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/es-CL/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/es-ES/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/es-MX/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/et/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/eu/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/fa/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ff/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/fi/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/fr/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/fy-NL/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ga-IE/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/gd/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/gl/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/gu-IN/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/he/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/hi-IN/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/hr/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/hu/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/hy-AM/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/id/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/is/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/it/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ja/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ka/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/kk/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/km/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/kn/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ko/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ku/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/lg/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/lij/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/locale.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/lt/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/lv/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/mai/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/mk/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ml/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/mn/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/mr/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ms/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/my/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/nb-NO/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/nl/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/nn-NO/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/nso/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/oc/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/or/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/pa-IN/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/pl/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/pt-BR/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/pt-PT/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/rm/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ro/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ru/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/rw/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/sah/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/si/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/sk/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/sl/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/son/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/sq/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/sr/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/sv-SE/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/sw/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ta-LK/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ta/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/te/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/th/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/tl/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/tn/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/tr/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/uk/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/ur/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/vi/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/wo/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/xh/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/zh-CN/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/zh-TW/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/locale/zu/viewer.properties +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/viewer.css +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/viewer.js +%%WWWDIR%%/apps-pkg/files_pdfviewer/vendor/pdfjs/web/viewer.js.map +%%WWWDIR%%/apps-pkg/files_sharing/appinfo/app.php +%%WWWDIR%%/apps-pkg/files_sharing/appinfo/database.xml +%%WWWDIR%%/apps-pkg/files_sharing/appinfo/info.xml +%%WWWDIR%%/apps-pkg/files_sharing/appinfo/routes.php +%%WWWDIR%%/apps-pkg/files_sharing/appinfo/signature.json +%%WWWDIR%%/apps-pkg/files_sharing/composer/autoload.php +%%WWWDIR%%/apps-pkg/files_sharing/composer/composer.json +%%WWWDIR%%/apps-pkg/files_sharing/composer/composer/ClassLoader.php +%%WWWDIR%%/apps-pkg/files_sharing/composer/composer/LICENSE +%%WWWDIR%%/apps-pkg/files_sharing/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps-pkg/files_sharing/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps-pkg/files_sharing/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps-pkg/files_sharing/composer/composer/autoload_real.php +%%WWWDIR%%/apps-pkg/files_sharing/composer/composer/autoload_static.php +%%WWWDIR%%/apps-pkg/files_sharing/css/404.css +%%WWWDIR%%/apps-pkg/files_sharing/css/authenticate.css +%%WWWDIR%%/apps-pkg/files_sharing/css/mergedAdditionalStyles.scss +%%WWWDIR%%/apps-pkg/files_sharing/css/mobile.scss +%%WWWDIR%%/apps-pkg/files_sharing/css/public.scss +%%WWWDIR%%/apps-pkg/files_sharing/css/publicView.scss +%%WWWDIR%%/apps-pkg/files_sharing/css/sharebreadcrumb.scss +%%WWWDIR%%/apps-pkg/files_sharing/css/sharedfilelist.css +%%WWWDIR%%/apps-pkg/files_sharing/css/sharetabview.scss +%%WWWDIR%%/apps-pkg/files_sharing/img/app.svg +%%WWWDIR%%/apps-pkg/files_sharing/js/additionalScripts.json +%%WWWDIR%%/apps-pkg/files_sharing/js/app.js +%%WWWDIR%%/apps-pkg/files_sharing/js/authenticate.js +%%WWWDIR%%/apps-pkg/files_sharing/js/files_drop.js +%%WWWDIR%%/apps-pkg/files_sharing/js/public.js +%%WWWDIR%%/apps-pkg/files_sharing/js/share.js +%%WWWDIR%%/apps-pkg/files_sharing/js/sharebreadcrumbview.js +%%WWWDIR%%/apps-pkg/files_sharing/js/sharedfilelist.js +%%WWWDIR%%/apps-pkg/files_sharing/js/sharetabview.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/.gitkeep +%%WWWDIR%%/apps-pkg/files_sharing/l10n/af_ZA.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/af_ZA.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/ar.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/ar.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/ast.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/ast.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/az.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/az.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/bg_BG.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/bg_BG.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/bn_BD.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/bn_BD.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/bn_IN.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/bn_IN.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/bs.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/bs.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/ca.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/ca.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/cs.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/cs.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/cs_CZ.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/cs_CZ.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/cy_GB.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/cy_GB.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/da.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/da.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/de.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/de.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/de_AT.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/de_AT.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/de_DE.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/de_DE.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/el.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/el.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/en_GB.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/en_GB.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/eo.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/eo.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_419.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_419.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_AR.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_AR.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_CL.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_CL.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_CO.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_CO.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_CR.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_CR.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_DO.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_DO.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_EC.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_EC.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_GT.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_GT.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_HN.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_HN.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_MX.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_MX.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_NI.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_NI.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_PA.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_PA.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_PE.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_PE.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_PR.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_PR.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_PY.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_PY.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_SV.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_SV.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_UY.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/es_UY.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/et_EE.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/et_EE.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/eu.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/eu.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/fa.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/fa.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/fi.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/fi.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/fi_FI.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/fi_FI.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/fil.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/fil.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/fr.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/fr.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/gl.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/gl.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/he.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/he.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/hi.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/hi.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/hr.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/hr.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/hu.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/hu.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/hu_HU.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/hu_HU.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/hy.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/hy.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/ia.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/ia.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/id.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/id.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/is.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/is.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/it.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/it.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/ja.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/ja.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/jv.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/jv.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/ka_GE.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/ka_GE.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/km.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/km.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/kn.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/kn.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/ko.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/ko.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/ku_IQ.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/ku_IQ.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/lb.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/lb.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/lo.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/lo.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/lt_LT.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/lt_LT.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/lv.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/lv.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/mk.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/mk.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/ml_IN.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/ml_IN.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/mn.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/mn.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/ms_MY.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/ms_MY.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/my_MM.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/my_MM.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/nb.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/nb.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/nb_NO.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/nb_NO.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/nds.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/nds.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/nl.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/nl.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/nn_NO.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/nn_NO.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/oc.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/oc.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/pa.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/pa.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/pl.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/pl.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/pt_BR.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/pt_BR.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/pt_PT.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/pt_PT.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/ro.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/ro.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/ru.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/ru.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/si_LK.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/si_LK.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/sk.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/sk.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/sk_SK.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/sk_SK.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/sl.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/sl.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/sq.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/sq.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/sr.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/sr.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/sr@latin.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/sr@latin.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/sv.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/sv.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/ta_IN.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/ta_IN.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/ta_LK.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/ta_LK.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/te.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/te.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/th_TH.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/th_TH.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/tr.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/tr.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/ug.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/ug.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/uk.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/uk.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/ur_PK.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/ur_PK.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/vi.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/vi.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/zh_CN.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/zh_CN.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/zh_HK.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/zh_HK.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/zh_TW.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/zh_TW.json +%%WWWDIR%%/apps-pkg/files_sharing/lib/Activity/Filter.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/Activity/Providers/Base.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/Activity/Providers/Downloads.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/Activity/Providers/Groups.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/Activity/Providers/PublicLinks.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/Activity/Providers/RemoteShares.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/Activity/Providers/Users.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/Activity/Settings/PublicLinks.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/Activity/Settings/RemoteShare.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/Activity/Settings/Shared.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/AppInfo/Application.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/Cache.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/Capabilities.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/Collaboration/ShareRecipientSorter.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/Command/CleanupRemoteStorages.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/Controller/ExternalSharesController.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/Controller/PublicPreviewController.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/Controller/RemoteController.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/Controller/ShareAPIController.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/Controller/ShareController.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/Controller/ShareInfoController.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/Controller/ShareesAPIController.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/DeleteOrphanedSharesJob.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/Exceptions/BrokenPath.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/Exceptions/S2SException.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/ExpireSharesJob.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/External/Cache.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/External/Manager.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/External/Mount.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/External/MountProvider.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/External/Scanner.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/External/Storage.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/External/Watcher.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/Helper.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/Hooks.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/ISharedStorage.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/Middleware/OCSShareAPIMiddleware.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/Middleware/ShareInfoMiddleware.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/Middleware/SharingCheckMiddleware.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/Migration/OwncloudGuestShareType.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/Migration/SetPasswordColumn.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/MountProvider.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/Scanner.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/ShareBackend/File.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/ShareBackend/Folder.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/SharedMount.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/SharedStorage.php +%%WWWDIR%%/apps-pkg/files_sharing/lib/Updater.php +%%WWWDIR%%/apps-pkg/files_sharing/list.php +%%WWWDIR%%/apps-pkg/files_sharing/public.php +%%WWWDIR%%/apps-pkg/files_sharing/templates/authenticate.php +%%WWWDIR%%/apps-pkg/files_sharing/templates/list.php +%%WWWDIR%%/apps-pkg/files_sharing/templates/part.404.php +%%WWWDIR%%/apps-pkg/files_sharing/templates/public.php +%%WWWDIR%%/apps-pkg/files_texteditor/.github/contributing.md +%%WWWDIR%%/apps-pkg/files_texteditor/.github/issue_template.md +%%WWWDIR%%/apps-pkg/files_texteditor/appinfo/app.php +%%WWWDIR%%/apps-pkg/files_texteditor/appinfo/info.xml +%%WWWDIR%%/apps-pkg/files_texteditor/appinfo/routes.php +%%WWWDIR%%/apps-pkg/files_texteditor/appinfo/signature.json +%%WWWDIR%%/apps-pkg/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.eot +%%WWWDIR%%/apps-pkg/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.svg +%%WWWDIR%%/apps-pkg/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.ttf +%%WWWDIR%%/apps-pkg/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.woff +%%WWWDIR%%/apps-pkg/files_texteditor/css/DroidSansMono/Google Android License.txt +%%WWWDIR%%/apps-pkg/files_texteditor/css/DroidSansMono/stylesheet.scss +%%WWWDIR%%/apps-pkg/files_texteditor/css/merged.scss +%%WWWDIR%%/apps-pkg/files_texteditor/css/mobile.scss +%%WWWDIR%%/apps-pkg/files_texteditor/css/public-share.css +%%WWWDIR%%/apps-pkg/files_texteditor/css/style.scss +%%WWWDIR%%/apps-pkg/files_texteditor/img/app.png +%%WWWDIR%%/apps-pkg/files_texteditor/img/app.svg +%%WWWDIR%%/apps-pkg/files_texteditor/img/image.svg +%%WWWDIR%%/apps-pkg/files_texteditor/img/mixed.svg +%%WWWDIR%%/apps-pkg/files_texteditor/img/text.svg +%%WWWDIR%%/apps-pkg/files_texteditor/js/add-nounce.patch +%%WWWDIR%%/apps-pkg/files_texteditor/js/bower.json +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/LICENSE +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/ace.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/ext-modelist.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/ext-searchbox.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/keybinding-emacs.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/keybinding-vim.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-abap.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-abc.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-actionscript.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-ada.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-apache_conf.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-applescript.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-asciidoc.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-assembly_x86.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-autohotkey.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-batchfile.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-bro.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-c9search.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-c_cpp.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-cirru.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-clojure.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-cobol.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-coffee.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-coldfusion.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-csharp.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-css.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-curly.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-d.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-dart.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-diff.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-django.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-dockerfile.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-dot.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-drools.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-eiffel.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-ejs.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-elixir.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-elm.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-erlang.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-forth.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-fortran.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-ftl.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-gcode.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-gherkin.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-gitignore.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-glsl.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-gobstones.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-golang.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-graphqlschema.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-groovy.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-haml.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-handlebars.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-haskell.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-haskell_cabal.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-haxe.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-hjson.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-html.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-html_elixir.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-html_ruby.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-ini.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-io.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-jack.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-jade.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-java.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-javascript.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-json.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-jsoniq.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-jsp.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-jsx.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-julia.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-kotlin.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-latex.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-lean.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-less.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-liquid.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-lisp.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-live_script.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-livescript.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-logiql.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-lsl.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-lua.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-luapage.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-lucene.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-makefile.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-markdown.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mask.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-matlab.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mavens_mate_log.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-maze.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mel.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mips_assembler.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mipsassembler.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mushcode.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-mysql.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-nix.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-nsis.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-objectivec.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-ocaml.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-pascal.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-perl.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-pgsql.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-php.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-pig.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-plain_text.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-powershell.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-praat.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-prolog.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-properties.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-protobuf.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-python.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-r.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-razor.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-rdoc.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-rhtml.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-rst.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-ruby.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-rust.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sass.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-scad.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-scala.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-scheme.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-scss.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sh.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sjs.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-smarty.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-snippets.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-soy_template.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-space.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sparql.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sql.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sqlserver.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-stylus.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-svg.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-swift.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-swig.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-tcl.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-tex.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-text.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-textile.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-toml.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-tsx.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-turtle.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-twig.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-typescript.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-vala.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-vbscript.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-velocity.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-verilog.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-vhdl.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-wollok.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-xml.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-xquery.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-yaml.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/abap.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/abc.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/actionscript.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/ada.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/apache_conf.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/applescript.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/asciidoc.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/assembly_x86.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/autohotkey.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/batchfile.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/bro.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/c9search.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/c_cpp.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/cirru.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/clojure.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/cobol.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/coffee.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/coldfusion.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/csharp.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/css.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/curly.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/d.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/dart.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/diff.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/django.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/dockerfile.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/dot.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/drools.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/eiffel.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/ejs.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/elixir.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/elm.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/erlang.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/forth.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/fortran.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/ftl.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/gcode.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/gherkin.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/gitignore.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/glsl.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/gobstones.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/golang.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/graphqlschema.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/groovy.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/haml.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/handlebars.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/haskell.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/haskell_cabal.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/haxe.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/hjson.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/html.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/html_elixir.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/html_ruby.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/ini.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/io.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/jack.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/jade.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/java.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/javascript.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/json.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/jsoniq.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/jsp.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/jsx.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/julia.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/kotlin.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/latex.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/lean.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/less.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/liquid.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/lisp.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/live_script.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/livescript.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/logiql.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/lsl.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/lua.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/luapage.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/lucene.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/makefile.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/markdown.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/mask.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/matlab.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/maze.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/mel.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/mips_assembler.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/mipsassembler.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/mushcode.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/mysql.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/nix.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/nsis.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/objectivec.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/ocaml.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/pascal.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/perl.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/pgsql.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/php.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/pig.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/plain_text.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/powershell.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/praat.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/prolog.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/properties.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/protobuf.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/python.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/r.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/razor.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/rdoc.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/rhtml.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/rst.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/ruby.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/rust.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sass.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/scad.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/scala.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/scheme.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/scss.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sh.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sjs.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/smarty.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/snippets.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/soy_template.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/space.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sparql.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sql.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sqlserver.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/stylus.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/svg.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/swift.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/swig.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/tcl.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/tex.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/text.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/textile.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/toml.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/tsx.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/turtle.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/twig.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/typescript.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/vala.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/vbscript.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/velocity.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/verilog.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/vhdl.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/wollok.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/xml.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/xquery.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/yaml.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/theme-clouds.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-coffee.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-css.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-html.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-javascript.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-json.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-lua.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-php.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-xml.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-xquery.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/editor.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/merged.json +%%WWWDIR%%/apps-pkg/files_texteditor/js/public-share.js +%%WWWDIR%%/apps-pkg/files_texteditor/js/sidebarpreview.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/.gitkeep +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/.tx/config +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ar.php +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ast.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ast.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/az.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/az.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/bg.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/bg.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/bn_BD.php +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/bs.php +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ca.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ca.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/cs.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/cs.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/cy_GB.php +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/da.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/da.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/de.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/de.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/de_CH.php +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/de_DE.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/de_DE.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/el.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/el.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/en_GB.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/en_GB.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/eo.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/eo.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_419.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_419.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_AR.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_AR.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_CL.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_CL.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_CO.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_CO.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_CR.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_CR.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_DO.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_DO.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_EC.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_EC.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_GT.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_GT.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_HN.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_HN.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_MX.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_MX.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_NI.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_NI.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_PA.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_PA.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_PE.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_PE.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_PR.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_PR.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_PY.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_PY.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_SV.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_SV.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_UY.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/es_UY.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/et_EE.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/et_EE.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/eu.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/eu.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/eu_ES.php +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/fa.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/fa.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/fi.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/fi.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/fr.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/fr.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/he.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/he.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/hi.php +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/hr.php +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/hu.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/hu.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/hy.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/hy.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ia.php +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/id.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/id.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/is.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/is.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/it.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/it.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ja.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ja.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ka_GE.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ka_GE.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/km.php +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ko.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ko.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ku_IQ.php +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/lb.php +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/lt_LT.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/lt_LT.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/lv.php +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/mk.php +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ms_MY.php +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/nb.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/nb.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/nl.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/nl.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/nn_NO.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/nn_NO.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/oc.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/oc.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/pa.php +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/pl.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/pl.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/pt_BR.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/pt_BR.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/pt_PT.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/pt_PT.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ro.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ro.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ru.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ru.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/si_LK.php +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/sk.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/sk.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/sl.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/sl.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/sq.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/sq.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/sr.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/sr.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/sv.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/sv.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ta_LK.php +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/te.php +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/th.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/th.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/tr.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/tr.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/ug.php +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/uk.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/uk.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/vi.php +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/zh_CN.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/zh_CN.json +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/zh_HK.php +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/zh_TW.js +%%WWWDIR%%/apps-pkg/files_texteditor/l10n/zh_TW.json +%%WWWDIR%%/apps-pkg/files_texteditor/lib/Controller/FileHandlingController.php +%%WWWDIR%%/apps-pkg/files_trashbin/ajax/delete.php +%%WWWDIR%%/apps-pkg/files_trashbin/ajax/isEmpty.php +%%WWWDIR%%/apps-pkg/files_trashbin/ajax/list.php +%%WWWDIR%%/apps-pkg/files_trashbin/ajax/undelete.php +%%WWWDIR%%/apps-pkg/files_trashbin/appinfo/app.php +%%WWWDIR%%/apps-pkg/files_trashbin/appinfo/database.xml +%%WWWDIR%%/apps-pkg/files_trashbin/appinfo/info.xml +%%WWWDIR%%/apps-pkg/files_trashbin/appinfo/routes.php +%%WWWDIR%%/apps-pkg/files_trashbin/appinfo/signature.json +%%WWWDIR%%/apps-pkg/files_trashbin/composer/autoload.php +%%WWWDIR%%/apps-pkg/files_trashbin/composer/composer.json +%%WWWDIR%%/apps-pkg/files_trashbin/composer/composer/ClassLoader.php +%%WWWDIR%%/apps-pkg/files_trashbin/composer/composer/LICENSE +%%WWWDIR%%/apps-pkg/files_trashbin/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps-pkg/files_trashbin/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps-pkg/files_trashbin/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps-pkg/files_trashbin/composer/composer/autoload_real.php +%%WWWDIR%%/apps-pkg/files_trashbin/composer/composer/autoload_static.php +%%WWWDIR%%/apps-pkg/files_trashbin/css/trash.scss +%%WWWDIR%%/apps-pkg/files_trashbin/img/app.svg +%%WWWDIR%%/apps-pkg/files_trashbin/js/app.js +%%WWWDIR%%/apps-pkg/files_trashbin/js/filelist.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/.gitkeep +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/af.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/af.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/af_ZA.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/af_ZA.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ar.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ar.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ast.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ast.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/az.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/az.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/be.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/be.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/bg.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/bg.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/bg_BG.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/bg_BG.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/bn_BD.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/bn_BD.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/bn_IN.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/bn_IN.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/bs.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/bs.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ca.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ca.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/cs.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/cs.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/cs_CZ.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/cs_CZ.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/cy_GB.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/cy_GB.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/da.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/da.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/de.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/de.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/de_AT.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/de_AT.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/de_DE.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/de_DE.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/el.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/el.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/en_GB.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/en_GB.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/eo.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/eo.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_419.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_419.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_AR.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_AR.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_CL.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_CL.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_CO.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_CO.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_CR.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_CR.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_DO.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_DO.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_EC.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_EC.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_GT.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_GT.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_HN.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_HN.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_MX.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_MX.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_NI.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_NI.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_PA.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_PA.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_PE.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_PE.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_PR.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_PR.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_PY.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_PY.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_SV.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_SV.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_UY.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/es_UY.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/et_EE.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/et_EE.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/eu.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/eu.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/fa.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/fa.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/fi.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/fi.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/fi_FI.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/fi_FI.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/fil.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/fil.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/fr.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/fr.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/gl.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/gl.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/he.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/he.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/hi.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/hi.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/hr.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/hr.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/hu.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/hu.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/hu_HU.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/hu_HU.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/hy.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/hy.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ia.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ia.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/id.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/id.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/is.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/is.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/it.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/it.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ja.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ja.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ka_GE.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ka_GE.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/km.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/km.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/kn.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/kn.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ko.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ko.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ku_IQ.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ku_IQ.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/lb.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/lb.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/lt_LT.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/lt_LT.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/lv.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/lv.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/mk.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/mk.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/mn.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/mn.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ms_MY.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ms_MY.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/nb.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/nb.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/nb_NO.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/nb_NO.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/nds.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/nds.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/nl.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/nl.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/nn_NO.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/nn_NO.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/oc.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/oc.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/pa.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/pa.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/pl.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/pl.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/pt_BR.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/pt_BR.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/pt_PT.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/pt_PT.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ro.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ro.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ru.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ru.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/si_LK.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/si_LK.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/sk.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/sk.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/sk_SK.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/sk_SK.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/sl.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/sl.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/sq.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/sq.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/sr.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/sr.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/sr@latin.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/sr@latin.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/sv.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/sv.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ta_LK.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ta_LK.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/te.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/te.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/th.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/th.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/th_TH.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/th_TH.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/tr.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/tr.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ug.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ug.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/uk.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/uk.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ur_PK.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/ur_PK.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/vi.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/vi.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/zh_CN.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/zh_CN.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/zh_HK.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/zh_HK.json +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/zh_TW.js +%%WWWDIR%%/apps-pkg/files_trashbin/l10n/zh_TW.json +%%WWWDIR%%/apps-pkg/files_trashbin/lib/AppInfo/Application.php +%%WWWDIR%%/apps-pkg/files_trashbin/lib/BackgroundJob/ExpireTrash.php +%%WWWDIR%%/apps-pkg/files_trashbin/lib/Capabilities.php +%%WWWDIR%%/apps-pkg/files_trashbin/lib/Command/CleanUp.php +%%WWWDIR%%/apps-pkg/files_trashbin/lib/Command/Expire.php +%%WWWDIR%%/apps-pkg/files_trashbin/lib/Command/ExpireTrash.php +%%WWWDIR%%/apps-pkg/files_trashbin/lib/Controller/PreviewController.php +%%WWWDIR%%/apps-pkg/files_trashbin/lib/Events/MoveToTrashEvent.php +%%WWWDIR%%/apps-pkg/files_trashbin/lib/Exceptions/CopyRecursiveException.php +%%WWWDIR%%/apps-pkg/files_trashbin/lib/Expiration.php +%%WWWDIR%%/apps-pkg/files_trashbin/lib/Helper.php +%%WWWDIR%%/apps-pkg/files_trashbin/lib/Hooks.php +%%WWWDIR%%/apps-pkg/files_trashbin/lib/Storage.php +%%WWWDIR%%/apps-pkg/files_trashbin/lib/Trashbin.php +%%WWWDIR%%/apps-pkg/files_trashbin/list.php +%%WWWDIR%%/apps-pkg/files_trashbin/templates/index.php +%%WWWDIR%%/apps-pkg/files_versions/ajax/getVersions.php +%%WWWDIR%%/apps-pkg/files_versions/ajax/rollbackVersion.php +%%WWWDIR%%/apps-pkg/files_versions/appinfo/app.php +%%WWWDIR%%/apps-pkg/files_versions/appinfo/info.xml +%%WWWDIR%%/apps-pkg/files_versions/appinfo/routes.php +%%WWWDIR%%/apps-pkg/files_versions/appinfo/signature.json +%%WWWDIR%%/apps-pkg/files_versions/composer/autoload.php +%%WWWDIR%%/apps-pkg/files_versions/composer/composer.json +%%WWWDIR%%/apps-pkg/files_versions/composer/composer/ClassLoader.php +%%WWWDIR%%/apps-pkg/files_versions/composer/composer/LICENSE +%%WWWDIR%%/apps-pkg/files_versions/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps-pkg/files_versions/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps-pkg/files_versions/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps-pkg/files_versions/composer/composer/autoload_real.php +%%WWWDIR%%/apps-pkg/files_versions/composer/composer/autoload_static.php +%%WWWDIR%%/apps-pkg/files_versions/css/versions.css +%%WWWDIR%%/apps-pkg/files_versions/download.php +%%WWWDIR%%/apps-pkg/files_versions/img/app.svg +%%WWWDIR%%/apps-pkg/files_versions/js/filesplugin.js +%%WWWDIR%%/apps-pkg/files_versions/js/merged.json +%%WWWDIR%%/apps-pkg/files_versions/js/versioncollection.js +%%WWWDIR%%/apps-pkg/files_versions/js/versionmodel.js +%%WWWDIR%%/apps-pkg/files_versions/js/versionstabview.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/.gitkeep +%%WWWDIR%%/apps-pkg/files_versions/l10n/af.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/af.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/ar.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/ar.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/ast.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/ast.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/az.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/az.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/bg.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/bg.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/bg_BG.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/bg_BG.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/bn_BD.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/bn_BD.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/bn_IN.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/bn_IN.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/bs.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/bs.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/ca.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/ca.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/cs.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/cs.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/cs_CZ.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/cs_CZ.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/cy_GB.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/cy_GB.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/da.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/da.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/de.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/de.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/de_DE.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/de_DE.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/el.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/el.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/en_GB.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/en_GB.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/eo.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/eo.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/es.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/es.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_419.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_419.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_AR.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_AR.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_CL.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_CL.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_CO.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_CO.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_CR.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_CR.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_DO.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_DO.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_EC.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_EC.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_GT.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_GT.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_HN.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_HN.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_MX.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_MX.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_NI.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_NI.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_PA.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_PA.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_PE.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_PE.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_PR.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_PR.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_PY.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_PY.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_SV.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_SV.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_UY.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/es_UY.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/et_EE.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/et_EE.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/eu.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/eu.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/fa.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/fa.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/fi.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/fi.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/fi_FI.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/fi_FI.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/fr.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/fr.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/gl.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/gl.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/he.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/he.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/hr.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/hr.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/hu.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/hu.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/hu_HU.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/hu_HU.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/hy.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/hy.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/ia.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/ia.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/id.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/id.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/is.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/is.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/it.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/it.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/ja.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/ja.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/ka_GE.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/ka_GE.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/km.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/km.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/kn.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/kn.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/ko.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/ko.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/ku_IQ.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/ku_IQ.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/lb.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/lb.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/lt_LT.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/lt_LT.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/lv.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/lv.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/mk.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/mk.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/ms_MY.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/ms_MY.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/nb.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/nb.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/nb_NO.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/nb_NO.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/nl.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/nl.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/nn_NO.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/nn_NO.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/oc.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/oc.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/pl.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/pl.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/pt_BR.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/pt_BR.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/pt_PT.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/pt_PT.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/ro.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/ro.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/ru.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/ru.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/si_LK.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/si_LK.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/sk.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/sk.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/sk_SK.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/sk_SK.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/sl.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/sl.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/sq.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/sq.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/sr.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/sr.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/sr@latin.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/sr@latin.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/sv.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/sv.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/ta_LK.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/ta_LK.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/th.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/th.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/th_TH.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/th_TH.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/tr.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/tr.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/ug.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/ug.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/uk.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/uk.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/ur_PK.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/ur_PK.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/vi.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/vi.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/zh_CN.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/zh_CN.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/zh_HK.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/zh_HK.json +%%WWWDIR%%/apps-pkg/files_versions/l10n/zh_TW.js +%%WWWDIR%%/apps-pkg/files_versions/l10n/zh_TW.json +%%WWWDIR%%/apps-pkg/files_versions/lib/AppInfo/Application.php +%%WWWDIR%%/apps-pkg/files_versions/lib/BackgroundJob/ExpireVersions.php +%%WWWDIR%%/apps-pkg/files_versions/lib/Capabilities.php +%%WWWDIR%%/apps-pkg/files_versions/lib/Command/CleanUp.php +%%WWWDIR%%/apps-pkg/files_versions/lib/Command/Expire.php +%%WWWDIR%%/apps-pkg/files_versions/lib/Command/ExpireVersions.php +%%WWWDIR%%/apps-pkg/files_versions/lib/Controller/PreviewController.php +%%WWWDIR%%/apps-pkg/files_versions/lib/Events/CreateVersionEvent.php +%%WWWDIR%%/apps-pkg/files_versions/lib/Expiration.php +%%WWWDIR%%/apps-pkg/files_versions/lib/Hooks.php +%%WWWDIR%%/apps-pkg/files_versions/lib/Storage.php +%%WWWDIR%%/apps-pkg/files_videoplayer/appinfo/app.php +%%WWWDIR%%/apps-pkg/files_videoplayer/appinfo/info.xml +%%WWWDIR%%/apps-pkg/files_videoplayer/appinfo/signature.json +%%WWWDIR%%/apps-pkg/files_videoplayer/css/style.css +%%WWWDIR%%/apps-pkg/files_videoplayer/img/app.svg +%%WWWDIR%%/apps-pkg/files_videoplayer/img/poster.png +%%WWWDIR%%/apps-pkg/files_videoplayer/img/vjs-volume-bar.png +%%WWWDIR%%/apps-pkg/files_videoplayer/img/vjs-volume-level.png +%%WWWDIR%%/apps-pkg/files_videoplayer/js/viewer.js +%%WWWDIR%%/apps-pkg/files_videoplayer/screenshot.jpg +%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/font/vjs.eot +%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/font/vjs.svg +%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/font/vjs.ttf +%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/font/vjs.woff +%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/ar.js +%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/bg.js +%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/ca.js +%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/cs.js +%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/de.js +%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/es.js +%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/fr.js +%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/hu.js +%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/it.js +%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/ja.js +%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/ko.js +%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/nl.js +%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/pt-BR.js +%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/ru.js +%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/tr.js +%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/uk.js +%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/vi.js +%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/zh-CN.js +%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/zh-TW.js +%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/video-js.css +%%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/video.js +%%WWWDIR%%/apps-pkg/firstrunwizard/.github/contributing.md +%%WWWDIR%%/apps-pkg/firstrunwizard/.github/issue_template.md +%%WWWDIR%%/apps-pkg/firstrunwizard/appinfo/app.php +%%WWWDIR%%/apps-pkg/firstrunwizard/appinfo/info.xml +%%WWWDIR%%/apps-pkg/firstrunwizard/appinfo/routes.php +%%WWWDIR%%/apps-pkg/firstrunwizard/appinfo/signature.json +%%WWWDIR%%/apps-pkg/firstrunwizard/css/colorbox.css +%%WWWDIR%%/apps-pkg/firstrunwizard/css/firstrunwizard.css +%%WWWDIR%%/apps-pkg/firstrunwizard/img/app.svg +%%WWWDIR%%/apps-pkg/firstrunwizard/js/activate.js +%%WWWDIR%%/apps-pkg/firstrunwizard/js/firstrunwizard.js +%%WWWDIR%%/apps-pkg/firstrunwizard/js/jquery.colorbox.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/.gitignore +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/.tx/config +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ar.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ar.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ast.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ast.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/az.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/az.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/bg.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/bg.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/bn_BD.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/bn_BD.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/bn_IN.php +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ca.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ca.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/cs.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/cs.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/cy_GB.php +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/da.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/da.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/de.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/de.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/de_CH.php +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/de_DE.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/de_DE.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/el.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/el.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/en_GB.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/en_GB.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/eo.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/eo.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_419.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_419.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_AR.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_AR.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_CL.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_CL.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_CO.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_CO.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_CR.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_CR.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_DO.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_DO.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_EC.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_EC.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_GT.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_GT.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_HN.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_HN.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_MX.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_MX.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_NI.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_NI.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_PA.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_PA.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_PE.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_PE.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_PR.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_PR.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_PY.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_PY.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_SV.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_SV.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_UY.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/es_UY.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/et_EE.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/et_EE.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/eu.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/eu.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/fa.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/fa.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/fi.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/fi.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/fr.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/fr.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/he.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/he.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/hr.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/hr.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/hu.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/hu.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ia.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ia.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/id.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/id.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/is.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/is.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/it.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/it.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ja.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ja.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ka_GE.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ka_GE.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/km.php +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ko.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ko.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ku_IQ.php +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/lt_LT.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/lt_LT.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/lv.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/lv.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ms_MY.php +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/nb.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/nb.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/nl.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/nl.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/oc.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/oc.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/pl.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/pl.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/pt_BR.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/pt_BR.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/pt_PT.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/pt_PT.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ro.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ro.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ru.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ru.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/si_LK.php +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/sk.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/sk.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/sl.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/sl.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/sq.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/sq.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/sr.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/sr.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/sv.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/sv.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ta_LK.php +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/te.php +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/th.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/th.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/tr.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/tr.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ug.php +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/uk.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/uk.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/zh_CN.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/zh_CN.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/zh_HK.php +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/zh_TW.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/zh_TW.json +%%WWWDIR%%/apps-pkg/firstrunwizard/lib/AppInfo/Application.php +%%WWWDIR%%/apps-pkg/firstrunwizard/lib/Controller/WizardController.php +%%WWWDIR%%/apps-pkg/firstrunwizard/lib/Notification/BackgroundJob.php +%%WWWDIR%%/apps-pkg/firstrunwizard/lib/Notification/Notifier.php +%%WWWDIR%%/apps-pkg/firstrunwizard/lib/Settings/Personal.php +%%WWWDIR%%/apps-pkg/firstrunwizard/templates/personal-settings.php +%%WWWDIR%%/apps-pkg/firstrunwizard/templates/wizard.php +%%WWWDIR%%/apps-pkg/gallery/.github/issue_template.md +%%WWWDIR%%/apps-pkg/gallery/.github/pull_request_template.md +%%WWWDIR%%/apps-pkg/gallery/.gitmodules +%%WWWDIR%%/apps-pkg/gallery/AUTHORS.md +%%WWWDIR%%/apps-pkg/gallery/CHANGELOG.md +%%WWWDIR%%/apps-pkg/gallery/COPYING +%%WWWDIR%%/apps-pkg/gallery/appinfo/app.php +%%WWWDIR%%/apps-pkg/gallery/appinfo/info.xml +%%WWWDIR%%/apps-pkg/gallery/appinfo/routes.php +%%WWWDIR%%/apps-pkg/gallery/appinfo/signature.json +%%WWWDIR%%/apps-pkg/gallery/build/after_failure.sh +%%WWWDIR%%/apps-pkg/gallery/build/documentation/docpublisher.sh +%%WWWDIR%%/apps-pkg/gallery/build/documentation/index.html +%%WWWDIR%%/apps-pkg/gallery/build/documentation/reports/code coverage/index.html +%%WWWDIR%%/apps-pkg/gallery/build/documentation/reports/index.html +%%WWWDIR%%/apps-pkg/gallery/build/screenshots/Gallery.jpg +%%WWWDIR%%/apps-pkg/gallery/build/xdebug_install.sh +%%WWWDIR%%/apps-pkg/gallery/codeception.yml +%%WWWDIR%%/apps-pkg/gallery/composer.json +%%WWWDIR%%/apps-pkg/gallery/composer.lock +%%WWWDIR%%/apps-pkg/gallery/css/authenticate.css +%%WWWDIR%%/apps-pkg/gallery/css/error.css +%%WWWDIR%%/apps-pkg/gallery/css/gallerybutton.css +%%WWWDIR%%/apps-pkg/gallery/css/github-markdown.css +%%WWWDIR%%/apps-pkg/gallery/css/mobile.css +%%WWWDIR%%/apps-pkg/gallery/css/public.css +%%WWWDIR%%/apps-pkg/gallery/css/share.css +%%WWWDIR%%/apps-pkg/gallery/css/slideshow.css +%%WWWDIR%%/apps-pkg/gallery/css/styles.css +%%WWWDIR%%/apps-pkg/gallery/css/upload.css +%%WWWDIR%%/apps-pkg/gallery/documentation/developers.md +%%WWWDIR%%/apps-pkg/gallery/img/app.svg +%%WWWDIR%%/apps-pkg/gallery/img/dateasc.svg +%%WWWDIR%%/apps-pkg/gallery/img/datedes.svg +%%WWWDIR%%/apps-pkg/gallery/img/gallery-dark.svg +%%WWWDIR%%/apps-pkg/gallery/img/nameasc.svg +%%WWWDIR%%/apps-pkg/gallery/img/namedes.svg +%%WWWDIR%%/apps-pkg/gallery/js/.bowerrc +%%WWWDIR%%/apps-pkg/gallery/js/.jshintrc +%%WWWDIR%%/apps-pkg/gallery/js/app.js +%%WWWDIR%%/apps-pkg/gallery/js/bower.json +%%WWWDIR%%/apps-pkg/gallery/js/breadcrumb.js +%%WWWDIR%%/apps-pkg/gallery/js/eventsource.js +%%WWWDIR%%/apps-pkg/gallery/js/gallery.js +%%WWWDIR%%/apps-pkg/gallery/js/galleryalbum.js +%%WWWDIR%%/apps-pkg/gallery/js/gallerybutton.js +%%WWWDIR%%/apps-pkg/gallery/js/galleryconfig.js +%%WWWDIR%%/apps-pkg/gallery/js/galleryfileaction.js +%%WWWDIR%%/apps-pkg/gallery/js/galleryimage.js +%%WWWDIR%%/apps-pkg/gallery/js/galleryinfobox.js +%%WWWDIR%%/apps-pkg/gallery/js/galleryrow.js +%%WWWDIR%%/apps-pkg/gallery/js/galleryutility.js +%%WWWDIR%%/apps-pkg/gallery/js/galleryview.js +%%WWWDIR%%/apps-pkg/gallery/js/merged.json +%%WWWDIR%%/apps-pkg/gallery/js/newfilemenuplugins.js +%%WWWDIR%%/apps-pkg/gallery/js/scripts-for-file-app.json +%%WWWDIR%%/apps-pkg/gallery/js/slideshow.js +%%WWWDIR%%/apps-pkg/gallery/js/slideshowcontrols.js +%%WWWDIR%%/apps-pkg/gallery/js/slideshowzoomablepreview.js +%%WWWDIR%%/apps-pkg/gallery/js/thumbnail.js +%%WWWDIR%%/apps-pkg/gallery/js/upload-helper.js +%%WWWDIR%%/apps-pkg/gallery/js/vendor/bigshot/LICENSE.txt +%%WWWDIR%%/apps-pkg/gallery/js/vendor/bigshot/README.txt +%%WWWDIR%%/apps-pkg/gallery/js/vendor/bigshot/bigshot-compressed.js +%%WWWDIR%%/apps-pkg/gallery/js/vendor/bigshot/bigshot.js +%%WWWDIR%%/apps-pkg/gallery/js/vendor/commonmark/LICENSE +%%WWWDIR%%/apps-pkg/gallery/js/vendor/commonmark/dist/commonmark.js +%%WWWDIR%%/apps-pkg/gallery/js/vendor/commonmark/dist/commonmark.min.js +%%WWWDIR%%/apps-pkg/gallery/js/vendor/dompurify/LICENSE +%%WWWDIR%%/apps-pkg/gallery/js/vendor/dompurify/README.md +%%WWWDIR%%/apps-pkg/gallery/js/vendor/dompurify/src/purify.js +%%WWWDIR%%/apps-pkg/gallery/js/vendor/eventsource-polyfill/LICENSE +%%WWWDIR%%/apps-pkg/gallery/js/vendor/eventsource-polyfill/README.md +%%WWWDIR%%/apps-pkg/gallery/js/vendor/eventsource-polyfill/dist/eventsource.js +%%WWWDIR%%/apps-pkg/gallery/js/vendor/jquery-touch-events/README.md +%%WWWDIR%%/apps-pkg/gallery/js/vendor/jquery-touch-events/src/1.0.8/jquery.mobile-events.js +%%WWWDIR%%/apps-pkg/gallery/js/vendor/jquery-touch-events/src/1.0.8/jquery.mobile-events.min.js +%%WWWDIR%%/apps-pkg/gallery/js/vendor/jquery.ui.touch-punch-custom.js +%%WWWDIR%%/apps-pkg/gallery/js/vendor/jqueryui-touch-punch/README.md +%%WWWDIR%%/apps-pkg/gallery/js/vendor/jqueryui-touch-punch/jquery.ui.touch-punch.js +%%WWWDIR%%/apps-pkg/gallery/js/vendor/modified-eventsource-polyfill/eventsource-polyfill.js +%%WWWDIR%%/apps-pkg/gallery/js/vendor/nextcloud/newfilemenu.js +%%WWWDIR%%/apps-pkg/gallery/js/vendor/nextcloud/share.js +%%WWWDIR%%/apps-pkg/gallery/l10n/.tx/config +%%WWWDIR%%/apps-pkg/gallery/l10n/af_ZA.php +%%WWWDIR%%/apps-pkg/gallery/l10n/ar.js +%%WWWDIR%%/apps-pkg/gallery/l10n/ar.json +%%WWWDIR%%/apps-pkg/gallery/l10n/ast.js +%%WWWDIR%%/apps-pkg/gallery/l10n/ast.json +%%WWWDIR%%/apps-pkg/gallery/l10n/az.js +%%WWWDIR%%/apps-pkg/gallery/l10n/az.json +%%WWWDIR%%/apps-pkg/gallery/l10n/bg.js +%%WWWDIR%%/apps-pkg/gallery/l10n/bg.json +%%WWWDIR%%/apps-pkg/gallery/l10n/bn_BD.js +%%WWWDIR%%/apps-pkg/gallery/l10n/bn_BD.json +%%WWWDIR%%/apps-pkg/gallery/l10n/bn_IN.php +%%WWWDIR%%/apps-pkg/gallery/l10n/bs.js +%%WWWDIR%%/apps-pkg/gallery/l10n/bs.json +%%WWWDIR%%/apps-pkg/gallery/l10n/ca.js +%%WWWDIR%%/apps-pkg/gallery/l10n/ca.json +%%WWWDIR%%/apps-pkg/gallery/l10n/cs.js +%%WWWDIR%%/apps-pkg/gallery/l10n/cs.json +%%WWWDIR%%/apps-pkg/gallery/l10n/cy_GB.js +%%WWWDIR%%/apps-pkg/gallery/l10n/cy_GB.json +%%WWWDIR%%/apps-pkg/gallery/l10n/da.js +%%WWWDIR%%/apps-pkg/gallery/l10n/da.json +%%WWWDIR%%/apps-pkg/gallery/l10n/de.js +%%WWWDIR%%/apps-pkg/gallery/l10n/de.json +%%WWWDIR%%/apps-pkg/gallery/l10n/de_AT.php +%%WWWDIR%%/apps-pkg/gallery/l10n/de_CH.php +%%WWWDIR%%/apps-pkg/gallery/l10n/de_DE.js +%%WWWDIR%%/apps-pkg/gallery/l10n/de_DE.json +%%WWWDIR%%/apps-pkg/gallery/l10n/el.js +%%WWWDIR%%/apps-pkg/gallery/l10n/el.json +%%WWWDIR%%/apps-pkg/gallery/l10n/en_GB.js +%%WWWDIR%%/apps-pkg/gallery/l10n/en_GB.json +%%WWWDIR%%/apps-pkg/gallery/l10n/eo.js +%%WWWDIR%%/apps-pkg/gallery/l10n/eo.json +%%WWWDIR%%/apps-pkg/gallery/l10n/es.js +%%WWWDIR%%/apps-pkg/gallery/l10n/es.json +%%WWWDIR%%/apps-pkg/gallery/l10n/es_419.js +%%WWWDIR%%/apps-pkg/gallery/l10n/es_419.json +%%WWWDIR%%/apps-pkg/gallery/l10n/es_AR.js +%%WWWDIR%%/apps-pkg/gallery/l10n/es_AR.json +%%WWWDIR%%/apps-pkg/gallery/l10n/es_CL.js +%%WWWDIR%%/apps-pkg/gallery/l10n/es_CL.json +%%WWWDIR%%/apps-pkg/gallery/l10n/es_CO.js +%%WWWDIR%%/apps-pkg/gallery/l10n/es_CO.json +%%WWWDIR%%/apps-pkg/gallery/l10n/es_CR.js +%%WWWDIR%%/apps-pkg/gallery/l10n/es_CR.json +%%WWWDIR%%/apps-pkg/gallery/l10n/es_DO.js +%%WWWDIR%%/apps-pkg/gallery/l10n/es_DO.json +%%WWWDIR%%/apps-pkg/gallery/l10n/es_EC.js +%%WWWDIR%%/apps-pkg/gallery/l10n/es_EC.json +%%WWWDIR%%/apps-pkg/gallery/l10n/es_GT.js +%%WWWDIR%%/apps-pkg/gallery/l10n/es_GT.json +%%WWWDIR%%/apps-pkg/gallery/l10n/es_HN.js +%%WWWDIR%%/apps-pkg/gallery/l10n/es_HN.json +%%WWWDIR%%/apps-pkg/gallery/l10n/es_MX.js +%%WWWDIR%%/apps-pkg/gallery/l10n/es_MX.json +%%WWWDIR%%/apps-pkg/gallery/l10n/es_NI.js +%%WWWDIR%%/apps-pkg/gallery/l10n/es_NI.json +%%WWWDIR%%/apps-pkg/gallery/l10n/es_PA.js +%%WWWDIR%%/apps-pkg/gallery/l10n/es_PA.json +%%WWWDIR%%/apps-pkg/gallery/l10n/es_PE.js +%%WWWDIR%%/apps-pkg/gallery/l10n/es_PE.json +%%WWWDIR%%/apps-pkg/gallery/l10n/es_PR.js +%%WWWDIR%%/apps-pkg/gallery/l10n/es_PR.json +%%WWWDIR%%/apps-pkg/gallery/l10n/es_PY.js +%%WWWDIR%%/apps-pkg/gallery/l10n/es_PY.json +%%WWWDIR%%/apps-pkg/gallery/l10n/es_SV.js +%%WWWDIR%%/apps-pkg/gallery/l10n/es_SV.json +%%WWWDIR%%/apps-pkg/gallery/l10n/es_UY.js +%%WWWDIR%%/apps-pkg/gallery/l10n/es_UY.json +%%WWWDIR%%/apps-pkg/gallery/l10n/et_EE.js +%%WWWDIR%%/apps-pkg/gallery/l10n/et_EE.json +%%WWWDIR%%/apps-pkg/gallery/l10n/eu.js +%%WWWDIR%%/apps-pkg/gallery/l10n/eu.json +%%WWWDIR%%/apps-pkg/gallery/l10n/fa.js +%%WWWDIR%%/apps-pkg/gallery/l10n/fa.json +%%WWWDIR%%/apps-pkg/gallery/l10n/fi.js +%%WWWDIR%%/apps-pkg/gallery/l10n/fi.json +%%WWWDIR%%/apps-pkg/gallery/l10n/fr.js +%%WWWDIR%%/apps-pkg/gallery/l10n/fr.json +%%WWWDIR%%/apps-pkg/gallery/l10n/he.js +%%WWWDIR%%/apps-pkg/gallery/l10n/he.json +%%WWWDIR%%/apps-pkg/gallery/l10n/hi.php +%%WWWDIR%%/apps-pkg/gallery/l10n/hr.js +%%WWWDIR%%/apps-pkg/gallery/l10n/hr.json +%%WWWDIR%%/apps-pkg/gallery/l10n/hu.js +%%WWWDIR%%/apps-pkg/gallery/l10n/hu.json +%%WWWDIR%%/apps-pkg/gallery/l10n/ia.js +%%WWWDIR%%/apps-pkg/gallery/l10n/ia.json +%%WWWDIR%%/apps-pkg/gallery/l10n/id.js +%%WWWDIR%%/apps-pkg/gallery/l10n/id.json +%%WWWDIR%%/apps-pkg/gallery/l10n/is.js +%%WWWDIR%%/apps-pkg/gallery/l10n/is.json +%%WWWDIR%%/apps-pkg/gallery/l10n/it.js +%%WWWDIR%%/apps-pkg/gallery/l10n/it.json +%%WWWDIR%%/apps-pkg/gallery/l10n/ja.js +%%WWWDIR%%/apps-pkg/gallery/l10n/ja.json +%%WWWDIR%%/apps-pkg/gallery/l10n/ka_GE.js +%%WWWDIR%%/apps-pkg/gallery/l10n/ka_GE.json +%%WWWDIR%%/apps-pkg/gallery/l10n/km.js +%%WWWDIR%%/apps-pkg/gallery/l10n/km.json +%%WWWDIR%%/apps-pkg/gallery/l10n/kn.js +%%WWWDIR%%/apps-pkg/gallery/l10n/kn.json +%%WWWDIR%%/apps-pkg/gallery/l10n/ko.js +%%WWWDIR%%/apps-pkg/gallery/l10n/ko.json +%%WWWDIR%%/apps-pkg/gallery/l10n/ku_IQ.php +%%WWWDIR%%/apps-pkg/gallery/l10n/lb.js +%%WWWDIR%%/apps-pkg/gallery/l10n/lb.json +%%WWWDIR%%/apps-pkg/gallery/l10n/lt_LT.js +%%WWWDIR%%/apps-pkg/gallery/l10n/lt_LT.json +%%WWWDIR%%/apps-pkg/gallery/l10n/lv.js +%%WWWDIR%%/apps-pkg/gallery/l10n/lv.json +%%WWWDIR%%/apps-pkg/gallery/l10n/mk.js +%%WWWDIR%%/apps-pkg/gallery/l10n/mk.json +%%WWWDIR%%/apps-pkg/gallery/l10n/mn.js +%%WWWDIR%%/apps-pkg/gallery/l10n/mn.json +%%WWWDIR%%/apps-pkg/gallery/l10n/ms_MY.php +%%WWWDIR%%/apps-pkg/gallery/l10n/nb.js +%%WWWDIR%%/apps-pkg/gallery/l10n/nb.json +%%WWWDIR%%/apps-pkg/gallery/l10n/nl.js +%%WWWDIR%%/apps-pkg/gallery/l10n/nl.json +%%WWWDIR%%/apps-pkg/gallery/l10n/nn_NO.js +%%WWWDIR%%/apps-pkg/gallery/l10n/nn_NO.json +%%WWWDIR%%/apps-pkg/gallery/l10n/no-php +%%WWWDIR%%/apps-pkg/gallery/l10n/oc.js +%%WWWDIR%%/apps-pkg/gallery/l10n/oc.json +%%WWWDIR%%/apps-pkg/gallery/l10n/pa.php +%%WWWDIR%%/apps-pkg/gallery/l10n/pl.js +%%WWWDIR%%/apps-pkg/gallery/l10n/pl.json +%%WWWDIR%%/apps-pkg/gallery/l10n/pt_BR.js +%%WWWDIR%%/apps-pkg/gallery/l10n/pt_BR.json +%%WWWDIR%%/apps-pkg/gallery/l10n/pt_PT.js +%%WWWDIR%%/apps-pkg/gallery/l10n/pt_PT.json +%%WWWDIR%%/apps-pkg/gallery/l10n/ro.js +%%WWWDIR%%/apps-pkg/gallery/l10n/ro.json +%%WWWDIR%%/apps-pkg/gallery/l10n/ru.js +%%WWWDIR%%/apps-pkg/gallery/l10n/ru.json +%%WWWDIR%%/apps-pkg/gallery/l10n/si_LK.php +%%WWWDIR%%/apps-pkg/gallery/l10n/sk.js +%%WWWDIR%%/apps-pkg/gallery/l10n/sk.json +%%WWWDIR%%/apps-pkg/gallery/l10n/sl.js +%%WWWDIR%%/apps-pkg/gallery/l10n/sl.json +%%WWWDIR%%/apps-pkg/gallery/l10n/sq.js +%%WWWDIR%%/apps-pkg/gallery/l10n/sq.json +%%WWWDIR%%/apps-pkg/gallery/l10n/sr.js +%%WWWDIR%%/apps-pkg/gallery/l10n/sr.json +%%WWWDIR%%/apps-pkg/gallery/l10n/sr@latin.php +%%WWWDIR%%/apps-pkg/gallery/l10n/sv.js +%%WWWDIR%%/apps-pkg/gallery/l10n/sv.json +%%WWWDIR%%/apps-pkg/gallery/l10n/ta_LK.js +%%WWWDIR%%/apps-pkg/gallery/l10n/ta_LK.json +%%WWWDIR%%/apps-pkg/gallery/l10n/th.js +%%WWWDIR%%/apps-pkg/gallery/l10n/th.json +%%WWWDIR%%/apps-pkg/gallery/l10n/tr.js +%%WWWDIR%%/apps-pkg/gallery/l10n/tr.json +%%WWWDIR%%/apps-pkg/gallery/l10n/ug.php +%%WWWDIR%%/apps-pkg/gallery/l10n/uk.js +%%WWWDIR%%/apps-pkg/gallery/l10n/uk.json +%%WWWDIR%%/apps-pkg/gallery/l10n/ur_PK.js +%%WWWDIR%%/apps-pkg/gallery/l10n/ur_PK.json +%%WWWDIR%%/apps-pkg/gallery/l10n/vi.js +%%WWWDIR%%/apps-pkg/gallery/l10n/vi.json +%%WWWDIR%%/apps-pkg/gallery/l10n/zh_CN.js +%%WWWDIR%%/apps-pkg/gallery/l10n/zh_CN.json +%%WWWDIR%%/apps-pkg/gallery/l10n/zh_HK.js +%%WWWDIR%%/apps-pkg/gallery/l10n/zh_HK.json +%%WWWDIR%%/apps-pkg/gallery/l10n/zh_TW.js +%%WWWDIR%%/apps-pkg/gallery/l10n/zh_TW.json +%%WWWDIR%%/apps-pkg/gallery/lib/AppInfo/Application.php +%%WWWDIR%%/apps-pkg/gallery/lib/Config/ConfigException.php +%%WWWDIR%%/apps-pkg/gallery/lib/Config/ConfigParser.php +%%WWWDIR%%/apps-pkg/gallery/lib/Config/ConfigValidator.php +%%WWWDIR%%/apps-pkg/gallery/lib/Controller/Config.php +%%WWWDIR%%/apps-pkg/gallery/lib/Controller/ConfigApiController.php +%%WWWDIR%%/apps-pkg/gallery/lib/Controller/ConfigController.php +%%WWWDIR%%/apps-pkg/gallery/lib/Controller/ConfigPublicController.php +%%WWWDIR%%/apps-pkg/gallery/lib/Controller/Files.php +%%WWWDIR%%/apps-pkg/gallery/lib/Controller/FilesApiController.php +%%WWWDIR%%/apps-pkg/gallery/lib/Controller/FilesController.php +%%WWWDIR%%/apps-pkg/gallery/lib/Controller/FilesPublicController.php +%%WWWDIR%%/apps-pkg/gallery/lib/Controller/HttpError.php +%%WWWDIR%%/apps-pkg/gallery/lib/Controller/PageController.php +%%WWWDIR%%/apps-pkg/gallery/lib/Controller/PathManipulation.php +%%WWWDIR%%/apps-pkg/gallery/lib/Controller/Preview.php +%%WWWDIR%%/apps-pkg/gallery/lib/Controller/PreviewApiController.php +%%WWWDIR%%/apps-pkg/gallery/lib/Controller/PreviewController.php +%%WWWDIR%%/apps-pkg/gallery/lib/Controller/PreviewPublicController.php +%%WWWDIR%%/apps-pkg/gallery/lib/Environment/Environment.php +%%WWWDIR%%/apps-pkg/gallery/lib/Environment/EnvironmentException.php +%%WWWDIR%%/apps-pkg/gallery/lib/Environment/NotFoundEnvException.php +%%WWWDIR%%/apps-pkg/gallery/lib/Http/ImageResponse.php +%%WWWDIR%%/apps-pkg/gallery/lib/Middleware/CheckException.php +%%WWWDIR%%/apps-pkg/gallery/lib/Middleware/CheckMiddleware.php +%%WWWDIR%%/apps-pkg/gallery/lib/Middleware/EnvCheckMiddleware.php +%%WWWDIR%%/apps-pkg/gallery/lib/Middleware/SharingCheckMiddleware.php +%%WWWDIR%%/apps-pkg/gallery/lib/Service/Base64Encode.php +%%WWWDIR%%/apps-pkg/gallery/lib/Service/ConfigService.php +%%WWWDIR%%/apps-pkg/gallery/lib/Service/DownloadService.php +%%WWWDIR%%/apps-pkg/gallery/lib/Service/FilesService.php +%%WWWDIR%%/apps-pkg/gallery/lib/Service/ForbiddenServiceException.php +%%WWWDIR%%/apps-pkg/gallery/lib/Service/InternalServerErrorServiceException.php +%%WWWDIR%%/apps-pkg/gallery/lib/Service/NotFoundServiceException.php +%%WWWDIR%%/apps-pkg/gallery/lib/Service/PreviewService.php +%%WWWDIR%%/apps-pkg/gallery/lib/Service/SearchFolderService.php +%%WWWDIR%%/apps-pkg/gallery/lib/Service/SearchMediaService.php +%%WWWDIR%%/apps-pkg/gallery/lib/Service/Service.php +%%WWWDIR%%/apps-pkg/gallery/lib/Service/ServiceException.php +%%WWWDIR%%/apps-pkg/gallery/lib/Service/ThumbnailService.php +%%WWWDIR%%/apps-pkg/gallery/lib/Utility/EventSource.php +%%WWWDIR%%/apps-pkg/gallery/phpdoc.xml +%%WWWDIR%%/apps-pkg/gallery/templates/authenticate.php +%%WWWDIR%%/apps-pkg/gallery/templates/index.php +%%WWWDIR%%/apps-pkg/gallery/templates/part.content.php +%%WWWDIR%%/apps-pkg/gallery/templates/part.filenotfounderror.php +%%WWWDIR%%/apps-pkg/gallery/templates/part.internalservererror.php +%%WWWDIR%%/apps-pkg/gallery/templates/part.linkerror.php +%%WWWDIR%%/apps-pkg/gallery/templates/public.php +%%WWWDIR%%/apps-pkg/gallery/templates/slideshow.php +%%WWWDIR%%/apps-pkg/gallery/vendor/autoload.php +%%WWWDIR%%/apps-pkg/gallery/vendor/composer/ClassLoader.php +%%WWWDIR%%/apps-pkg/gallery/vendor/composer/LICENSE +%%WWWDIR%%/apps-pkg/gallery/vendor/composer/autoload_classmap.php +%%WWWDIR%%/apps-pkg/gallery/vendor/composer/autoload_namespaces.php +%%WWWDIR%%/apps-pkg/gallery/vendor/composer/autoload_psr4.php +%%WWWDIR%%/apps-pkg/gallery/vendor/composer/autoload_real.php +%%WWWDIR%%/apps-pkg/gallery/vendor/composer/autoload_static.php +%%WWWDIR%%/apps-pkg/gallery/vendor/composer/installed.json +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/.gitignore +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/CHANGELOG.md +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Dumper.php +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Escaper.php +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Exception/DumpException.php +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Exception/ExceptionInterface.php +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Exception/ParseException.php +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Exception/RuntimeException.php +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Inline.php +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/LICENSE +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Parser.php +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/README.md +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/DumperTest.php +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsAnchorAlias.yml +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsBasicTests.yml +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsBlockMapping.yml +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsDocumentSeparator.yml +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsErrorTests.yml +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsFlowCollections.yml +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsFoldedScalars.yml +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsNullsAndEmpties.yml +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsSpecificationExamples.yml +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/YtsTypeTransfers.yml +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/embededPhp.yml +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/escapedCharacters.yml +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/index.yml +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/sfComments.yml +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/sfCompact.yml +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/sfMergeKey.yml +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/sfObjects.yml +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/sfQuotes.yml +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/sfTests.yml +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/Fixtures/unindentedCollections.yml +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/InlineTest.php +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/ParseExceptionTest.php +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/ParserTest.php +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Tests/YamlTest.php +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Unescaper.php +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Yaml.php +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/composer.json +%%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/phpunit.xml.dist +%%WWWDIR%%/apps-pkg/logreader/.babelrc +%%WWWDIR%%/apps-pkg/logreader/.github/contributing.md +%%WWWDIR%%/apps-pkg/logreader/.github/issue_template.md +%%WWWDIR%%/apps-pkg/logreader/Makefile +%%WWWDIR%%/apps-pkg/logreader/appinfo/app.php +%%WWWDIR%%/apps-pkg/logreader/appinfo/info.xml +%%WWWDIR%%/apps-pkg/logreader/appinfo/routes.php +%%WWWDIR%%/apps-pkg/logreader/appinfo/signature.json +%%WWWDIR%%/apps-pkg/logreader/build/main.css +%%WWWDIR%%/apps-pkg/logreader/build/main.css.map +%%WWWDIR%%/apps-pkg/logreader/build/main.js +%%WWWDIR%%/apps-pkg/logreader/build/main.js.map +%%WWWDIR%%/apps-pkg/logreader/css/app.css +%%WWWDIR%%/apps-pkg/logreader/img/app-dark.svg +%%WWWDIR%%/apps-pkg/logreader/img/app.svg +%%WWWDIR%%/apps-pkg/logreader/js/App.js +%%WWWDIR%%/apps-pkg/logreader/js/Components/BackgroundException.js +%%WWWDIR%%/apps-pkg/logreader/js/Components/Exception.js +%%WWWDIR%%/apps-pkg/logreader/js/Components/Exception.less +%%WWWDIR%%/apps-pkg/logreader/js/Components/LevelSettings.js +%%WWWDIR%%/apps-pkg/logreader/js/Components/LevelSettings.less +%%WWWDIR%%/apps-pkg/logreader/js/Components/LogEntry.js +%%WWWDIR%%/apps-pkg/logreader/js/Components/LogLevel.js +%%WWWDIR%%/apps-pkg/logreader/js/Components/LogTable.js +%%WWWDIR%%/apps-pkg/logreader/js/Components/LogTable.less +%%WWWDIR%%/apps-pkg/logreader/js/Components/LogUploader.js +%%WWWDIR%%/apps-pkg/logreader/js/Components/LogUploader.less +%%WWWDIR%%/apps-pkg/logreader/js/Components/ToggleEntry.js +%%WWWDIR%%/apps-pkg/logreader/js/Components/ToggleEntry.less +%%WWWDIR%%/apps-pkg/logreader/js/Components/TraceLine.js +%%WWWDIR%%/apps-pkg/logreader/js/Components/TraceLine.less +%%WWWDIR%%/apps-pkg/logreader/js/DateFormatConverter.js +%%WWWDIR%%/apps-pkg/logreader/js/ExceptionParser.js +%%WWWDIR%%/apps-pkg/logreader/js/Providers/LogFile.js +%%WWWDIR%%/apps-pkg/logreader/js/Providers/LogProvider.js +%%WWWDIR%%/apps-pkg/logreader/js/Search.js +%%WWWDIR%%/apps-pkg/logreader/js/index.js +%%WWWDIR%%/apps-pkg/logreader/js/unserialize.js +%%WWWDIR%%/apps-pkg/logreader/l10n/.tx/config +%%WWWDIR%%/apps-pkg/logreader/l10n/ast.js +%%WWWDIR%%/apps-pkg/logreader/l10n/ast.json +%%WWWDIR%%/apps-pkg/logreader/l10n/ca.js +%%WWWDIR%%/apps-pkg/logreader/l10n/ca.json +%%WWWDIR%%/apps-pkg/logreader/l10n/cs.js +%%WWWDIR%%/apps-pkg/logreader/l10n/cs.json +%%WWWDIR%%/apps-pkg/logreader/l10n/da.js +%%WWWDIR%%/apps-pkg/logreader/l10n/da.json +%%WWWDIR%%/apps-pkg/logreader/l10n/de.js +%%WWWDIR%%/apps-pkg/logreader/l10n/de.json +%%WWWDIR%%/apps-pkg/logreader/l10n/de_DE.js +%%WWWDIR%%/apps-pkg/logreader/l10n/de_DE.json +%%WWWDIR%%/apps-pkg/logreader/l10n/el.js +%%WWWDIR%%/apps-pkg/logreader/l10n/el.json +%%WWWDIR%%/apps-pkg/logreader/l10n/en_GB.js +%%WWWDIR%%/apps-pkg/logreader/l10n/en_GB.json +%%WWWDIR%%/apps-pkg/logreader/l10n/es.js +%%WWWDIR%%/apps-pkg/logreader/l10n/es.json +%%WWWDIR%%/apps-pkg/logreader/l10n/es_419.js +%%WWWDIR%%/apps-pkg/logreader/l10n/es_419.json +%%WWWDIR%%/apps-pkg/logreader/l10n/es_CL.js +%%WWWDIR%%/apps-pkg/logreader/l10n/es_CL.json +%%WWWDIR%%/apps-pkg/logreader/l10n/es_CO.js +%%WWWDIR%%/apps-pkg/logreader/l10n/es_CO.json +%%WWWDIR%%/apps-pkg/logreader/l10n/es_CR.js +%%WWWDIR%%/apps-pkg/logreader/l10n/es_CR.json +%%WWWDIR%%/apps-pkg/logreader/l10n/es_DO.js +%%WWWDIR%%/apps-pkg/logreader/l10n/es_DO.json +%%WWWDIR%%/apps-pkg/logreader/l10n/es_EC.js +%%WWWDIR%%/apps-pkg/logreader/l10n/es_EC.json +%%WWWDIR%%/apps-pkg/logreader/l10n/es_GT.js +%%WWWDIR%%/apps-pkg/logreader/l10n/es_GT.json +%%WWWDIR%%/apps-pkg/logreader/l10n/es_HN.js +%%WWWDIR%%/apps-pkg/logreader/l10n/es_HN.json +%%WWWDIR%%/apps-pkg/logreader/l10n/es_MX.js +%%WWWDIR%%/apps-pkg/logreader/l10n/es_MX.json +%%WWWDIR%%/apps-pkg/logreader/l10n/es_NI.js +%%WWWDIR%%/apps-pkg/logreader/l10n/es_NI.json +%%WWWDIR%%/apps-pkg/logreader/l10n/es_PA.js +%%WWWDIR%%/apps-pkg/logreader/l10n/es_PA.json +%%WWWDIR%%/apps-pkg/logreader/l10n/es_PE.js +%%WWWDIR%%/apps-pkg/logreader/l10n/es_PE.json +%%WWWDIR%%/apps-pkg/logreader/l10n/es_PR.js +%%WWWDIR%%/apps-pkg/logreader/l10n/es_PR.json +%%WWWDIR%%/apps-pkg/logreader/l10n/es_PY.js +%%WWWDIR%%/apps-pkg/logreader/l10n/es_PY.json +%%WWWDIR%%/apps-pkg/logreader/l10n/es_SV.js +%%WWWDIR%%/apps-pkg/logreader/l10n/es_SV.json +%%WWWDIR%%/apps-pkg/logreader/l10n/es_UY.js +%%WWWDIR%%/apps-pkg/logreader/l10n/es_UY.json +%%WWWDIR%%/apps-pkg/logreader/l10n/et_EE.js +%%WWWDIR%%/apps-pkg/logreader/l10n/et_EE.json +%%WWWDIR%%/apps-pkg/logreader/l10n/eu.js +%%WWWDIR%%/apps-pkg/logreader/l10n/eu.json +%%WWWDIR%%/apps-pkg/logreader/l10n/fi.js +%%WWWDIR%%/apps-pkg/logreader/l10n/fi.json +%%WWWDIR%%/apps-pkg/logreader/l10n/fr.js +%%WWWDIR%%/apps-pkg/logreader/l10n/fr.json +%%WWWDIR%%/apps-pkg/logreader/l10n/hu.js +%%WWWDIR%%/apps-pkg/logreader/l10n/hu.json +%%WWWDIR%%/apps-pkg/logreader/l10n/is.js +%%WWWDIR%%/apps-pkg/logreader/l10n/is.json +%%WWWDIR%%/apps-pkg/logreader/l10n/it.js +%%WWWDIR%%/apps-pkg/logreader/l10n/it.json +%%WWWDIR%%/apps-pkg/logreader/l10n/ja.js +%%WWWDIR%%/apps-pkg/logreader/l10n/ja.json +%%WWWDIR%%/apps-pkg/logreader/l10n/ka_GE.js +%%WWWDIR%%/apps-pkg/logreader/l10n/ka_GE.json +%%WWWDIR%%/apps-pkg/logreader/l10n/ko.js +%%WWWDIR%%/apps-pkg/logreader/l10n/ko.json +%%WWWDIR%%/apps-pkg/logreader/l10n/lt_LT.js +%%WWWDIR%%/apps-pkg/logreader/l10n/lt_LT.json +%%WWWDIR%%/apps-pkg/logreader/l10n/lv.js +%%WWWDIR%%/apps-pkg/logreader/l10n/lv.json +%%WWWDIR%%/apps-pkg/logreader/l10n/nb.js +%%WWWDIR%%/apps-pkg/logreader/l10n/nb.json +%%WWWDIR%%/apps-pkg/logreader/l10n/nl.js +%%WWWDIR%%/apps-pkg/logreader/l10n/nl.json +%%WWWDIR%%/apps-pkg/logreader/l10n/pl.js +%%WWWDIR%%/apps-pkg/logreader/l10n/pl.json +%%WWWDIR%%/apps-pkg/logreader/l10n/pt_BR.js +%%WWWDIR%%/apps-pkg/logreader/l10n/pt_BR.json +%%WWWDIR%%/apps-pkg/logreader/l10n/ru.js +%%WWWDIR%%/apps-pkg/logreader/l10n/ru.json +%%WWWDIR%%/apps-pkg/logreader/l10n/sk.js +%%WWWDIR%%/apps-pkg/logreader/l10n/sk.json +%%WWWDIR%%/apps-pkg/logreader/l10n/sq.js +%%WWWDIR%%/apps-pkg/logreader/l10n/sq.json +%%WWWDIR%%/apps-pkg/logreader/l10n/sr.js +%%WWWDIR%%/apps-pkg/logreader/l10n/sr.json +%%WWWDIR%%/apps-pkg/logreader/l10n/sv.js +%%WWWDIR%%/apps-pkg/logreader/l10n/sv.json +%%WWWDIR%%/apps-pkg/logreader/l10n/tr.js +%%WWWDIR%%/apps-pkg/logreader/l10n/tr.json +%%WWWDIR%%/apps-pkg/logreader/l10n/zh_CN.js +%%WWWDIR%%/apps-pkg/logreader/l10n/zh_CN.json +%%WWWDIR%%/apps-pkg/logreader/l10n/zh_TW.js +%%WWWDIR%%/apps-pkg/logreader/l10n/zh_TW.json +%%WWWDIR%%/apps-pkg/logreader/lib/Controller/LogController.php +%%WWWDIR%%/apps-pkg/logreader/lib/Controller/PageController.php +%%WWWDIR%%/apps-pkg/logreader/lib/Log/LogIterator.php +%%WWWDIR%%/apps-pkg/logreader/lib/Log/SearchFilter.php +%%WWWDIR%%/apps-pkg/logreader/lib/Settings/Admin.php +%%WWWDIR%%/apps-pkg/logreader/lib/Settings/Section.php +%%WWWDIR%%/apps-pkg/logreader/package.json +%%WWWDIR%%/apps-pkg/logreader/screenshots/reader.png +%%WWWDIR%%/apps-pkg/logreader/templates/index.php +%%WWWDIR%%/apps-pkg/logreader/webpack/dev.config.js +%%WWWDIR%%/apps-pkg/logreader/webpack/prod.config.js +%%WWWDIR%%/apps-pkg/logreader/webpack/utils/notifyStats.js +%%WWWDIR%%/apps-pkg/logreader/webpack/utils/writeStats.js +%%WWWDIR%%/apps-pkg/logreader/webpack/webpack-dev-server.js +%%WWWDIR%%/apps-pkg/lookup_server_connector/appinfo/app.php +%%WWWDIR%%/apps-pkg/lookup_server_connector/appinfo/info.xml +%%WWWDIR%%/apps-pkg/lookup_server_connector/appinfo/signature.json +%%WWWDIR%%/apps-pkg/lookup_server_connector/composer/autoload.php +%%WWWDIR%%/apps-pkg/lookup_server_connector/composer/composer.json +%%WWWDIR%%/apps-pkg/lookup_server_connector/composer/composer/ClassLoader.php +%%WWWDIR%%/apps-pkg/lookup_server_connector/composer/composer/LICENSE +%%WWWDIR%%/apps-pkg/lookup_server_connector/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps-pkg/lookup_server_connector/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps-pkg/lookup_server_connector/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps-pkg/lookup_server_connector/composer/composer/autoload_real.php +%%WWWDIR%%/apps-pkg/lookup_server_connector/composer/composer/autoload_static.php +%%WWWDIR%%/apps-pkg/lookup_server_connector/lib/BackgroundJobs/RetryJob.php +%%WWWDIR%%/apps-pkg/lookup_server_connector/lib/UpdateLookupServer.php +%%WWWDIR%%/apps-pkg/nextcloud_announcements/.gitattributes +%%WWWDIR%%/apps-pkg/nextcloud_announcements/.github/contributing.md +%%WWWDIR%%/apps-pkg/nextcloud_announcements/.github/issue_template.md +%%WWWDIR%%/apps-pkg/nextcloud_announcements/COPYING +%%WWWDIR%%/apps-pkg/nextcloud_announcements/appinfo/app.php +%%WWWDIR%%/apps-pkg/nextcloud_announcements/appinfo/certificate.crt +%%WWWDIR%%/apps-pkg/nextcloud_announcements/appinfo/info.xml +%%WWWDIR%%/apps-pkg/nextcloud_announcements/appinfo/signature.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/img/app-dark.svg +%%WWWDIR%%/apps-pkg/nextcloud_announcements/img/app.svg +%%WWWDIR%%/apps-pkg/nextcloud_announcements/js/admin.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/.tx/config +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/af.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/af.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ar.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ar.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ast.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ast.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/bg.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/bg.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ca.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ca.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/cs.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/cs.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/da.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/da.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/de.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/de.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/de_DE.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/de_DE.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/el.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/el.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/en_GB.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/en_GB.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_419.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_419.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_AR.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_AR.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_CL.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_CL.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_CO.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_CO.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_CR.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_CR.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_DO.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_DO.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_EC.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_EC.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_GT.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_GT.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_HN.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_HN.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_MX.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_MX.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_NI.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_NI.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_PA.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_PA.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_PE.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_PE.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_PR.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_PR.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_PY.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_PY.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_SV.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_SV.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_UY.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/es_UY.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/et_EE.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/et_EE.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/eu.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/eu.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/fi.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/fi.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/fr.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/fr.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/gl.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/gl.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/hu.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/hu.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ia.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ia.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/id.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/id.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/is.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/is.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/it.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/it.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ja.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ja.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ka_GE.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ka_GE.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ko.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ko.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/lt_LT.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/lt_LT.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/lv.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/lv.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/nb.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/nb.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/nl.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/nl.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/pl.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/pl.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/pt_BR.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/pt_BR.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/pt_PT.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/pt_PT.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ro.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ro.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ru.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/ru.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/sk.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/sk.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/sl.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/sl.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/sq.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/sq.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/sr.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/sr.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/sv.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/sv.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/tr.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/tr.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/vi.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/vi.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/zh_CN.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/zh_CN.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/zh_TW.js +%%WWWDIR%%/apps-pkg/nextcloud_announcements/l10n/zh_TW.json +%%WWWDIR%%/apps-pkg/nextcloud_announcements/lib/AppInfo/Application.php +%%WWWDIR%%/apps-pkg/nextcloud_announcements/lib/Cron/Crawler.php +%%WWWDIR%%/apps-pkg/nextcloud_announcements/lib/Notification/Notifier.php +%%WWWDIR%%/apps-pkg/nextcloud_announcements/lib/Settings/Admin.php +%%WWWDIR%%/apps-pkg/nextcloud_announcements/templates/admin.php +%%WWWDIR%%/apps-pkg/notifications/COPYING +%%WWWDIR%%/apps-pkg/notifications/appinfo/app.php +%%WWWDIR%%/apps-pkg/notifications/appinfo/database.xml +%%WWWDIR%%/apps-pkg/notifications/appinfo/info.xml +%%WWWDIR%%/apps-pkg/notifications/appinfo/routes.php +%%WWWDIR%%/apps-pkg/notifications/appinfo/signature.json +%%WWWDIR%%/apps-pkg/notifications/css/styles.css +%%WWWDIR%%/apps-pkg/notifications/docs/notification-workflow.md +%%WWWDIR%%/apps-pkg/notifications/docs/ocs-endpoint-v1.md +%%WWWDIR%%/apps-pkg/notifications/docs/ocs-endpoint-v2.md +%%WWWDIR%%/apps-pkg/notifications/docs/push-v2.md +%%WWWDIR%%/apps-pkg/notifications/docs/screenshot.png +%%WWWDIR%%/apps-pkg/notifications/img/notifications-new-dark.svg +%%WWWDIR%%/apps-pkg/notifications/img/notifications-new.png +%%WWWDIR%%/apps-pkg/notifications/img/notifications-new.svg +%%WWWDIR%%/apps-pkg/notifications/img/notifications.png +%%WWWDIR%%/apps-pkg/notifications/img/notifications.svg +%%WWWDIR%%/apps-pkg/notifications/js/app.js +%%WWWDIR%%/apps-pkg/notifications/js/merged.json +%%WWWDIR%%/apps-pkg/notifications/js/notification.js +%%WWWDIR%%/apps-pkg/notifications/js/richObjectStringParser.js +%%WWWDIR%%/apps-pkg/notifications/l10n/.tx/config +%%WWWDIR%%/apps-pkg/notifications/l10n/af.js +%%WWWDIR%%/apps-pkg/notifications/l10n/af.json +%%WWWDIR%%/apps-pkg/notifications/l10n/ar.js +%%WWWDIR%%/apps-pkg/notifications/l10n/ar.json +%%WWWDIR%%/apps-pkg/notifications/l10n/ast.js +%%WWWDIR%%/apps-pkg/notifications/l10n/ast.json +%%WWWDIR%%/apps-pkg/notifications/l10n/bg.js +%%WWWDIR%%/apps-pkg/notifications/l10n/bg.json +%%WWWDIR%%/apps-pkg/notifications/l10n/ca.js +%%WWWDIR%%/apps-pkg/notifications/l10n/ca.json +%%WWWDIR%%/apps-pkg/notifications/l10n/cs.js +%%WWWDIR%%/apps-pkg/notifications/l10n/cs.json +%%WWWDIR%%/apps-pkg/notifications/l10n/da.js +%%WWWDIR%%/apps-pkg/notifications/l10n/da.json +%%WWWDIR%%/apps-pkg/notifications/l10n/de.js +%%WWWDIR%%/apps-pkg/notifications/l10n/de.json +%%WWWDIR%%/apps-pkg/notifications/l10n/de_DE.js +%%WWWDIR%%/apps-pkg/notifications/l10n/de_DE.json +%%WWWDIR%%/apps-pkg/notifications/l10n/el.js +%%WWWDIR%%/apps-pkg/notifications/l10n/el.json +%%WWWDIR%%/apps-pkg/notifications/l10n/en_GB.js +%%WWWDIR%%/apps-pkg/notifications/l10n/en_GB.json +%%WWWDIR%%/apps-pkg/notifications/l10n/es.js +%%WWWDIR%%/apps-pkg/notifications/l10n/es.json +%%WWWDIR%%/apps-pkg/notifications/l10n/es_419.js +%%WWWDIR%%/apps-pkg/notifications/l10n/es_419.json +%%WWWDIR%%/apps-pkg/notifications/l10n/es_AR.js +%%WWWDIR%%/apps-pkg/notifications/l10n/es_AR.json +%%WWWDIR%%/apps-pkg/notifications/l10n/es_CL.js +%%WWWDIR%%/apps-pkg/notifications/l10n/es_CL.json +%%WWWDIR%%/apps-pkg/notifications/l10n/es_CO.js +%%WWWDIR%%/apps-pkg/notifications/l10n/es_CO.json +%%WWWDIR%%/apps-pkg/notifications/l10n/es_CR.js +%%WWWDIR%%/apps-pkg/notifications/l10n/es_CR.json +%%WWWDIR%%/apps-pkg/notifications/l10n/es_DO.js +%%WWWDIR%%/apps-pkg/notifications/l10n/es_DO.json +%%WWWDIR%%/apps-pkg/notifications/l10n/es_EC.js +%%WWWDIR%%/apps-pkg/notifications/l10n/es_EC.json +%%WWWDIR%%/apps-pkg/notifications/l10n/es_GT.js +%%WWWDIR%%/apps-pkg/notifications/l10n/es_GT.json +%%WWWDIR%%/apps-pkg/notifications/l10n/es_HN.js +%%WWWDIR%%/apps-pkg/notifications/l10n/es_HN.json +%%WWWDIR%%/apps-pkg/notifications/l10n/es_MX.js +%%WWWDIR%%/apps-pkg/notifications/l10n/es_MX.json +%%WWWDIR%%/apps-pkg/notifications/l10n/es_NI.js +%%WWWDIR%%/apps-pkg/notifications/l10n/es_NI.json +%%WWWDIR%%/apps-pkg/notifications/l10n/es_PA.js +%%WWWDIR%%/apps-pkg/notifications/l10n/es_PA.json +%%WWWDIR%%/apps-pkg/notifications/l10n/es_PE.js +%%WWWDIR%%/apps-pkg/notifications/l10n/es_PE.json +%%WWWDIR%%/apps-pkg/notifications/l10n/es_PR.js +%%WWWDIR%%/apps-pkg/notifications/l10n/es_PR.json +%%WWWDIR%%/apps-pkg/notifications/l10n/es_PY.js +%%WWWDIR%%/apps-pkg/notifications/l10n/es_PY.json +%%WWWDIR%%/apps-pkg/notifications/l10n/es_SV.js +%%WWWDIR%%/apps-pkg/notifications/l10n/es_SV.json +%%WWWDIR%%/apps-pkg/notifications/l10n/es_UY.js +%%WWWDIR%%/apps-pkg/notifications/l10n/es_UY.json +%%WWWDIR%%/apps-pkg/notifications/l10n/et_EE.js +%%WWWDIR%%/apps-pkg/notifications/l10n/et_EE.json +%%WWWDIR%%/apps-pkg/notifications/l10n/eu.js +%%WWWDIR%%/apps-pkg/notifications/l10n/eu.json +%%WWWDIR%%/apps-pkg/notifications/l10n/fi.js +%%WWWDIR%%/apps-pkg/notifications/l10n/fi.json +%%WWWDIR%%/apps-pkg/notifications/l10n/fr.js +%%WWWDIR%%/apps-pkg/notifications/l10n/fr.json +%%WWWDIR%%/apps-pkg/notifications/l10n/gl.js +%%WWWDIR%%/apps-pkg/notifications/l10n/gl.json +%%WWWDIR%%/apps-pkg/notifications/l10n/hu.js +%%WWWDIR%%/apps-pkg/notifications/l10n/hu.json +%%WWWDIR%%/apps-pkg/notifications/l10n/ia.js +%%WWWDIR%%/apps-pkg/notifications/l10n/ia.json +%%WWWDIR%%/apps-pkg/notifications/l10n/id.js +%%WWWDIR%%/apps-pkg/notifications/l10n/id.json +%%WWWDIR%%/apps-pkg/notifications/l10n/is.js +%%WWWDIR%%/apps-pkg/notifications/l10n/is.json +%%WWWDIR%%/apps-pkg/notifications/l10n/it.js +%%WWWDIR%%/apps-pkg/notifications/l10n/it.json +%%WWWDIR%%/apps-pkg/notifications/l10n/ja.js +%%WWWDIR%%/apps-pkg/notifications/l10n/ja.json +%%WWWDIR%%/apps-pkg/notifications/l10n/ka_GE.js +%%WWWDIR%%/apps-pkg/notifications/l10n/ka_GE.json +%%WWWDIR%%/apps-pkg/notifications/l10n/ko.js +%%WWWDIR%%/apps-pkg/notifications/l10n/ko.json +%%WWWDIR%%/apps-pkg/notifications/l10n/lt_LT.js +%%WWWDIR%%/apps-pkg/notifications/l10n/lt_LT.json +%%WWWDIR%%/apps-pkg/notifications/l10n/lv.js +%%WWWDIR%%/apps-pkg/notifications/l10n/lv.json +%%WWWDIR%%/apps-pkg/notifications/l10n/mn.js +%%WWWDIR%%/apps-pkg/notifications/l10n/mn.json +%%WWWDIR%%/apps-pkg/notifications/l10n/nb.js +%%WWWDIR%%/apps-pkg/notifications/l10n/nb.json +%%WWWDIR%%/apps-pkg/notifications/l10n/nl.js +%%WWWDIR%%/apps-pkg/notifications/l10n/nl.json +%%WWWDIR%%/apps-pkg/notifications/l10n/pl.js +%%WWWDIR%%/apps-pkg/notifications/l10n/pl.json +%%WWWDIR%%/apps-pkg/notifications/l10n/pt_BR.js +%%WWWDIR%%/apps-pkg/notifications/l10n/pt_BR.json +%%WWWDIR%%/apps-pkg/notifications/l10n/pt_PT.js +%%WWWDIR%%/apps-pkg/notifications/l10n/pt_PT.json +%%WWWDIR%%/apps-pkg/notifications/l10n/ro.js +%%WWWDIR%%/apps-pkg/notifications/l10n/ro.json +%%WWWDIR%%/apps-pkg/notifications/l10n/ru.js +%%WWWDIR%%/apps-pkg/notifications/l10n/ru.json +%%WWWDIR%%/apps-pkg/notifications/l10n/sk.js +%%WWWDIR%%/apps-pkg/notifications/l10n/sk.json +%%WWWDIR%%/apps-pkg/notifications/l10n/sl.js +%%WWWDIR%%/apps-pkg/notifications/l10n/sl.json +%%WWWDIR%%/apps-pkg/notifications/l10n/sq.js +%%WWWDIR%%/apps-pkg/notifications/l10n/sq.json +%%WWWDIR%%/apps-pkg/notifications/l10n/sr.js +%%WWWDIR%%/apps-pkg/notifications/l10n/sr.json +%%WWWDIR%%/apps-pkg/notifications/l10n/sv.js +%%WWWDIR%%/apps-pkg/notifications/l10n/sv.json +%%WWWDIR%%/apps-pkg/notifications/l10n/tr.js +%%WWWDIR%%/apps-pkg/notifications/l10n/tr.json +%%WWWDIR%%/apps-pkg/notifications/l10n/uk.js +%%WWWDIR%%/apps-pkg/notifications/l10n/uk.json +%%WWWDIR%%/apps-pkg/notifications/l10n/vi.js +%%WWWDIR%%/apps-pkg/notifications/l10n/vi.json +%%WWWDIR%%/apps-pkg/notifications/l10n/zh_CN.js +%%WWWDIR%%/apps-pkg/notifications/l10n/zh_CN.json +%%WWWDIR%%/apps-pkg/notifications/l10n/zh_TW.js +%%WWWDIR%%/apps-pkg/notifications/l10n/zh_TW.json +%%WWWDIR%%/apps-pkg/notifications/lib/App.php +%%WWWDIR%%/apps-pkg/notifications/lib/AppInfo/Application.php +%%WWWDIR%%/apps-pkg/notifications/lib/Capabilities.php +%%WWWDIR%%/apps-pkg/notifications/lib/Controller/EndpointController.php +%%WWWDIR%%/apps-pkg/notifications/lib/Controller/PushController.php +%%WWWDIR%%/apps-pkg/notifications/lib/Handler.php +%%WWWDIR%%/apps-pkg/notifications/lib/Push.php +%%WWWDIR%%/apps-pkg/oauth2/appinfo/database.xml +%%WWWDIR%%/apps-pkg/oauth2/appinfo/info.xml +%%WWWDIR%%/apps-pkg/oauth2/appinfo/routes.php +%%WWWDIR%%/apps-pkg/oauth2/appinfo/signature.json +%%WWWDIR%%/apps-pkg/oauth2/composer/autoload.php +%%WWWDIR%%/apps-pkg/oauth2/composer/composer.json +%%WWWDIR%%/apps-pkg/oauth2/composer/composer/ClassLoader.php +%%WWWDIR%%/apps-pkg/oauth2/composer/composer/LICENSE +%%WWWDIR%%/apps-pkg/oauth2/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps-pkg/oauth2/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps-pkg/oauth2/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps-pkg/oauth2/composer/composer/autoload_real.php +%%WWWDIR%%/apps-pkg/oauth2/composer/composer/autoload_static.php +%%WWWDIR%%/apps-pkg/oauth2/css/setting-admin.css +%%WWWDIR%%/apps-pkg/oauth2/js/setting-admin.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/.gitkeep +%%WWWDIR%%/apps-pkg/oauth2/l10n/af.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/af.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/ar.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/ar.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/ast.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/ast.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/ca.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/ca.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/cs.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/cs.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/da.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/da.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/de.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/de.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/de_DE.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/de_DE.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/el.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/el.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/en_GB.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/en_GB.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/es.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/es.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_419.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_419.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_AR.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_AR.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_CL.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_CL.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_CO.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_CO.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_CR.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_CR.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_DO.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_DO.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_EC.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_EC.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_GT.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_GT.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_HN.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_HN.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_MX.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_MX.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_NI.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_NI.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_PA.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_PA.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_PE.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_PE.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_PR.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_PR.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_PY.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_PY.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_SV.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_SV.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_UY.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/es_UY.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/et_EE.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/et_EE.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/eu.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/eu.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/fi.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/fi.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/fr.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/fr.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/gl.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/gl.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/hu.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/hu.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/id.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/id.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/is.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/is.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/it.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/it.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/ja.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/ja.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/ka_GE.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/ka_GE.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/ko.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/ko.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/lt_LT.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/lt_LT.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/lv.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/lv.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/nb.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/nb.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/nl.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/nl.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/pl.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/pl.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/pt_BR.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/pt_BR.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/pt_PT.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/pt_PT.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/ru.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/ru.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/sk.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/sk.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/sq.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/sq.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/sr.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/sr.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/sv.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/sv.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/tr.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/tr.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/vi.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/vi.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/zh_CN.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/zh_CN.json +%%WWWDIR%%/apps-pkg/oauth2/l10n/zh_TW.js +%%WWWDIR%%/apps-pkg/oauth2/l10n/zh_TW.json +%%WWWDIR%%/apps-pkg/oauth2/lib/Controller/LoginRedirectorController.php +%%WWWDIR%%/apps-pkg/oauth2/lib/Controller/OauthApiController.php +%%WWWDIR%%/apps-pkg/oauth2/lib/Controller/SettingsController.php +%%WWWDIR%%/apps-pkg/oauth2/lib/Db/AccessToken.php +%%WWWDIR%%/apps-pkg/oauth2/lib/Db/AccessTokenMapper.php +%%WWWDIR%%/apps-pkg/oauth2/lib/Db/Client.php +%%WWWDIR%%/apps-pkg/oauth2/lib/Db/ClientMapper.php +%%WWWDIR%%/apps-pkg/oauth2/lib/Exceptions/AccessTokenNotFoundException.php +%%WWWDIR%%/apps-pkg/oauth2/lib/Exceptions/ClientNotFoundException.php +%%WWWDIR%%/apps-pkg/oauth2/lib/Settings/Admin.php +%%WWWDIR%%/apps-pkg/oauth2/templates/admin.php +%%WWWDIR%%/apps-pkg/password_policy/.github/contributing.md +%%WWWDIR%%/apps-pkg/password_policy/.github/issue_template.md +%%WWWDIR%%/apps-pkg/password_policy/LICENSE +%%WWWDIR%%/apps-pkg/password_policy/appinfo/app.php +%%WWWDIR%%/apps-pkg/password_policy/appinfo/info.xml +%%WWWDIR%%/apps-pkg/password_policy/appinfo/signature.json +%%WWWDIR%%/apps-pkg/password_policy/css/settings-admin.css +%%WWWDIR%%/apps-pkg/password_policy/img/app.svg +%%WWWDIR%%/apps-pkg/password_policy/js/settings-admin.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/.tx/config +%%WWWDIR%%/apps-pkg/password_policy/l10n/af.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/af.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/ast.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/ast.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/bg.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/bg.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/ca.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/ca.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/cs.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/cs.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/da.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/da.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/de.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/de.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/de_DE.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/de_DE.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/el.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/el.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/en_GB.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/en_GB.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/es.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/es.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_419.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_419.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_AR.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_AR.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_CL.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_CL.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_CO.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_CO.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_CR.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_CR.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_DO.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_DO.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_EC.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_EC.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_GT.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_GT.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_HN.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_HN.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_MX.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_MX.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_NI.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_NI.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_PA.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_PA.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_PE.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_PE.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_PR.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_PR.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_PY.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_PY.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_SV.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_SV.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_UY.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/es_UY.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/et_EE.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/et_EE.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/eu.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/eu.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/fi.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/fi.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/fr.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/fr.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/gl.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/gl.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/hu.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/hu.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/ia.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/ia.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/id.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/id.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/is.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/is.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/it.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/it.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/ja.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/ja.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/ka_GE.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/ka_GE.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/ko.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/ko.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/lt_LT.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/lt_LT.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/lv.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/lv.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/mn.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/mn.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/nb.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/nb.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/nl.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/nl.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/pl.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/pl.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/pt_BR.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/pt_BR.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/pt_PT.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/pt_PT.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/ru.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/ru.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/sk.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/sk.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/sl.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/sl.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/sq.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/sq.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/sr.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/sr.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/sv.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/sv.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/tr.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/tr.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/zh_CN.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/zh_CN.json +%%WWWDIR%%/apps-pkg/password_policy/l10n/zh_TW.js +%%WWWDIR%%/apps-pkg/password_policy/l10n/zh_TW.json +%%WWWDIR%%/apps-pkg/password_policy/lib/AppInfo/Application.php +%%WWWDIR%%/apps-pkg/password_policy/lib/Capabilities.php +%%WWWDIR%%/apps-pkg/password_policy/lib/PasswordPolicyConfig.php +%%WWWDIR%%/apps-pkg/password_policy/lib/PasswordValidator.php +%%WWWDIR%%/apps-pkg/password_policy/lib/Settings.php +%%WWWDIR%%/apps-pkg/password_policy/lists/README.md +%%WWWDIR%%/apps-pkg/password_policy/lists/converter.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-1.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-10.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-11.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-12.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-13.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-14.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-15.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-16.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-17.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-18.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-19.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-20.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-21.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-22.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-23.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-24.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-25.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-26.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-27.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-28.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-29.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-3.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-30.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-31.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-32.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-33.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-35.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-36.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-37.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-39.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-4.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-5.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-6.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-7.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-8.php +%%WWWDIR%%/apps-pkg/password_policy/lists/list-9.php +%%WWWDIR%%/apps-pkg/password_policy/templates/settings-admin.php +%%WWWDIR%%/apps-pkg/provisioning_api/appinfo/info.xml +%%WWWDIR%%/apps-pkg/provisioning_api/appinfo/routes.php +%%WWWDIR%%/apps-pkg/provisioning_api/appinfo/signature.json +%%WWWDIR%%/apps-pkg/provisioning_api/composer/autoload.php +%%WWWDIR%%/apps-pkg/provisioning_api/composer/composer.json +%%WWWDIR%%/apps-pkg/provisioning_api/composer/composer/ClassLoader.php +%%WWWDIR%%/apps-pkg/provisioning_api/composer/composer/LICENSE +%%WWWDIR%%/apps-pkg/provisioning_api/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps-pkg/provisioning_api/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps-pkg/provisioning_api/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps-pkg/provisioning_api/composer/composer/autoload_real.php +%%WWWDIR%%/apps-pkg/provisioning_api/composer/composer/autoload_static.php +%%WWWDIR%%/apps-pkg/provisioning_api/img/app.svg +%%WWWDIR%%/apps-pkg/provisioning_api/lib/AppInfo/Application.php +%%WWWDIR%%/apps-pkg/provisioning_api/lib/Controller/AppConfigController.php +%%WWWDIR%%/apps-pkg/provisioning_api/lib/Controller/AppsController.php +%%WWWDIR%%/apps-pkg/provisioning_api/lib/Controller/GroupsController.php +%%WWWDIR%%/apps-pkg/provisioning_api/lib/Controller/UsersController.php +%%WWWDIR%%/apps-pkg/provisioning_api/lib/Middleware/Exceptions/NotSubAdminException.php +%%WWWDIR%%/apps-pkg/provisioning_api/lib/Middleware/ProvisioningApiMiddleware.php +%%WWWDIR%%/apps-pkg/serverinfo/.github/contributing.md +%%WWWDIR%%/apps-pkg/serverinfo/.github/issue_template.md +%%WWWDIR%%/apps-pkg/serverinfo/AUTHORS.md +%%WWWDIR%%/apps-pkg/serverinfo/CHANGELOG.md +%%WWWDIR%%/apps-pkg/serverinfo/COPYING +%%WWWDIR%%/apps-pkg/serverinfo/appinfo/app.php +%%WWWDIR%%/apps-pkg/serverinfo/appinfo/info.xml +%%WWWDIR%%/apps-pkg/serverinfo/appinfo/routes.php +%%WWWDIR%%/apps-pkg/serverinfo/appinfo/signature.json +%%WWWDIR%%/apps-pkg/serverinfo/css/style.css +%%WWWDIR%%/apps-pkg/serverinfo/img/app-dark.svg +%%WWWDIR%%/apps-pkg/serverinfo/img/app.svg +%%WWWDIR%%/apps-pkg/serverinfo/js/Chart.min.js +%%WWWDIR%%/apps-pkg/serverinfo/js/script.js +%%WWWDIR%%/apps-pkg/serverinfo/js/smoothie.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/.tx/config +%%WWWDIR%%/apps-pkg/serverinfo/l10n/af.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/af.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/ar.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/ar.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/ast.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/ast.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/bg.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/bg.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/ca.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/ca.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/cs.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/cs.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/da.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/da.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/de.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/de.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/de_DE.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/de_DE.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/el.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/el.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/en_GB.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/en_GB.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_419.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_419.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_AR.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_AR.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_CL.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_CL.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_CO.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_CO.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_CR.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_CR.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_DO.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_DO.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_EC.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_EC.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_GT.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_GT.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_HN.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_HN.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_MX.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_MX.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_NI.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_NI.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_PA.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_PA.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_PE.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_PE.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_PR.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_PR.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_PY.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_PY.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_SV.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_SV.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_UY.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/es_UY.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/et_EE.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/et_EE.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/eu.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/eu.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/fi.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/fi.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/fr.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/fr.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/gl.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/gl.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/hu.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/hu.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/ia.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/ia.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/id.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/id.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/is.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/is.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/it.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/it.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/ja.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/ja.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/ka_GE.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/ka_GE.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/ko.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/ko.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/lt_LT.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/lt_LT.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/lv.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/lv.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/mn.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/mn.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/nb.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/nb.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/nl.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/nl.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/nn_NO.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/nn_NO.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/pl.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/pl.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/pt_BR.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/pt_BR.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/pt_PT.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/pt_PT.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/ru.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/ru.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/sk.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/sk.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/sl.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/sl.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/sq.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/sq.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/sr.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/sr.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/sv.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/sv.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/tr.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/tr.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/vi.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/vi.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/zh_CN.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/zh_CN.json +%%WWWDIR%%/apps-pkg/serverinfo/l10n/zh_TW.js +%%WWWDIR%%/apps-pkg/serverinfo/l10n/zh_TW.json +%%WWWDIR%%/apps-pkg/serverinfo/lib/Controller/ApiController.php +%%WWWDIR%%/apps-pkg/serverinfo/lib/Controller/PageController.php +%%WWWDIR%%/apps-pkg/serverinfo/lib/DatabaseStatistics.php +%%WWWDIR%%/apps-pkg/serverinfo/lib/PhpStatistics.php +%%WWWDIR%%/apps-pkg/serverinfo/lib/SessionStatistics.php +%%WWWDIR%%/apps-pkg/serverinfo/lib/Settings/AdminSection.php +%%WWWDIR%%/apps-pkg/serverinfo/lib/Settings/AdminSettings.php +%%WWWDIR%%/apps-pkg/serverinfo/lib/ShareStatistics.php +%%WWWDIR%%/apps-pkg/serverinfo/lib/StorageStatistics.php +%%WWWDIR%%/apps-pkg/serverinfo/lib/SystemStatistics.php +%%WWWDIR%%/apps-pkg/serverinfo/templates/settings-admin.php +%%WWWDIR%%/apps-pkg/sharebymail/appinfo/app.php +%%WWWDIR%%/apps-pkg/sharebymail/appinfo/info.xml +%%WWWDIR%%/apps-pkg/sharebymail/appinfo/signature.json +%%WWWDIR%%/apps-pkg/sharebymail/composer/autoload.php +%%WWWDIR%%/apps-pkg/sharebymail/composer/composer.json +%%WWWDIR%%/apps-pkg/sharebymail/composer/composer/ClassLoader.php +%%WWWDIR%%/apps-pkg/sharebymail/composer/composer/LICENSE +%%WWWDIR%%/apps-pkg/sharebymail/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps-pkg/sharebymail/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps-pkg/sharebymail/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps-pkg/sharebymail/composer/composer/autoload_real.php +%%WWWDIR%%/apps-pkg/sharebymail/composer/composer/autoload_static.php +%%WWWDIR%%/apps-pkg/sharebymail/css/settings-admin.css +%%WWWDIR%%/apps-pkg/sharebymail/img/app.svg +%%WWWDIR%%/apps-pkg/sharebymail/js/settings-admin.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/.gitkeep +%%WWWDIR%%/apps-pkg/sharebymail/l10n/ast.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/ast.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/ca.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/ca.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/cs.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/cs.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/cs_CZ.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/cs_CZ.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/da.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/da.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/de.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/de.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/de_DE.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/de_DE.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/el.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/el.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/en_GB.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/en_GB.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_419.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_419.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_AR.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_AR.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_CL.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_CL.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_CO.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_CO.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_CR.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_CR.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_DO.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_DO.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_EC.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_EC.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_GT.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_GT.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_HN.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_HN.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_MX.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_MX.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_NI.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_NI.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_PA.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_PA.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_PE.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_PE.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_PR.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_PR.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_PY.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_PY.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_SV.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_SV.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_UY.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/es_UY.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/et_EE.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/et_EE.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/fi.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/fi.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/fr.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/fr.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/gl.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/gl.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/hu.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/hu.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/ia.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/ia.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/id.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/id.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/is.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/is.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/it.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/it.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/ja.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/ja.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/ka_GE.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/ka_GE.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/ko.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/ko.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/lt_LT.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/lt_LT.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/nb.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/nb.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/nb_NO.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/nb_NO.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/nl.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/nl.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/pl.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/pl.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/pt_BR.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/pt_BR.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/pt_PT.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/pt_PT.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/ru.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/ru.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/sk.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/sk.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/sk_SK.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/sk_SK.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/sq.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/sq.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/sr.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/sr.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/sv.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/sv.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/tr.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/tr.json +%%WWWDIR%%/apps-pkg/sharebymail/l10n/zh_CN.js +%%WWWDIR%%/apps-pkg/sharebymail/l10n/zh_CN.json +%%WWWDIR%%/apps-pkg/sharebymail/lib/Activity.php +%%WWWDIR%%/apps-pkg/sharebymail/lib/AppInfo/Application.php +%%WWWDIR%%/apps-pkg/sharebymail/lib/Capabilities.php +%%WWWDIR%%/apps-pkg/sharebymail/lib/Settings.php +%%WWWDIR%%/apps-pkg/sharebymail/lib/Settings/Admin.php +%%WWWDIR%%/apps-pkg/sharebymail/lib/Settings/SettingsManager.php +%%WWWDIR%%/apps-pkg/sharebymail/lib/ShareByMailProvider.php +%%WWWDIR%%/apps-pkg/sharebymail/templates/settings-admin.php +%%WWWDIR%%/apps-pkg/survey_client/COPYING +%%WWWDIR%%/apps-pkg/survey_client/ISSUE_TEMPLATE.md +%%WWWDIR%%/apps-pkg/survey_client/appinfo/app.php +%%WWWDIR%%/apps-pkg/survey_client/appinfo/info.xml +%%WWWDIR%%/apps-pkg/survey_client/appinfo/install.php +%%WWWDIR%%/apps-pkg/survey_client/appinfo/routes.php +%%WWWDIR%%/apps-pkg/survey_client/appinfo/signature.json +%%WWWDIR%%/apps-pkg/survey_client/appinfo/update.php +%%WWWDIR%%/apps-pkg/survey_client/css/admin.css +%%WWWDIR%%/apps-pkg/survey_client/img/app-dark.svg +%%WWWDIR%%/apps-pkg/survey_client/img/app.svg +%%WWWDIR%%/apps-pkg/survey_client/js/admin.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/.tx/config +%%WWWDIR%%/apps-pkg/survey_client/l10n/ast.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/ast.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/ca.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/ca.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/cs.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/cs.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/da.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/da.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/de.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/de.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/de_DE.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/de_DE.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/el.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/el.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/en_GB.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/en_GB.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/es.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/es.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/es_419.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/es_419.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/es_CL.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/es_CL.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/es_CO.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/es_CO.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/es_CR.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/es_CR.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/es_DO.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/es_DO.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/es_EC.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/es_EC.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/es_GT.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/es_GT.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/es_HN.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/es_HN.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/es_MX.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/es_MX.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/es_NI.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/es_NI.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/es_PA.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/es_PA.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/es_PE.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/es_PE.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/es_PR.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/es_PR.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/es_PY.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/es_PY.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/es_SV.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/es_SV.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/es_UY.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/es_UY.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/et_EE.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/et_EE.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/fi.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/fi.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/fr.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/fr.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/hu.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/hu.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/is.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/is.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/it.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/it.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/ja.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/ja.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/ka_GE.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/ka_GE.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/ko.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/ko.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/lt_LT.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/lt_LT.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/lv.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/lv.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/mn.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/mn.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/nb.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/nb.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/nl.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/nl.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/pl.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/pl.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/pt_BR.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/pt_BR.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/pt_PT.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/pt_PT.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/ru.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/ru.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/sk.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/sk.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/sq.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/sq.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/sr.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/sr.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/sv.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/sv.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/th.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/th.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/tr.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/tr.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/zh_CN.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/zh_CN.json +%%WWWDIR%%/apps-pkg/survey_client/lib/AppInfo/Application.php +%%WWWDIR%%/apps-pkg/survey_client/lib/BackgroundJobs/AdminNotification.php +%%WWWDIR%%/apps-pkg/survey_client/lib/BackgroundJobs/MonthlyReport.php +%%WWWDIR%%/apps-pkg/survey_client/lib/Categories/Apps.php +%%WWWDIR%%/apps-pkg/survey_client/lib/Categories/Database.php +%%WWWDIR%%/apps-pkg/survey_client/lib/Categories/Encryption.php +%%WWWDIR%%/apps-pkg/survey_client/lib/Categories/FilesSharing.php +%%WWWDIR%%/apps-pkg/survey_client/lib/Categories/ICategory.php +%%WWWDIR%%/apps-pkg/survey_client/lib/Categories/Php.php +%%WWWDIR%%/apps-pkg/survey_client/lib/Categories/Server.php +%%WWWDIR%%/apps-pkg/survey_client/lib/Categories/Stats.php +%%WWWDIR%%/apps-pkg/survey_client/lib/Collector.php +%%WWWDIR%%/apps-pkg/survey_client/lib/Controller/EndpointController.php +%%WWWDIR%%/apps-pkg/survey_client/lib/Notifier.php +%%WWWDIR%%/apps-pkg/survey_client/lib/Settings/AdminSection.php +%%WWWDIR%%/apps-pkg/survey_client/lib/Settings/AdminSettings.php +%%WWWDIR%%/apps-pkg/survey_client/templates/admin.php +%%WWWDIR%%/apps-pkg/systemtags/appinfo/app.php +%%WWWDIR%%/apps-pkg/systemtags/appinfo/info.xml +%%WWWDIR%%/apps-pkg/systemtags/appinfo/routes.php +%%WWWDIR%%/apps-pkg/systemtags/appinfo/signature.json +%%WWWDIR%%/apps-pkg/systemtags/composer/autoload.php +%%WWWDIR%%/apps-pkg/systemtags/composer/composer.json +%%WWWDIR%%/apps-pkg/systemtags/composer/composer/ClassLoader.php +%%WWWDIR%%/apps-pkg/systemtags/composer/composer/LICENSE +%%WWWDIR%%/apps-pkg/systemtags/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps-pkg/systemtags/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps-pkg/systemtags/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps-pkg/systemtags/composer/composer/autoload_real.php +%%WWWDIR%%/apps-pkg/systemtags/composer/composer/autoload_static.php +%%WWWDIR%%/apps-pkg/systemtags/css/systemtagsfilelist.css +%%WWWDIR%%/apps-pkg/systemtags/img/app.svg +%%WWWDIR%%/apps-pkg/systemtags/img/tag.svg +%%WWWDIR%%/apps-pkg/systemtags/js/admin.js +%%WWWDIR%%/apps-pkg/systemtags/js/app.js +%%WWWDIR%%/apps-pkg/systemtags/js/filesplugin.js +%%WWWDIR%%/apps-pkg/systemtags/js/merged.json +%%WWWDIR%%/apps-pkg/systemtags/js/systemtagsfilelist.js +%%WWWDIR%%/apps-pkg/systemtags/js/systemtagsinfoview.js +%%WWWDIR%%/apps-pkg/systemtags/js/systemtagsinfoviewtoggleview.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/.gitkeep +%%WWWDIR%%/apps-pkg/systemtags/l10n/ar.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/ar.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/ast.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/ast.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/az.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/az.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/bg.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/bg.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/bg_BG.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/bg_BG.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/bn_BD.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/bn_BD.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/bn_IN.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/bn_IN.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/bs.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/bs.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/ca.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/ca.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/cs.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/cs.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/cs_CZ.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/cs_CZ.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/cy_GB.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/cy_GB.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/da.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/da.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/de.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/de.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/de_AT.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/de_AT.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/de_DE.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/de_DE.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/el.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/el.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/en_GB.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/en_GB.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/eo.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/eo.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/es.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/es.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_419.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_419.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_AR.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_AR.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_CL.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_CL.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_CO.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_CO.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_CR.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_CR.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_DO.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_DO.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_EC.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_EC.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_GT.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_GT.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_HN.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_HN.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_MX.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_MX.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_NI.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_NI.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_PA.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_PA.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_PE.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_PE.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_PR.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_PR.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_PY.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_PY.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_SV.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_SV.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_UY.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/es_UY.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/et_EE.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/et_EE.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/eu.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/eu.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/fa.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/fa.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/fi.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/fi.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/fi_FI.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/fi_FI.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/fr.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/fr.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/gl.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/gl.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/he.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/he.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/hr.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/hr.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/hu.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/hu.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/hu_HU.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/hu_HU.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/hy.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/hy.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/ia.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/ia.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/id.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/id.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/is.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/is.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/it.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/it.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/ja.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/ja.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/ka_GE.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/ka_GE.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/km.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/km.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/kn.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/kn.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/ko.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/ko.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/ku_IQ.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/ku_IQ.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/lb.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/lb.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/lt_LT.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/lt_LT.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/lv.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/lv.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/mk.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/mk.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/ms_MY.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/ms_MY.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/nb.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/nb.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/nb_NO.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/nb_NO.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/nds.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/nds.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/nl.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/nl.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/nn_NO.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/nn_NO.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/oc.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/oc.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/pl.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/pl.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/pt_BR.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/pt_BR.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/pt_PT.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/pt_PT.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/ro.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/ro.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/ru.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/ru.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/si_LK.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/si_LK.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/sk.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/sk.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/sk_SK.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/sk_SK.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/sl.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/sl.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/sq.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/sq.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/sr.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/sr.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/sr@latin.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/sr@latin.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/sv.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/sv.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/ta_LK.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/ta_LK.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/te.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/te.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/th_TH.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/th_TH.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/tr.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/tr.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/ug.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/ug.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/uk.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/uk.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/ur_PK.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/ur_PK.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/vi.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/vi.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/zh_CN.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/zh_CN.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/zh_HK.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/zh_HK.json +%%WWWDIR%%/apps-pkg/systemtags/l10n/zh_TW.js +%%WWWDIR%%/apps-pkg/systemtags/l10n/zh_TW.json +%%WWWDIR%%/apps-pkg/systemtags/lib/Activity/Listener.php +%%WWWDIR%%/apps-pkg/systemtags/lib/Activity/Provider.php +%%WWWDIR%%/apps-pkg/systemtags/lib/Activity/Setting.php +%%WWWDIR%%/apps-pkg/systemtags/lib/Controller/LastUsedController.php +%%WWWDIR%%/apps-pkg/systemtags/lib/Settings/Admin.php +%%WWWDIR%%/apps-pkg/systemtags/list.php +%%WWWDIR%%/apps-pkg/systemtags/templates/admin.php +%%WWWDIR%%/apps-pkg/systemtags/templates/list.php +%%WWWDIR%%/apps-pkg/theming/appinfo/app.php +%%WWWDIR%%/apps-pkg/theming/appinfo/info.xml +%%WWWDIR%%/apps-pkg/theming/appinfo/routes.php +%%WWWDIR%%/apps-pkg/theming/appinfo/signature.json +%%WWWDIR%%/apps-pkg/theming/css/settings-admin.css +%%WWWDIR%%/apps-pkg/theming/css/theming.scss +%%WWWDIR%%/apps-pkg/theming/img/app-dark.svg +%%WWWDIR%%/apps-pkg/theming/img/app.svg +%%WWWDIR%%/apps-pkg/theming/js/3rdparty/jscolor/LICENSE.txt +%%WWWDIR%%/apps-pkg/theming/js/3rdparty/jscolor/jscolor.js +%%WWWDIR%%/apps-pkg/theming/js/3rdparty/jscolor/jscolor.min.js +%%WWWDIR%%/apps-pkg/theming/js/settings-admin.js +%%WWWDIR%%/apps-pkg/theming/l10n/.gitkeep +%%WWWDIR%%/apps-pkg/theming/l10n/af.js +%%WWWDIR%%/apps-pkg/theming/l10n/af.json +%%WWWDIR%%/apps-pkg/theming/l10n/ar.js +%%WWWDIR%%/apps-pkg/theming/l10n/ar.json +%%WWWDIR%%/apps-pkg/theming/l10n/ast.js +%%WWWDIR%%/apps-pkg/theming/l10n/ast.json +%%WWWDIR%%/apps-pkg/theming/l10n/bg.js +%%WWWDIR%%/apps-pkg/theming/l10n/bg.json +%%WWWDIR%%/apps-pkg/theming/l10n/ca.js +%%WWWDIR%%/apps-pkg/theming/l10n/ca.json +%%WWWDIR%%/apps-pkg/theming/l10n/cs.js +%%WWWDIR%%/apps-pkg/theming/l10n/cs.json +%%WWWDIR%%/apps-pkg/theming/l10n/da.js +%%WWWDIR%%/apps-pkg/theming/l10n/da.json +%%WWWDIR%%/apps-pkg/theming/l10n/de.js +%%WWWDIR%%/apps-pkg/theming/l10n/de.json +%%WWWDIR%%/apps-pkg/theming/l10n/de_DE.js +%%WWWDIR%%/apps-pkg/theming/l10n/de_DE.json +%%WWWDIR%%/apps-pkg/theming/l10n/el.js +%%WWWDIR%%/apps-pkg/theming/l10n/el.json +%%WWWDIR%%/apps-pkg/theming/l10n/en_GB.js +%%WWWDIR%%/apps-pkg/theming/l10n/en_GB.json +%%WWWDIR%%/apps-pkg/theming/l10n/es.js +%%WWWDIR%%/apps-pkg/theming/l10n/es.json +%%WWWDIR%%/apps-pkg/theming/l10n/es_419.js +%%WWWDIR%%/apps-pkg/theming/l10n/es_419.json +%%WWWDIR%%/apps-pkg/theming/l10n/es_AR.js +%%WWWDIR%%/apps-pkg/theming/l10n/es_AR.json +%%WWWDIR%%/apps-pkg/theming/l10n/es_CL.js +%%WWWDIR%%/apps-pkg/theming/l10n/es_CL.json +%%WWWDIR%%/apps-pkg/theming/l10n/es_CO.js +%%WWWDIR%%/apps-pkg/theming/l10n/es_CO.json +%%WWWDIR%%/apps-pkg/theming/l10n/es_CR.js +%%WWWDIR%%/apps-pkg/theming/l10n/es_CR.json +%%WWWDIR%%/apps-pkg/theming/l10n/es_DO.js +%%WWWDIR%%/apps-pkg/theming/l10n/es_DO.json +%%WWWDIR%%/apps-pkg/theming/l10n/es_EC.js +%%WWWDIR%%/apps-pkg/theming/l10n/es_EC.json +%%WWWDIR%%/apps-pkg/theming/l10n/es_GT.js +%%WWWDIR%%/apps-pkg/theming/l10n/es_GT.json +%%WWWDIR%%/apps-pkg/theming/l10n/es_HN.js +%%WWWDIR%%/apps-pkg/theming/l10n/es_HN.json +%%WWWDIR%%/apps-pkg/theming/l10n/es_MX.js +%%WWWDIR%%/apps-pkg/theming/l10n/es_MX.json +%%WWWDIR%%/apps-pkg/theming/l10n/es_NI.js +%%WWWDIR%%/apps-pkg/theming/l10n/es_NI.json +%%WWWDIR%%/apps-pkg/theming/l10n/es_PA.js +%%WWWDIR%%/apps-pkg/theming/l10n/es_PA.json +%%WWWDIR%%/apps-pkg/theming/l10n/es_PE.js +%%WWWDIR%%/apps-pkg/theming/l10n/es_PE.json +%%WWWDIR%%/apps-pkg/theming/l10n/es_PR.js +%%WWWDIR%%/apps-pkg/theming/l10n/es_PR.json +%%WWWDIR%%/apps-pkg/theming/l10n/es_PY.js +%%WWWDIR%%/apps-pkg/theming/l10n/es_PY.json +%%WWWDIR%%/apps-pkg/theming/l10n/es_SV.js +%%WWWDIR%%/apps-pkg/theming/l10n/es_SV.json +%%WWWDIR%%/apps-pkg/theming/l10n/es_UY.js +%%WWWDIR%%/apps-pkg/theming/l10n/es_UY.json +%%WWWDIR%%/apps-pkg/theming/l10n/et_EE.js +%%WWWDIR%%/apps-pkg/theming/l10n/et_EE.json +%%WWWDIR%%/apps-pkg/theming/l10n/fi.js +%%WWWDIR%%/apps-pkg/theming/l10n/fi.json +%%WWWDIR%%/apps-pkg/theming/l10n/fr.js +%%WWWDIR%%/apps-pkg/theming/l10n/fr.json +%%WWWDIR%%/apps-pkg/theming/l10n/gl.js +%%WWWDIR%%/apps-pkg/theming/l10n/gl.json +%%WWWDIR%%/apps-pkg/theming/l10n/hu.js +%%WWWDIR%%/apps-pkg/theming/l10n/hu.json +%%WWWDIR%%/apps-pkg/theming/l10n/id.js +%%WWWDIR%%/apps-pkg/theming/l10n/id.json +%%WWWDIR%%/apps-pkg/theming/l10n/is.js +%%WWWDIR%%/apps-pkg/theming/l10n/is.json +%%WWWDIR%%/apps-pkg/theming/l10n/it.js +%%WWWDIR%%/apps-pkg/theming/l10n/it.json +%%WWWDIR%%/apps-pkg/theming/l10n/ja.js +%%WWWDIR%%/apps-pkg/theming/l10n/ja.json +%%WWWDIR%%/apps-pkg/theming/l10n/ka_GE.js +%%WWWDIR%%/apps-pkg/theming/l10n/ka_GE.json +%%WWWDIR%%/apps-pkg/theming/l10n/ko.js +%%WWWDIR%%/apps-pkg/theming/l10n/ko.json +%%WWWDIR%%/apps-pkg/theming/l10n/lt_LT.js +%%WWWDIR%%/apps-pkg/theming/l10n/lt_LT.json +%%WWWDIR%%/apps-pkg/theming/l10n/lv.js +%%WWWDIR%%/apps-pkg/theming/l10n/lv.json +%%WWWDIR%%/apps-pkg/theming/l10n/mn.js +%%WWWDIR%%/apps-pkg/theming/l10n/mn.json +%%WWWDIR%%/apps-pkg/theming/l10n/nb.js +%%WWWDIR%%/apps-pkg/theming/l10n/nb.json +%%WWWDIR%%/apps-pkg/theming/l10n/nl.js +%%WWWDIR%%/apps-pkg/theming/l10n/nl.json +%%WWWDIR%%/apps-pkg/theming/l10n/pl.js +%%WWWDIR%%/apps-pkg/theming/l10n/pl.json +%%WWWDIR%%/apps-pkg/theming/l10n/pt_BR.js +%%WWWDIR%%/apps-pkg/theming/l10n/pt_BR.json +%%WWWDIR%%/apps-pkg/theming/l10n/pt_PT.js +%%WWWDIR%%/apps-pkg/theming/l10n/pt_PT.json +%%WWWDIR%%/apps-pkg/theming/l10n/ru.js +%%WWWDIR%%/apps-pkg/theming/l10n/ru.json +%%WWWDIR%%/apps-pkg/theming/l10n/sk.js +%%WWWDIR%%/apps-pkg/theming/l10n/sk.json +%%WWWDIR%%/apps-pkg/theming/l10n/sl.js +%%WWWDIR%%/apps-pkg/theming/l10n/sl.json +%%WWWDIR%%/apps-pkg/theming/l10n/sq.js +%%WWWDIR%%/apps-pkg/theming/l10n/sq.json +%%WWWDIR%%/apps-pkg/theming/l10n/sr.js +%%WWWDIR%%/apps-pkg/theming/l10n/sr.json +%%WWWDIR%%/apps-pkg/theming/l10n/sv.js +%%WWWDIR%%/apps-pkg/theming/l10n/sv.json +%%WWWDIR%%/apps-pkg/theming/l10n/tr.js +%%WWWDIR%%/apps-pkg/theming/l10n/tr.json +%%WWWDIR%%/apps-pkg/theming/l10n/vi.js +%%WWWDIR%%/apps-pkg/theming/l10n/vi.json +%%WWWDIR%%/apps-pkg/theming/l10n/zh_CN.js +%%WWWDIR%%/apps-pkg/theming/l10n/zh_CN.json +%%WWWDIR%%/apps-pkg/theming/l10n/zh_TW.js +%%WWWDIR%%/apps-pkg/theming/l10n/zh_TW.json +%%WWWDIR%%/apps-pkg/theming/lib/Capabilities.php +%%WWWDIR%%/apps-pkg/theming/lib/Controller/IconController.php +%%WWWDIR%%/apps-pkg/theming/lib/Controller/ThemingController.php +%%WWWDIR%%/apps-pkg/theming/lib/IconBuilder.php +%%WWWDIR%%/apps-pkg/theming/lib/ImageManager.php +%%WWWDIR%%/apps-pkg/theming/lib/Migration/ThemingImages.php +%%WWWDIR%%/apps-pkg/theming/lib/Settings/Admin.php +%%WWWDIR%%/apps-pkg/theming/lib/Settings/Section.php +%%WWWDIR%%/apps-pkg/theming/lib/ThemingDefaults.php +%%WWWDIR%%/apps-pkg/theming/lib/Util.php +%%WWWDIR%%/apps-pkg/theming/templates/settings-admin.php +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/appinfo/app.php +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/appinfo/info.xml +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/appinfo/routes.php +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/appinfo/signature.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/composer/autoload.php +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/composer/composer.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/composer/composer/ClassLoader.php +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/composer/composer/LICENSE +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/composer/composer/autoload_real.php +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/composer/composer/autoload_static.php +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/css/style.css +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/js/settings.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/js/settingsview.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/.gitkeep +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/af.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/af.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/ast.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/ast.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/ca.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/ca.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/cs.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/cs.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/cs_CZ.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/cs_CZ.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/da.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/da.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/de.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/de.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/de_DE.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/de_DE.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/el.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/el.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/en_GB.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/en_GB.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_419.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_419.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_AR.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_AR.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_CL.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_CL.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_CO.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_CO.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_CR.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_CR.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_DO.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_DO.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_EC.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_EC.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_GT.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_GT.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_HN.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_HN.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_MX.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_MX.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_NI.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_NI.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_PA.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_PA.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_PE.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_PE.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_PR.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_PR.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_PY.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_PY.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_SV.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_SV.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_UY.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/es_UY.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/fi.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/fi.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/fr.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/fr.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/gl.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/gl.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/hu.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/hu.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/hu_HU.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/hu_HU.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/is.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/is.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/it.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/it.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/ja.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/ja.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/ka_GE.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/ka_GE.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/ko.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/ko.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/lv.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/lv.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/mn.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/mn.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/nb.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/nb.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/nb_NO.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/nb_NO.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/nl.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/nl.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/pl.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/pl.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/pt_BR.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/pt_BR.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/ru.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/ru.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/sk.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/sk.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/sl.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/sl.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/sq.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/sq.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/sr.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/sr.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/sv.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/sv.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/tr.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/tr.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/zh_CN.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/zh_CN.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/zh_TW.js +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/l10n/zh_TW.json +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/lib/Activity/Provider.php +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/lib/AppInfo/Application.php +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/lib/Controller/SettingsController.php +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/lib/Db/BackupCode.php +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/lib/Db/BackupCodeMapper.php +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/lib/Migration/Version1002Date20170607104347.php +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/lib/Migration/Version1002Date20170607113030.php +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/lib/Migration/Version1002Date20170919123342.php +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/lib/Migration/Version1002Date20170926101419.php +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/lib/Provider/BackupCodesProvider.php +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/lib/Service/BackupCodeStorage.php +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/lib/Settings/Personal.php +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/templates/challenge.php +%%WWWDIR%%/apps-pkg/twofactor_backupcodes/templates/personal.php +%%WWWDIR%%/apps-pkg/updatenotification/appinfo/app.php +%%WWWDIR%%/apps-pkg/updatenotification/appinfo/info.xml +%%WWWDIR%%/apps-pkg/updatenotification/appinfo/routes.php +%%WWWDIR%%/apps-pkg/updatenotification/appinfo/signature.json +%%WWWDIR%%/apps-pkg/updatenotification/composer/autoload.php +%%WWWDIR%%/apps-pkg/updatenotification/composer/composer.json +%%WWWDIR%%/apps-pkg/updatenotification/composer/composer/ClassLoader.php +%%WWWDIR%%/apps-pkg/updatenotification/composer/composer/LICENSE +%%WWWDIR%%/apps-pkg/updatenotification/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps-pkg/updatenotification/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps-pkg/updatenotification/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps-pkg/updatenotification/composer/composer/autoload_real.php +%%WWWDIR%%/apps-pkg/updatenotification/composer/composer/autoload_static.php +%%WWWDIR%%/apps-pkg/updatenotification/css/admin.css +%%WWWDIR%%/apps-pkg/updatenotification/img/app.svg +%%WWWDIR%%/apps-pkg/updatenotification/img/notification.svg +%%WWWDIR%%/apps-pkg/updatenotification/js/admin.js +%%WWWDIR%%/apps-pkg/updatenotification/js/notification.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/.gitkeep +%%WWWDIR%%/apps-pkg/updatenotification/l10n/af.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/af.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/ar.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/ar.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/ast.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/ast.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/az.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/az.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/bg.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/bg.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/bg_BG.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/bg_BG.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/bn_BD.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/bn_BD.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/bs.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/bs.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/ca.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/ca.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/cs.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/cs.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/cs_CZ.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/cs_CZ.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/da.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/da.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/de.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/de.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/de_DE.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/de_DE.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/el.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/el.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/en_GB.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/en_GB.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/eo.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/eo.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_419.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_419.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_AR.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_AR.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_CL.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_CL.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_CO.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_CO.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_CR.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_CR.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_DO.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_DO.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_EC.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_EC.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_GT.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_GT.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_HN.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_HN.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_MX.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_MX.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_NI.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_NI.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_PA.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_PA.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_PE.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_PE.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_PR.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_PR.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_PY.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_PY.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_SV.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_SV.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_UY.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/es_UY.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/et_EE.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/et_EE.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/eu.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/eu.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/fa.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/fa.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/fi.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/fi.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/fi_FI.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/fi_FI.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/fr.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/fr.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/gl.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/gl.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/he.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/he.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/hr.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/hr.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/hu.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/hu.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/hu_HU.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/hu_HU.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/ia.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/ia.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/id.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/id.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/is.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/is.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/it.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/it.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/ja.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/ja.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/ka_GE.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/ka_GE.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/ko.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/ko.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/lb.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/lb.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/lt_LT.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/lt_LT.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/lv.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/lv.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/mk.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/mk.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/nb.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/nb.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/nb_NO.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/nb_NO.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/nl.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/nl.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/oc.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/oc.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/pl.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/pl.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/pt_BR.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/pt_BR.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/pt_PT.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/pt_PT.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/ro.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/ro.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/ru.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/ru.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/sk.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/sk.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/sk_SK.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/sk_SK.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/sl.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/sl.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/sq.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/sq.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/sr.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/sr.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/sv.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/sv.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/th_TH.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/th_TH.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/tr.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/tr.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/uk.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/uk.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/vi.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/vi.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/zh_CN.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/zh_CN.json +%%WWWDIR%%/apps-pkg/updatenotification/l10n/zh_TW.js +%%WWWDIR%%/apps-pkg/updatenotification/l10n/zh_TW.json +%%WWWDIR%%/apps-pkg/updatenotification/lib/AppInfo/Application.php +%%WWWDIR%%/apps-pkg/updatenotification/lib/Controller/AdminController.php +%%WWWDIR%%/apps-pkg/updatenotification/lib/Notification/BackgroundJob.php +%%WWWDIR%%/apps-pkg/updatenotification/lib/Notification/Notifier.php +%%WWWDIR%%/apps-pkg/updatenotification/lib/ResetTokenBackgroundJob.php +%%WWWDIR%%/apps-pkg/updatenotification/lib/UpdateChecker.php +%%WWWDIR%%/apps-pkg/updatenotification/templates/admin.php +%%WWWDIR%%/apps-pkg/user_external/appinfo/app.php +%%WWWDIR%%/apps-pkg/user_external/appinfo/database.xml +%%WWWDIR%%/apps-pkg/user_external/appinfo/info.xml +%%WWWDIR%%/apps-pkg/user_external/appinfo/signature.json +%%WWWDIR%%/apps-pkg/user_external/img/app.svg +%%WWWDIR%%/apps-pkg/user_external/lib/base.php +%%WWWDIR%%/apps-pkg/user_external/lib/ftp.php +%%WWWDIR%%/apps-pkg/user_external/lib/imap.php +%%WWWDIR%%/apps-pkg/user_external/lib/smb.php +%%WWWDIR%%/apps-pkg/user_external/lib/webdavauth.php +%%WWWDIR%%/apps-pkg/user_ldap/ajax/clearMappings.php +%%WWWDIR%%/apps-pkg/user_ldap/ajax/deleteConfiguration.php +%%WWWDIR%%/apps-pkg/user_ldap/ajax/getConfiguration.php +%%WWWDIR%%/apps-pkg/user_ldap/ajax/getNewServerConfigPrefix.php +%%WWWDIR%%/apps-pkg/user_ldap/ajax/setConfiguration.php +%%WWWDIR%%/apps-pkg/user_ldap/ajax/testConfiguration.php +%%WWWDIR%%/apps-pkg/user_ldap/ajax/wizard.php +%%WWWDIR%%/apps-pkg/user_ldap/appinfo/app.php +%%WWWDIR%%/apps-pkg/user_ldap/appinfo/database.xml +%%WWWDIR%%/apps-pkg/user_ldap/appinfo/info.xml +%%WWWDIR%%/apps-pkg/user_ldap/appinfo/install.php +%%WWWDIR%%/apps-pkg/user_ldap/appinfo/register_command.php +%%WWWDIR%%/apps-pkg/user_ldap/appinfo/routes.php +%%WWWDIR%%/apps-pkg/user_ldap/appinfo/signature.json +%%WWWDIR%%/apps-pkg/user_ldap/appinfo/update.php +%%WWWDIR%%/apps-pkg/user_ldap/composer/autoload.php +%%WWWDIR%%/apps-pkg/user_ldap/composer/composer.json +%%WWWDIR%%/apps-pkg/user_ldap/composer/composer/ClassLoader.php +%%WWWDIR%%/apps-pkg/user_ldap/composer/composer/LICENSE +%%WWWDIR%%/apps-pkg/user_ldap/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps-pkg/user_ldap/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps-pkg/user_ldap/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps-pkg/user_ldap/composer/composer/autoload_real.php +%%WWWDIR%%/apps-pkg/user_ldap/composer/composer/autoload_static.php +%%WWWDIR%%/apps-pkg/user_ldap/css/renewPassword.css +%%WWWDIR%%/apps-pkg/user_ldap/css/settings.css +%%WWWDIR%%/apps-pkg/user_ldap/img/app-dark.svg +%%WWWDIR%%/apps-pkg/user_ldap/img/app.svg +%%WWWDIR%%/apps-pkg/user_ldap/img/copy.png +%%WWWDIR%%/apps-pkg/user_ldap/img/copy.svg +%%WWWDIR%%/apps-pkg/user_ldap/js/renewPassword.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/configModel.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/controller.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/view.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizard.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorAvailableAttributes.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorBaseDN.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorClearGroupMappings.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorClearUserMappings.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorEmailAttribute.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorFeatureAbstract.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorFilterGroup.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorFilterLogin.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorFilterUser.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorGeneric.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorGroupCount.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorGroupObjectClasses.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorGroupsForGroups.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorGroupsForUsers.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorPort.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorQueue.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorSimpleRequestAbstract.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorTestAbstract.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorTestBaseDN.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorTestConfiguration.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorTestLoginName.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorUserCount.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorUserDisplayNameAttribute.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorUserGroupAssociation.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardDetectorUserObjectClasses.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardFilterOnType.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardFilterOnTypeFactory.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardObject.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardTabAbstractFilter.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardTabAdvanced.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardTabElementary.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardTabExpert.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardTabGeneric.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardTabGroupFilter.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardTabLoginFilter.js +%%WWWDIR%%/apps-pkg/user_ldap/js/wizard/wizardTabUserFilter.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/.gitkeep +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ach.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ach.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ady.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ady.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/af_ZA.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/af_ZA.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ak.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ak.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/am_ET.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/am_ET.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ar.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ar.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ast.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ast.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/az.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/az.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/be.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/be.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/bg.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/bg.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/bg_BG.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/bg_BG.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/bn_BD.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/bn_BD.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/bn_IN.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/bn_IN.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/bs.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/bs.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ca.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ca.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/cs.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/cs.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/cs_CZ.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/cs_CZ.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/cy_GB.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/cy_GB.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/da.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/da.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/de.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/de.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/de_AT.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/de_AT.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/de_DE.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/de_DE.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/el.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/el.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/en_GB.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/en_GB.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/eo.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/eo.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_419.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_419.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_AR.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_AR.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_CL.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_CL.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_CO.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_CO.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_CR.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_CR.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_DO.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_DO.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_EC.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_EC.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_GT.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_GT.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_HN.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_HN.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_MX.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_MX.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_NI.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_NI.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_PA.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_PA.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_PE.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_PE.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_PR.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_PR.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_PY.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_PY.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_SV.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_SV.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_UY.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/es_UY.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/et_EE.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/et_EE.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/eu.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/eu.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/fa.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/fa.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/fi_FI.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/fi_FI.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/fil.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/fil.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/fr.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/fr.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/fy_NL.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/fy_NL.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/gl.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/gl.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/gu.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/gu.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/he.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/he.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/hi.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/hi.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/hr.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/hr.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/hu.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/hu.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/hu_HU.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/hu_HU.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/hy.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/hy.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ia.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ia.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/id.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/id.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/io.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/io.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/is.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/is.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/it.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/it.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ja.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ja.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/jv.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/jv.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ka_GE.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ka_GE.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/km.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/km.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/kn.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/kn.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ko.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ko.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ku_IQ.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ku_IQ.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/lb.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/lb.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/lo.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/lo.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/lt_LT.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/lt_LT.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/lv.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/lv.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/mg.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/mg.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/mk.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/mk.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ml.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ml.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ml_IN.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ml_IN.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/mn.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/mn.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/mr.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/mr.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ms_MY.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ms_MY.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/mt_MT.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/mt_MT.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/my_MM.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/my_MM.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/nb.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/nb.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/nb_NO.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/nb_NO.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/nds.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/nds.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/nl.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/nl.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/nn_NO.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/nn_NO.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/nqo.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/nqo.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/oc.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/oc.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/pa.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/pa.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/pl.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/pl.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/pt_BR.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/pt_BR.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/pt_PT.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/pt_PT.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ro.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ro.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ru.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ru.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/si_LK.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/si_LK.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/sk.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/sk.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/sk_SK.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/sk_SK.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/sl.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/sl.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/sq.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/sq.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/sr.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/sr.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/sr@latin.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/sr@latin.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/su.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/su.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/sv.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/sv.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/sw_KE.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/sw_KE.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ta_IN.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ta_IN.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ta_LK.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ta_LK.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/te.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/te.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/tg_TJ.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/tg_TJ.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/th.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/th.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/th_TH.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/th_TH.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/tl_PH.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/tl_PH.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/tr.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/tr.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/tzm.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/tzm.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ug.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ug.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/uk.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/uk.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ur_PK.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/ur_PK.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/vi.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/vi.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/zh_CN.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/zh_CN.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/zh_HK.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/zh_HK.json +%%WWWDIR%%/apps-pkg/user_ldap/l10n/zh_TW.js +%%WWWDIR%%/apps-pkg/user_ldap/l10n/zh_TW.json +%%WWWDIR%%/apps-pkg/user_ldap/lib/Access.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/AccessFactory.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/AppInfo/Application.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/BackendUtility.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/Command/CheckUser.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/Command/CreateEmptyConfig.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/Command/DeleteConfig.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/Command/Search.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/Command/SetConfig.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/Command/ShowConfig.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/Command/ShowRemnants.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/Command/TestConfig.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/Configuration.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/Connection.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/ConnectionFactory.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/Controller/ConfigAPIController.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/Controller/RenewPasswordController.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/Exceptions/ConstraintViolationException.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/Exceptions/NotOnLDAP.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/FilesystemHelper.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/GroupPluginManager.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/Group_LDAP.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/Group_Proxy.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/Helper.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/IGroupLDAP.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/ILDAPGroupPlugin.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/ILDAPUserPlugin.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/ILDAPWrapper.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/IUserLDAP.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/Jobs/CleanUp.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/Jobs/Sync.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/Jobs/UpdateGroups.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/LDAP.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/LDAPProvider.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/LDAPProviderFactory.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/LDAPUtility.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/LogWrapper.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/Mapping/AbstractMapping.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/Mapping/GroupMapping.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/Mapping/UserMapping.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/Migration/UUIDFix.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/Migration/UUIDFixGroup.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/Migration/UUIDFixInsert.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/Migration/UUIDFixUser.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/Notification/Notifier.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/Proxy.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/Settings/Admin.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/Settings/Section.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/User/DeletedUsersIndex.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/User/IUserTools.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/User/Manager.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/User/OfflineUser.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/User/User.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/UserPluginManager.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/User_LDAP.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/User_Proxy.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/Wizard.php +%%WWWDIR%%/apps-pkg/user_ldap/lib/WizardResult.php +%%WWWDIR%%/apps-pkg/user_ldap/templates/part.settingcontrols.php +%%WWWDIR%%/apps-pkg/user_ldap/templates/part.wizard-groupfilter.php +%%WWWDIR%%/apps-pkg/user_ldap/templates/part.wizard-loginfilter.php +%%WWWDIR%%/apps-pkg/user_ldap/templates/part.wizard-server.php +%%WWWDIR%%/apps-pkg/user_ldap/templates/part.wizard-userfilter.php +%%WWWDIR%%/apps-pkg/user_ldap/templates/part.wizardcontrols.php +%%WWWDIR%%/apps-pkg/user_ldap/templates/renewpassword.php +%%WWWDIR%%/apps-pkg/user_ldap/templates/settings.php +%%WWWDIR%%/apps-pkg/user_ldap/vendor/ui-multiselect/MIT-LICENSE +%%WWWDIR%%/apps-pkg/user_ldap/vendor/ui-multiselect/jquery.multiselect.css +%%WWWDIR%%/apps-pkg/user_ldap/vendor/ui-multiselect/src/jquery.multiselect.js +%%WWWDIR%%/apps-pkg/workflowengine/appinfo/app.php +%%WWWDIR%%/apps-pkg/workflowengine/appinfo/database.xml +%%WWWDIR%%/apps-pkg/workflowengine/appinfo/info.xml +%%WWWDIR%%/apps-pkg/workflowengine/appinfo/routes.php +%%WWWDIR%%/apps-pkg/workflowengine/appinfo/signature.json +%%WWWDIR%%/apps-pkg/workflowengine/css/admin.css +%%WWWDIR%%/apps-pkg/workflowengine/js/admin.js +%%WWWDIR%%/apps-pkg/workflowengine/js/filemimetypeplugin.js +%%WWWDIR%%/apps-pkg/workflowengine/js/filesizeplugin.js +%%WWWDIR%%/apps-pkg/workflowengine/js/filesystemtagsplugin.js +%%WWWDIR%%/apps-pkg/workflowengine/js/requestremoteaddressplugin.js +%%WWWDIR%%/apps-pkg/workflowengine/js/requesttimeplugin.js +%%WWWDIR%%/apps-pkg/workflowengine/js/requesturlplugin.js +%%WWWDIR%%/apps-pkg/workflowengine/js/requestuseragentplugin.js +%%WWWDIR%%/apps-pkg/workflowengine/js/usergroupmembershipplugin.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/.gitkeep +%%WWWDIR%%/apps-pkg/workflowengine/l10n/ast.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/ast.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/bg.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/bg.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/bg_BG.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/bg_BG.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/ca.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/ca.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/cs.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/cs.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/cs_CZ.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/cs_CZ.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/da.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/da.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/de.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/de.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/de_DE.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/de_DE.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/el.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/el.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/en_GB.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/en_GB.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_419.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_419.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_AR.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_AR.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_CL.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_CL.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_CO.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_CO.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_CR.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_CR.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_DO.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_DO.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_EC.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_EC.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_GT.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_GT.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_HN.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_HN.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_MX.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_MX.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_NI.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_NI.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_PA.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_PA.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_PE.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_PE.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_PR.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_PR.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_PY.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_PY.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_SV.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_SV.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_UY.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/es_UY.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/et_EE.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/et_EE.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/fa.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/fa.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/fi.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/fi.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/fr.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/fr.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/gl.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/gl.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/hu.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/hu.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/hu_HU.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/hu_HU.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/ia.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/ia.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/id.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/id.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/is.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/is.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/it.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/it.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/ja.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/ja.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/ka_GE.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/ka_GE.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/ko.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/ko.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/lt_LT.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/lt_LT.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/lv.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/lv.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/mn.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/mn.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/nb.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/nb.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/nb_NO.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/nb_NO.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/nl.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/nl.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/pl.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/pl.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/pt_BR.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/pt_BR.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/ru.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/ru.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/sk.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/sk.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/sk_SK.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/sk_SK.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/sq.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/sq.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/sr.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/sr.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/sv.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/sv.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/tr.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/tr.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/zh_CN.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/zh_CN.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/zh_TW.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/zh_TW.json +%%WWWDIR%%/apps-pkg/workflowengine/lib/AppInfo/Application.php +%%WWWDIR%%/apps-pkg/workflowengine/lib/Check/AbstractStringCheck.php +%%WWWDIR%%/apps-pkg/workflowengine/lib/Check/FileMimeType.php +%%WWWDIR%%/apps-pkg/workflowengine/lib/Check/FileSize.php +%%WWWDIR%%/apps-pkg/workflowengine/lib/Check/FileSystemTags.php +%%WWWDIR%%/apps-pkg/workflowengine/lib/Check/RequestRemoteAddress.php +%%WWWDIR%%/apps-pkg/workflowengine/lib/Check/RequestTime.php +%%WWWDIR%%/apps-pkg/workflowengine/lib/Check/RequestURL.php +%%WWWDIR%%/apps-pkg/workflowengine/lib/Check/RequestUserAgent.php +%%WWWDIR%%/apps-pkg/workflowengine/lib/Check/UserGroupMembership.php +%%WWWDIR%%/apps-pkg/workflowengine/lib/Controller/FlowOperations.php +%%WWWDIR%%/apps-pkg/workflowengine/lib/Controller/RequestTime.php +%%WWWDIR%%/apps-pkg/workflowengine/lib/Manager.php +%%WWWDIR%%/apps-pkg/workflowengine/lib/Settings/Section.php +%%WWWDIR%%/apps-pkg/workflowengine/templates/admin.php @group %%NEXTCLOUD_GROUPNAME%% %%WWWDIR%%/config/.htaccess @owner %%NEXTCLOUD_USERNAME%% @@ -10951,15 +10993,8 @@ %%WWWDIR%%/core/doc/admin/_images/preview_images.png %%WWWDIR%%/core/doc/admin/_images/rackspace.png %%WWWDIR%%/core/doc/admin/_images/retention_sample.png -%%WWWDIR%%/core/doc/admin/_images/saml_app_overview.png -%%WWWDIR%%/core/doc/admin/_images/scaling-1.png -%%WWWDIR%%/core/doc/admin/_images/scaling-2.png -%%WWWDIR%%/core/doc/admin/_images/scaling-3.png -%%WWWDIR%%/core/doc/admin/_images/scaling-4.png -%%WWWDIR%%/core/doc/admin/_images/scaling-5.png %%WWWDIR%%/core/doc/admin/_images/security-setup-warning-1.png %%WWWDIR%%/core/doc/admin/_images/sharing-files-1.png -%%WWWDIR%%/core/doc/admin/_images/sharing-files-2.png %%WWWDIR%%/core/doc/admin/_images/skeleton-files.png %%WWWDIR%%/core/doc/admin/_images/skeleton-files1.png %%WWWDIR%%/core/doc/admin/_images/smb.png @@ -11021,7 +11056,6 @@ %%WWWDIR%%/core/doc/admin/_sources/configuration_files/files_locking_transactional.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_files/index.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_files/previews_configuration.txt -%%WWWDIR%%/core/doc/admin/_sources/configuration_files/primary_storage.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_mimetypes/index.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_server/activity_configuration.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_server/antivirus_configuration.txt @@ -11029,19 +11063,16 @@ %%WWWDIR%%/core/doc/admin/_sources/configuration_server/background_jobs_configuration.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_server/caching_configuration.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_server/config_sample_php_parameters.txt -%%WWWDIR%%/core/doc/admin/_sources/configuration_server/custom_client_repos.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_server/email_configuration.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_server/external_sites.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_server/harden_server.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_server/index.txt -%%WWWDIR%%/core/doc/admin/_sources/configuration_server/knowledgebase_configuration.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_server/language_configuration.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_server/logging_configuration.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_server/occ_command.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_server/reverse_proxy_configuration.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_server/security_setup_warnings.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_server/server_tuning.txt -%%WWWDIR%%/core/doc/admin/_sources/configuration_server/sso_configuration.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_server/theming.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_server/thirdparty_php_configuration.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_user/index.txt @@ -11086,9 +11117,6 @@ %%WWWDIR%%/core/doc/admin/_sources/maintenance/restore.txt %%WWWDIR%%/core/doc/admin/_sources/maintenance/update.txt %%WWWDIR%%/core/doc/admin/_sources/maintenance/upgrade.txt -%%WWWDIR%%/core/doc/admin/_sources/operations/considerations_on_monitoring.txt -%%WWWDIR%%/core/doc/admin/_sources/operations/index.txt -%%WWWDIR%%/core/doc/admin/_sources/operations/scaling_multiple_machines.txt %%WWWDIR%%/core/doc/admin/_sources/release_notes.txt %%WWWDIR%%/core/doc/admin/_static/ajax-loader.gif %%WWWDIR%%/core/doc/admin/_static/basic.css @@ -11203,7 +11231,6 @@ %%WWWDIR%%/core/doc/admin/configuration_files/files_locking_transactional.html %%WWWDIR%%/core/doc/admin/configuration_files/index.html %%WWWDIR%%/core/doc/admin/configuration_files/previews_configuration.html -%%WWWDIR%%/core/doc/admin/configuration_files/primary_storage.html %%WWWDIR%%/core/doc/admin/configuration_mimetypes/index.html %%WWWDIR%%/core/doc/admin/configuration_server/activity_configuration.html %%WWWDIR%%/core/doc/admin/configuration_server/antivirus_configuration.html @@ -11211,19 +11238,16 @@ %%WWWDIR%%/core/doc/admin/configuration_server/background_jobs_configuration.html %%WWWDIR%%/core/doc/admin/configuration_server/caching_configuration.html %%WWWDIR%%/core/doc/admin/configuration_server/config_sample_php_parameters.html -%%WWWDIR%%/core/doc/admin/configuration_server/custom_client_repos.html %%WWWDIR%%/core/doc/admin/configuration_server/email_configuration.html %%WWWDIR%%/core/doc/admin/configuration_server/external_sites.html %%WWWDIR%%/core/doc/admin/configuration_server/harden_server.html %%WWWDIR%%/core/doc/admin/configuration_server/index.html -%%WWWDIR%%/core/doc/admin/configuration_server/knowledgebase_configuration.html %%WWWDIR%%/core/doc/admin/configuration_server/language_configuration.html %%WWWDIR%%/core/doc/admin/configuration_server/logging_configuration.html %%WWWDIR%%/core/doc/admin/configuration_server/occ_command.html %%WWWDIR%%/core/doc/admin/configuration_server/reverse_proxy_configuration.html %%WWWDIR%%/core/doc/admin/configuration_server/security_setup_warnings.html %%WWWDIR%%/core/doc/admin/configuration_server/server_tuning.html -%%WWWDIR%%/core/doc/admin/configuration_server/sso_configuration.html %%WWWDIR%%/core/doc/admin/configuration_server/theming.html %%WWWDIR%%/core/doc/admin/configuration_server/thirdparty_php_configuration.html %%WWWDIR%%/core/doc/admin/configuration_user/index.html @@ -11270,9 +11294,6 @@ %%WWWDIR%%/core/doc/admin/maintenance/update.html %%WWWDIR%%/core/doc/admin/maintenance/upgrade.html %%WWWDIR%%/core/doc/admin/objects.inv -%%WWWDIR%%/core/doc/admin/operations/considerations_on_monitoring.html -%%WWWDIR%%/core/doc/admin/operations/index.html -%%WWWDIR%%/core/doc/admin/operations/scaling_multiple_machines.html %%WWWDIR%%/core/doc/admin/release_notes.html %%WWWDIR%%/core/doc/admin/search.html %%WWWDIR%%/core/doc/admin/searchindex.js @@ -11485,9 +11506,11 @@ %%WWWDIR%%/core/doc/user/webinterface.html %%WWWDIR%%/core/doc/user/whats_new.html %%WWWDIR%%/core/fonts/LICENSE.txt +%%WWWDIR%%/core/fonts/OpenSans-Light.ttf %%WWWDIR%%/core/fonts/OpenSans-Light.woff %%WWWDIR%%/core/fonts/OpenSans-Regular.ttf %%WWWDIR%%/core/fonts/OpenSans-Regular.woff +%%WWWDIR%%/core/fonts/OpenSans-Semibold.ttf %%WWWDIR%%/core/fonts/OpenSans-Semibold.woff %%WWWDIR%%/core/img/actions/add.svg %%WWWDIR%%/core/img/actions/address.svg @@ -11750,6 +11773,12 @@ %%WWWDIR%%/core/js/tests/specs/systemtags/systemtagsinputfieldSpec.js %%WWWDIR%%/core/js/update.js %%WWWDIR%%/core/js/visitortimezone.js +%%WWWDIR%%/core/l10n/ar.js +%%WWWDIR%%/core/l10n/ar.json +%%WWWDIR%%/core/l10n/ast.js +%%WWWDIR%%/core/l10n/ast.json +%%WWWDIR%%/core/l10n/bg.js +%%WWWDIR%%/core/l10n/bg.json %%WWWDIR%%/core/l10n/ca.js %%WWWDIR%%/core/l10n/ca.json %%WWWDIR%%/core/l10n/cs.js @@ -11810,8 +11839,12 @@ %%WWWDIR%%/core/l10n/fi.json %%WWWDIR%%/core/l10n/fr.js %%WWWDIR%%/core/l10n/fr.json +%%WWWDIR%%/core/l10n/he.js +%%WWWDIR%%/core/l10n/he.json %%WWWDIR%%/core/l10n/hu.js %%WWWDIR%%/core/l10n/hu.json +%%WWWDIR%%/core/l10n/id.js +%%WWWDIR%%/core/l10n/id.json %%WWWDIR%%/core/l10n/is.js %%WWWDIR%%/core/l10n/is.json %%WWWDIR%%/core/l10n/it.js @@ -11850,10 +11883,14 @@ %%WWWDIR%%/core/l10n/sr.json %%WWWDIR%%/core/l10n/sv.js %%WWWDIR%%/core/l10n/sv.json +%%WWWDIR%%/core/l10n/th.js +%%WWWDIR%%/core/l10n/th.json %%WWWDIR%%/core/l10n/tr.js %%WWWDIR%%/core/l10n/tr.json %%WWWDIR%%/core/l10n/uk.js %%WWWDIR%%/core/l10n/uk.json +%%WWWDIR%%/core/l10n/uz.js +%%WWWDIR%%/core/l10n/uz.json %%WWWDIR%%/core/l10n/vi.js %%WWWDIR%%/core/l10n/vi.json %%WWWDIR%%/core/l10n/zh_CN.js @@ -11980,10 +12017,6 @@ %%WWWDIR%%/cron.php %%WWWDIR%%/index.html %%WWWDIR%%/index.php -%%WWWDIR%%/l10n/.gitignore -%%WWWDIR%%/l10n/.tx/config -%%WWWDIR%%/l10n/l10n.pl -%%WWWDIR%%/l10n/rm-old.sh %%WWWDIR%%/lib/autoloader.php %%WWWDIR%%/lib/base.php %%WWWDIR%%/lib/composer/autoload.php @@ -11995,8 +12028,26 @@ %%WWWDIR%%/lib/composer/composer/autoload_real.php %%WWWDIR%%/lib/composer/composer/autoload_static.php %%WWWDIR%%/lib/composer/composer/installed.json +%%WWWDIR%%/lib/l10n/ar.js +%%WWWDIR%%/lib/l10n/ar.json +%%WWWDIR%%/lib/l10n/ast.js +%%WWWDIR%%/lib/l10n/ast.json +%%WWWDIR%%/lib/l10n/az.js +%%WWWDIR%%/lib/l10n/az.json +%%WWWDIR%%/lib/l10n/bg.js +%%WWWDIR%%/lib/l10n/bg.json +%%WWWDIR%%/lib/l10n/bn_BD.js +%%WWWDIR%%/lib/l10n/bn_BD.json +%%WWWDIR%%/lib/l10n/bs.js +%%WWWDIR%%/lib/l10n/bs.json +%%WWWDIR%%/lib/l10n/ca.js +%%WWWDIR%%/lib/l10n/ca.json %%WWWDIR%%/lib/l10n/cs.js %%WWWDIR%%/lib/l10n/cs.json +%%WWWDIR%%/lib/l10n/cy_GB.js +%%WWWDIR%%/lib/l10n/cy_GB.json +%%WWWDIR%%/lib/l10n/da.js +%%WWWDIR%%/lib/l10n/da.json %%WWWDIR%%/lib/l10n/de.js %%WWWDIR%%/lib/l10n/de.json %%WWWDIR%%/lib/l10n/de_DE.js @@ -12005,6 +12056,8 @@ %%WWWDIR%%/lib/l10n/el.json %%WWWDIR%%/lib/l10n/en_GB.js %%WWWDIR%%/lib/l10n/en_GB.json +%%WWWDIR%%/lib/l10n/eo.js +%%WWWDIR%%/lib/l10n/eo.json %%WWWDIR%%/lib/l10n/es.js %%WWWDIR%%/lib/l10n/es.json %%WWWDIR%%/lib/l10n/es_419.js @@ -12043,12 +12096,26 @@ %%WWWDIR%%/lib/l10n/es_UY.json %%WWWDIR%%/lib/l10n/et_EE.js %%WWWDIR%%/lib/l10n/et_EE.json +%%WWWDIR%%/lib/l10n/eu.js +%%WWWDIR%%/lib/l10n/eu.json +%%WWWDIR%%/lib/l10n/fa.js +%%WWWDIR%%/lib/l10n/fa.json %%WWWDIR%%/lib/l10n/fi.js %%WWWDIR%%/lib/l10n/fi.json %%WWWDIR%%/lib/l10n/fr.js %%WWWDIR%%/lib/l10n/fr.json +%%WWWDIR%%/lib/l10n/gl.js +%%WWWDIR%%/lib/l10n/gl.json +%%WWWDIR%%/lib/l10n/he.js +%%WWWDIR%%/lib/l10n/he.json +%%WWWDIR%%/lib/l10n/hr.js +%%WWWDIR%%/lib/l10n/hr.json %%WWWDIR%%/lib/l10n/hu.js %%WWWDIR%%/lib/l10n/hu.json +%%WWWDIR%%/lib/l10n/hy.js +%%WWWDIR%%/lib/l10n/hy.json +%%WWWDIR%%/lib/l10n/id.js +%%WWWDIR%%/lib/l10n/id.json %%WWWDIR%%/lib/l10n/is.js %%WWWDIR%%/lib/l10n/is.json %%WWWDIR%%/lib/l10n/it.js @@ -12057,32 +12124,72 @@ %%WWWDIR%%/lib/l10n/ja.json %%WWWDIR%%/lib/l10n/ka_GE.js %%WWWDIR%%/lib/l10n/ka_GE.json +%%WWWDIR%%/lib/l10n/km.js +%%WWWDIR%%/lib/l10n/km.json +%%WWWDIR%%/lib/l10n/kn.js +%%WWWDIR%%/lib/l10n/kn.json %%WWWDIR%%/lib/l10n/ko.js %%WWWDIR%%/lib/l10n/ko.json +%%WWWDIR%%/lib/l10n/lb.js +%%WWWDIR%%/lib/l10n/lb.json %%WWWDIR%%/lib/l10n/lt_LT.js %%WWWDIR%%/lib/l10n/lt_LT.json +%%WWWDIR%%/lib/l10n/lv.js +%%WWWDIR%%/lib/l10n/lv.json +%%WWWDIR%%/lib/l10n/mk.js +%%WWWDIR%%/lib/l10n/mk.json +%%WWWDIR%%/lib/l10n/mn.js +%%WWWDIR%%/lib/l10n/mn.json +%%WWWDIR%%/lib/l10n/ms_MY.js +%%WWWDIR%%/lib/l10n/ms_MY.json %%WWWDIR%%/lib/l10n/nb.js %%WWWDIR%%/lib/l10n/nb.json %%WWWDIR%%/lib/l10n/nl.js %%WWWDIR%%/lib/l10n/nl.json +%%WWWDIR%%/lib/l10n/nn_NO.js +%%WWWDIR%%/lib/l10n/nn_NO.json %%WWWDIR%%/lib/l10n/pl.js %%WWWDIR%%/lib/l10n/pl.json %%WWWDIR%%/lib/l10n/pt_BR.js %%WWWDIR%%/lib/l10n/pt_BR.json +%%WWWDIR%%/lib/l10n/pt_PT.js +%%WWWDIR%%/lib/l10n/pt_PT.json +%%WWWDIR%%/lib/l10n/ro.js +%%WWWDIR%%/lib/l10n/ro.json %%WWWDIR%%/lib/l10n/ru.js %%WWWDIR%%/lib/l10n/ru.json +%%WWWDIR%%/lib/l10n/si_LK.js +%%WWWDIR%%/lib/l10n/si_LK.json %%WWWDIR%%/lib/l10n/sk.js %%WWWDIR%%/lib/l10n/sk.json +%%WWWDIR%%/lib/l10n/sl.js +%%WWWDIR%%/lib/l10n/sl.json %%WWWDIR%%/lib/l10n/sq.js %%WWWDIR%%/lib/l10n/sq.json %%WWWDIR%%/lib/l10n/sr.js %%WWWDIR%%/lib/l10n/sr.json %%WWWDIR%%/lib/l10n/sv.js %%WWWDIR%%/lib/l10n/sv.json +%%WWWDIR%%/lib/l10n/ta_LK.js +%%WWWDIR%%/lib/l10n/ta_LK.json +%%WWWDIR%%/lib/l10n/th.js +%%WWWDIR%%/lib/l10n/th.json %%WWWDIR%%/lib/l10n/tr.js %%WWWDIR%%/lib/l10n/tr.json +%%WWWDIR%%/lib/l10n/ug.js +%%WWWDIR%%/lib/l10n/ug.json +%%WWWDIR%%/lib/l10n/uk.js +%%WWWDIR%%/lib/l10n/uk.json +%%WWWDIR%%/lib/l10n/ur_PK.js +%%WWWDIR%%/lib/l10n/ur_PK.json +%%WWWDIR%%/lib/l10n/uz.js +%%WWWDIR%%/lib/l10n/uz.json +%%WWWDIR%%/lib/l10n/vi.js +%%WWWDIR%%/lib/l10n/vi.json %%WWWDIR%%/lib/l10n/zh_CN.js %%WWWDIR%%/lib/l10n/zh_CN.json +%%WWWDIR%%/lib/l10n/zh_HK.js +%%WWWDIR%%/lib/l10n/zh_HK.json %%WWWDIR%%/lib/l10n/zh_TW.js %%WWWDIR%%/lib/l10n/zh_TW.json %%WWWDIR%%/lib/private/Accounts/AccountManager.php @@ -12481,6 +12588,7 @@ %%WWWDIR%%/lib/private/Remote/User.php %%WWWDIR%%/lib/private/Repair.php %%WWWDIR%%/lib/private/Repair/CleanTags.php +%%WWWDIR%%/lib/private/Repair/ClearFrontendCaches.php %%WWWDIR%%/lib/private/Repair/Collation.php %%WWWDIR%%/lib/private/Repair/MoveUpdaterStepFile.php %%WWWDIR%%/lib/private/Repair/NC11/CleanPreviews.php @@ -13210,7 +13318,8 @@ %%WWWDIR%%/themes/example/defaults.php %%WWWDIR%%/updater/index.php %%WWWDIR%%/version.php -@dir %%WWWDIR%%/apps/gallery/documentation/wiki -@dir %%WWWDIR%%/apps +@dir %%WWWDIR%%/apps-pkg/gallery/documentation/wiki +@dir %%WWWDIR%%/apps-pkg +@dir(%%NEXTCLOUD_USERNAME%%,%%NEXTCLOUD_GROUPNAME%%,) %%WWWDIR%%/apps @dir(%%NEXTCLOUD_USERNAME%%,%%NEXTCLOUD_GROUPNAME%%,) %%WWWDIR%%/config @dir(%%NEXTCLOUD_USERNAME%%,%%NEXTCLOUD_GROUPNAME%%,) %%WWWDIR%%/data |