net-p2p/prowlarr: Add new port

Prowlarr is an indexer manager/proxy built on the popular *arr .net/reactjs
base stack to integrate with your various PVR apps.
Prowlarr supports management of both Torrent Trackers and Usenet Indexers.
It integrates seamlessly with Lidarr, Mylar3, Radarr, Readarr, and Sonarr
offering complete management of your indexers with no per app Indexer setup
required (we do it all).
This commit is contained in:
Michiel van Baak Jansen 2021-10-16 00:50:55 +02:00 committed by Mikael Urankar
parent 6a5dfca9f5
commit b8e14e5f6e
9 changed files with 859 additions and 2 deletions

2
GIDs
View File

@ -298,7 +298,7 @@ nzbhydra2:*:355:
lidarr:*:356:
bazarr:*:357:
autoscan:*:358:
# free: 359
prowlarr:*:359:
v2ray:*:360:
httptunnel:*:361:
# free: 362

2
UIDs
View File

@ -303,7 +303,7 @@ nzbhydra2:*:355:355::0:0:NZBHydra 2 Daemon:/nonexistent:/usr/sbin/nologin
lidarr:*:356:356::0:0:Lidarr Daemon:/nonexistent:/usr/sbin/nologin
bazarr:*:357:357::0:0:Bazarr Daemon:/nonexistent:/usr/sbin/nologin
autoscan:*:358:358::0:0:Autoscan Daemon:/nonexistent:/usr/sbin/nologin
# free: 359
prowlarr:*:359:359::0:0:Prowlarr Daemon:/nonexistent:/usr/sbin/nologin
v2ray:*:360:360::0:0:V2Ray Daemon:/nonexistent:/usr/sbin/nologin
httptunnel:*:361:361::0:0:httptunnel Daemon:/nonexistent:/usr/sbin/nologin
# free: 362

View File

@ -69,6 +69,7 @@
SUBDIR += p5-Net-DirectConnect
SUBDIR += p5-WWW-BitTorrent
SUBDIR += phex
SUBDIR += prowlarr
SUBDIR += py-libtorrent-rasterbar
SUBDIR += py-nicotine-plus
SUBDIR += py-transmission-rpc

44
net-p2p/prowlarr/Makefile Normal file
View File

@ -0,0 +1,44 @@
PORTNAME= prowlarr
PORTVERSION= 0.1.8.1231
CATEGORIES= net-p2p
MASTER_SITES= https://github.com/Prowlarr/Prowlarr/releases/download/v${PORTVERSION}/
DISTNAME= Prowlarr.develop.${PORTVERSION}.freebsd-core-x64
MAINTAINER= michiel@vanbaak.eu
COMMENT= Indexer Manager for Usenet and BitTorrent users
LICENSE= GPLv3
ONLY_FOR_ARCHS= amd64
RUN_DEPENDS= ca_root_nss>0:security/ca_root_nss \
icu>0:devel/icu \
libiconv>0:converters/libiconv \
libinotify>0:devel/libinotify \
libunwind>0:devel/libunwind \
openssl>0:security/openssl \
sqlite3>0:databases/sqlite3
USE_RC_SUBR= ${PORTNAME}
NO_BUILD= YES
SUB_FILES= ${PORTNAME} pkg-message
SUB_LIST= DATADIR=${DATADIR} \
GROUPS=${GROUPS} \
PORTNAME=${PORTNAME} \
USERS=${USERS}
USERS= ${PORTNAME}
GROUPS= ${PORTNAME}
WRKSRC= ${WRKDIR}/Prowlarr
.include <bsd.port.options.mk>
do-install:
${INSTALL} -d -m 755 ${STAGEDIR}/${DATADIR}
cd ${WRKSRC} && ${COPYTREE_SHARE} \* ${STAGEDIR}/${DATADIR} "! -name Prowlarr"
${INSTALL_PROGRAM} ${WRKSRC}/Prowlarr ${STAGEDIR}/${DATADIR}
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1639226857
SHA256 (Prowlarr.develop.0.1.8.1231.freebsd-core-x64.tar.gz) = b3e7df38d659fcdbbe9edacbecc0b00ce8f8e7d70e53d7367a23a4b45b259340
SIZE (Prowlarr.develop.0.1.8.1231.freebsd-core-x64.tar.gz) = 47669472

View File

@ -0,0 +1,33 @@
[
{ type: install
message: <<EOM
%%PORTNAME%% relies on Microsoft dotNET5+ SDK to be built
Microsoft does not have an official version of dotNET for FreeBSD
This package was built with an UNOFFICIAL UNSUPPORTED version of dotNET
If this is something that you do not want, remove this package with
"pkg remove %%PORTNAME%%"
This package installs a service file.
Enable it with "sysrc %%PORTNAME%%_enable=TRUE"
Start it with "service %%PORTNAME%% start".
The service file uses daemon to restart %%PORTNAME%% if it crashes.
The service file will also change the permissions so that the updater works.
If this behavior is unwanted you will need to edit the RC file manually and
remove the daemon and/or the permissions changes.
If you are running this in a jail please set "allow_mlock=1" or similar
for this jail otherwise the program will fail to start
Finally, while the built-in updater will update %%PORTNAME%% it has side-effects:
it breaks the ability of pkg to check for corruption in %%PORTNAME%% files
it breaks the ability of pkg to determine if it has removed files correctly
during "pkg remove %%PORTNAME%%" and also
it breaks the fundamental understanding that updates should be handled only
by the system that put the files there in the first place.
EOM
}
]

View File

@ -0,0 +1,48 @@
#!/bin/sh
# PROVIDE: %%PORTNAME%%
# REQUIRE: LOGIN network
# KEYWORD: shutdown
#
# Add the following lines to /etc/rc.conf or use sysrc to enable %%PORTNAME%%
# ${%%PORTNAME%%_enable="YES"}
# Optionaly there are some other parameters
# ${%%PORTNAME%%_user="%%USERS%%"}
# ${%%PORTNAME%%_group="%%GROUPS%%"}
# This stores %%PORTNAME%% data (e.g., databases, configs, logs)
# ${%%PORTNAME%%_data_dir="%%PREFIX%%/%%PORTNAME%%"}
# This stores the PID files that daemon will use
# ${%%PORTNAME%%_pid_dir:="/var/run/%%PORTNAME%%"}
. /etc/rc.subr
name=%%PORTNAME%%
rcvar=%%PORTNAME%%_enable
load_rc_config $name
: ${%%PORTNAME%%_enable:=NO}
: ${%%PORTNAME%%_user:="%%USERS%%"}
: ${%%PORTNAME%%_group:="%%GROUPS%%"}
: ${%%PORTNAME%%_exec_dir:="%%DATADIR%%"}
: ${%%PORTNAME%%_data_dir:="%%PREFIX%%/%%PORTNAME%%"}
: ${%%PORTNAME%%_pid_dir:="/var/run/%%PORTNAME%%"}
pidfile="${%%PORTNAME%%_pid_dir}/${name}_daemon.pid"
pidfile_child="${%%PORTNAME%%_pid_dir}/${name}_child.pid"
command="/usr/sbin/daemon"
start_precmd=${name}_precmd
%%PORTNAME%%_precmd() {
if [ ! -d ${%%PORTNAME%%_data_dir} ]; then
install -d -o ${%%PORTNAME%%_user} -g ${%%PORTNAME%%_group} ${%%PORTNAME%%_data_dir}
fi
if [ ! -d ${%%PORTNAME%%_pid_dir} ]; then
install -d -o ${%%PORTNAME%%_user} -g ${%%PORTNAME%%_group} ${%%PORTNAME%%_pid_dir}
fi
chown -R ${%%PORTNAME%%_user}:${%%PORTNAME%%_group} ${%%PORTNAME%%_exec_dir}
rc_flags="-r -f -p ${pidfile_child} -P ${pidfile} ${%%PORTNAME%%_exec_dir}/Prowlarr --data=${%%PORTNAME%%_data_dir} --nobrowser >> /dev/null 2>&1 ${rc_flags}"
}
run_rc_command "$1"

View File

@ -0,0 +1,8 @@
Prowlarr is an indexer manager/proxy built on the popular *arr .net/reactjs
base stack to integrate with your various PVR apps.
Prowlarr supports management of both Torrent Trackers and Usenet Indexers.
It integrates seamlessly with Lidarr, Mylar3, Radarr, Readarr, and Sonarr
offering complete management of your indexers with no per app Indexer setup
required (we do it all).
WWW: https://github.com/Prowlarr/Prowlarr

720
net-p2p/prowlarr/pkg-plist Normal file
View File

@ -0,0 +1,720 @@
%%DATADIR%%/AngleSharp.Xml.dll
%%DATADIR%%/AngleSharp.dll
%%DATADIR%%/BouncyCastle.Crypto.dll
%%DATADIR%%/Dapper.dll
%%DATADIR%%/DryIoc.Microsoft.DependencyInjection.dll
%%DATADIR%%/DryIoc.dll
%%DATADIR%%/Dynamitey.dll
%%DATADIR%%/FluentMigrator.Abstractions.dll
%%DATADIR%%/FluentMigrator.Extensions.Oracle.dll
%%DATADIR%%/FluentMigrator.Extensions.Postgres.dll
%%DATADIR%%/FluentMigrator.Extensions.SqlAnywhere.dll
%%DATADIR%%/FluentMigrator.Extensions.SqlServer.dll
%%DATADIR%%/FluentMigrator.Runner.Core.dll
%%DATADIR%%/FluentMigrator.Runner.Db2.dll
%%DATADIR%%/FluentMigrator.Runner.Firebird.dll
%%DATADIR%%/FluentMigrator.Runner.Hana.dll
%%DATADIR%%/FluentMigrator.Runner.MySql.dll
%%DATADIR%%/FluentMigrator.Runner.Oracle.dll
%%DATADIR%%/FluentMigrator.Runner.Postgres.dll
%%DATADIR%%/FluentMigrator.Runner.Redshift.dll
%%DATADIR%%/FluentMigrator.Runner.SQLite.dll
%%DATADIR%%/FluentMigrator.Runner.SqlAnywhere.dll
%%DATADIR%%/FluentMigrator.Runner.SqlServer.dll
%%DATADIR%%/FluentMigrator.Runner.SqlServerCe.dll
%%DATADIR%%/FluentMigrator.Runner.dll
%%DATADIR%%/FluentMigrator.dll
%%DATADIR%%/FluentValidation.dll
%%DATADIR%%/ICSharpCode.SharpZipLib.dll
%%DATADIR%%/ImpromptuInterface.dll
%%DATADIR%%/Kveer.XmlRPC.dll
%%DATADIR%%/LICENSE
%%DATADIR%%/Localization/Core/ar.json
%%DATADIR%%/Localization/Core/bg.json
%%DATADIR%%/Localization/Core/ca.json
%%DATADIR%%/Localization/Core/cs.json
%%DATADIR%%/Localization/Core/da.json
%%DATADIR%%/Localization/Core/de.json
%%DATADIR%%/Localization/Core/el.json
%%DATADIR%%/Localization/Core/en.json
%%DATADIR%%/Localization/Core/es.json
%%DATADIR%%/Localization/Core/fi.json
%%DATADIR%%/Localization/Core/fr.json
%%DATADIR%%/Localization/Core/he.json
%%DATADIR%%/Localization/Core/hi.json
%%DATADIR%%/Localization/Core/hu.json
%%DATADIR%%/Localization/Core/is.json
%%DATADIR%%/Localization/Core/it.json
%%DATADIR%%/Localization/Core/ja.json
%%DATADIR%%/Localization/Core/ko.json
%%DATADIR%%/Localization/Core/nan.json
%%DATADIR%%/Localization/Core/nb_NO.json
%%DATADIR%%/Localization/Core/nl.json
%%DATADIR%%/Localization/Core/pl.json
%%DATADIR%%/Localization/Core/pt.json
%%DATADIR%%/Localization/Core/pt_BR.json
%%DATADIR%%/Localization/Core/ro.json
%%DATADIR%%/Localization/Core/ru.json
%%DATADIR%%/Localization/Core/sk.json
%%DATADIR%%/Localization/Core/sv.json
%%DATADIR%%/Localization/Core/th.json
%%DATADIR%%/Localization/Core/tr.json
%%DATADIR%%/Localization/Core/vi.json
%%DATADIR%%/Localization/Core/zh_CN.json
%%DATADIR%%/Localization/Core/zh_Hans.json
%%DATADIR%%/Localization/Core/zh_TW.json
%%DATADIR%%/MailKit.dll
%%DATADIR%%/Microsoft.AspNetCore.Antiforgery.dll
%%DATADIR%%/Microsoft.AspNetCore.Authentication.Abstractions.dll
%%DATADIR%%/Microsoft.AspNetCore.Authentication.Cookies.dll
%%DATADIR%%/Microsoft.AspNetCore.Authentication.Core.dll
%%DATADIR%%/Microsoft.AspNetCore.Authentication.OAuth.dll
%%DATADIR%%/Microsoft.AspNetCore.Authentication.dll
%%DATADIR%%/Microsoft.AspNetCore.Authorization.Policy.dll
%%DATADIR%%/Microsoft.AspNetCore.Authorization.dll
%%DATADIR%%/Microsoft.AspNetCore.Components.Authorization.dll
%%DATADIR%%/Microsoft.AspNetCore.Components.Forms.dll
%%DATADIR%%/Microsoft.AspNetCore.Components.Server.dll
%%DATADIR%%/Microsoft.AspNetCore.Components.Web.dll
%%DATADIR%%/Microsoft.AspNetCore.Components.dll
%%DATADIR%%/Microsoft.AspNetCore.Connections.Abstractions.dll
%%DATADIR%%/Microsoft.AspNetCore.CookiePolicy.dll
%%DATADIR%%/Microsoft.AspNetCore.Cors.dll
%%DATADIR%%/Microsoft.AspNetCore.Cryptography.Internal.dll
%%DATADIR%%/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll
%%DATADIR%%/Microsoft.AspNetCore.DataProtection.Abstractions.dll
%%DATADIR%%/Microsoft.AspNetCore.DataProtection.Extensions.dll
%%DATADIR%%/Microsoft.AspNetCore.DataProtection.dll
%%DATADIR%%/Microsoft.AspNetCore.Diagnostics.Abstractions.dll
%%DATADIR%%/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll
%%DATADIR%%/Microsoft.AspNetCore.Diagnostics.dll
%%DATADIR%%/Microsoft.AspNetCore.HostFiltering.dll
%%DATADIR%%/Microsoft.AspNetCore.Hosting.Abstractions.dll
%%DATADIR%%/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll
%%DATADIR%%/Microsoft.AspNetCore.Hosting.dll
%%DATADIR%%/Microsoft.AspNetCore.Html.Abstractions.dll
%%DATADIR%%/Microsoft.AspNetCore.Http.Abstractions.dll
%%DATADIR%%/Microsoft.AspNetCore.Http.Connections.Common.dll
%%DATADIR%%/Microsoft.AspNetCore.Http.Connections.dll
%%DATADIR%%/Microsoft.AspNetCore.Http.Extensions.dll
%%DATADIR%%/Microsoft.AspNetCore.Http.Features.dll
%%DATADIR%%/Microsoft.AspNetCore.Http.Results.dll
%%DATADIR%%/Microsoft.AspNetCore.Http.dll
%%DATADIR%%/Microsoft.AspNetCore.HttpLogging.dll
%%DATADIR%%/Microsoft.AspNetCore.HttpOverrides.dll
%%DATADIR%%/Microsoft.AspNetCore.HttpsPolicy.dll
%%DATADIR%%/Microsoft.AspNetCore.Identity.dll
%%DATADIR%%/Microsoft.AspNetCore.Localization.Routing.dll
%%DATADIR%%/Microsoft.AspNetCore.Localization.dll
%%DATADIR%%/Microsoft.AspNetCore.Metadata.dll
%%DATADIR%%/Microsoft.AspNetCore.Mvc.Abstractions.dll
%%DATADIR%%/Microsoft.AspNetCore.Mvc.ApiExplorer.dll
%%DATADIR%%/Microsoft.AspNetCore.Mvc.Core.dll
%%DATADIR%%/Microsoft.AspNetCore.Mvc.Cors.dll
%%DATADIR%%/Microsoft.AspNetCore.Mvc.DataAnnotations.dll
%%DATADIR%%/Microsoft.AspNetCore.Mvc.Formatters.Json.dll
%%DATADIR%%/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll
%%DATADIR%%/Microsoft.AspNetCore.Mvc.Localization.dll
%%DATADIR%%/Microsoft.AspNetCore.Mvc.Razor.dll
%%DATADIR%%/Microsoft.AspNetCore.Mvc.RazorPages.dll
%%DATADIR%%/Microsoft.AspNetCore.Mvc.TagHelpers.dll
%%DATADIR%%/Microsoft.AspNetCore.Mvc.ViewFeatures.dll
%%DATADIR%%/Microsoft.AspNetCore.Mvc.dll
%%DATADIR%%/Microsoft.AspNetCore.Razor.Runtime.dll
%%DATADIR%%/Microsoft.AspNetCore.Razor.dll
%%DATADIR%%/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll
%%DATADIR%%/Microsoft.AspNetCore.ResponseCaching.dll
%%DATADIR%%/Microsoft.AspNetCore.ResponseCompression.dll
%%DATADIR%%/Microsoft.AspNetCore.Rewrite.dll
%%DATADIR%%/Microsoft.AspNetCore.Routing.Abstractions.dll
%%DATADIR%%/Microsoft.AspNetCore.Routing.dll
%%DATADIR%%/Microsoft.AspNetCore.Server.HttpSys.dll
%%DATADIR%%/Microsoft.AspNetCore.Server.IIS.dll
%%DATADIR%%/Microsoft.AspNetCore.Server.IISIntegration.dll
%%DATADIR%%/Microsoft.AspNetCore.Server.Kestrel.Core.dll
%%DATADIR%%/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll
%%DATADIR%%/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll
%%DATADIR%%/Microsoft.AspNetCore.Server.Kestrel.dll
%%DATADIR%%/Microsoft.AspNetCore.Session.dll
%%DATADIR%%/Microsoft.AspNetCore.SignalR.Common.dll
%%DATADIR%%/Microsoft.AspNetCore.SignalR.Core.dll
%%DATADIR%%/Microsoft.AspNetCore.SignalR.Protocols.Json.dll
%%DATADIR%%/Microsoft.AspNetCore.SignalR.dll
%%DATADIR%%/Microsoft.AspNetCore.StaticFiles.dll
%%DATADIR%%/Microsoft.AspNetCore.WebSockets.dll
%%DATADIR%%/Microsoft.AspNetCore.WebUtilities.dll
%%DATADIR%%/Microsoft.AspNetCore.dll
%%DATADIR%%/Microsoft.CSharp.dll
%%DATADIR%%/Microsoft.Data.SqlClient.dll
%%DATADIR%%/Microsoft.Extensions.Caching.Abstractions.dll
%%DATADIR%%/Microsoft.Extensions.Caching.Memory.dll
%%DATADIR%%/Microsoft.Extensions.Configuration.Abstractions.dll
%%DATADIR%%/Microsoft.Extensions.Configuration.Binder.dll
%%DATADIR%%/Microsoft.Extensions.Configuration.CommandLine.dll
%%DATADIR%%/Microsoft.Extensions.Configuration.EnvironmentVariables.dll
%%DATADIR%%/Microsoft.Extensions.Configuration.FileExtensions.dll
%%DATADIR%%/Microsoft.Extensions.Configuration.Ini.dll
%%DATADIR%%/Microsoft.Extensions.Configuration.Json.dll
%%DATADIR%%/Microsoft.Extensions.Configuration.KeyPerFile.dll
%%DATADIR%%/Microsoft.Extensions.Configuration.UserSecrets.dll
%%DATADIR%%/Microsoft.Extensions.Configuration.Xml.dll
%%DATADIR%%/Microsoft.Extensions.Configuration.dll
%%DATADIR%%/Microsoft.Extensions.DependencyInjection.Abstractions.dll
%%DATADIR%%/Microsoft.Extensions.DependencyInjection.dll
%%DATADIR%%/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll
%%DATADIR%%/Microsoft.Extensions.Diagnostics.HealthChecks.dll
%%DATADIR%%/Microsoft.Extensions.Features.dll
%%DATADIR%%/Microsoft.Extensions.FileProviders.Abstractions.dll
%%DATADIR%%/Microsoft.Extensions.FileProviders.Composite.dll
%%DATADIR%%/Microsoft.Extensions.FileProviders.Embedded.dll
%%DATADIR%%/Microsoft.Extensions.FileProviders.Physical.dll
%%DATADIR%%/Microsoft.Extensions.FileSystemGlobbing.dll
%%DATADIR%%/Microsoft.Extensions.Hosting.Abstractions.dll
%%DATADIR%%/Microsoft.Extensions.Hosting.WindowsServices.dll
%%DATADIR%%/Microsoft.Extensions.Hosting.dll
%%DATADIR%%/Microsoft.Extensions.Http.dll
%%DATADIR%%/Microsoft.Extensions.Identity.Core.dll
%%DATADIR%%/Microsoft.Extensions.Identity.Stores.dll
%%DATADIR%%/Microsoft.Extensions.Localization.Abstractions.dll
%%DATADIR%%/Microsoft.Extensions.Localization.dll
%%DATADIR%%/Microsoft.Extensions.Logging.Abstractions.dll
%%DATADIR%%/Microsoft.Extensions.Logging.Configuration.dll
%%DATADIR%%/Microsoft.Extensions.Logging.Console.dll
%%DATADIR%%/Microsoft.Extensions.Logging.Debug.dll
%%DATADIR%%/Microsoft.Extensions.Logging.EventLog.dll
%%DATADIR%%/Microsoft.Extensions.Logging.EventSource.dll
%%DATADIR%%/Microsoft.Extensions.Logging.TraceSource.dll
%%DATADIR%%/Microsoft.Extensions.Logging.dll
%%DATADIR%%/Microsoft.Extensions.ObjectPool.dll
%%DATADIR%%/Microsoft.Extensions.Options.ConfigurationExtensions.dll
%%DATADIR%%/Microsoft.Extensions.Options.DataAnnotations.dll
%%DATADIR%%/Microsoft.Extensions.Options.dll
%%DATADIR%%/Microsoft.Extensions.Primitives.dll
%%DATADIR%%/Microsoft.Extensions.WebEncoders.dll
%%DATADIR%%/Microsoft.Identity.Client.dll
%%DATADIR%%/Microsoft.IdentityModel.JsonWebTokens.dll
%%DATADIR%%/Microsoft.IdentityModel.Logging.dll
%%DATADIR%%/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
%%DATADIR%%/Microsoft.IdentityModel.Protocols.dll
%%DATADIR%%/Microsoft.IdentityModel.Tokens.dll
%%DATADIR%%/Microsoft.JSInterop.dll
%%DATADIR%%/Microsoft.Net.Http.Headers.dll
%%DATADIR%%/Microsoft.VisualBasic.Core.dll
%%DATADIR%%/Microsoft.VisualBasic.dll
%%DATADIR%%/Microsoft.Win32.Primitives.dll
%%DATADIR%%/Microsoft.Win32.Registry.dll
%%DATADIR%%/Microsoft.Win32.SystemEvents.dll
%%DATADIR%%/MimeKit.dll
%%DATADIR%%/Mono.Nat.dll
%%DATADIR%%/Mono.Posix.NETStandard.dll
%%DATADIR%%/MonoTorrent.dll
%%DATADIR%%/NLog.Extensions.Logging.dll
%%DATADIR%%/NLog.Targets.Syslog.dll
%%DATADIR%%/NLog.dll
%%DATADIR%%/Newtonsoft.Json.dll
%%DATADIR%%/Npgsql.dll
%%DATADIR%%/Prowlarr
%%DATADIR%%/Prowlarr.Api.V1.deps.json
%%DATADIR%%/Prowlarr.Api.V1.dll
%%DATADIR%%/Prowlarr.Api.V1.pdb
%%DATADIR%%/Prowlarr.Common.deps.json
%%DATADIR%%/Prowlarr.Common.dll
%%DATADIR%%/Prowlarr.Common.pdb
%%DATADIR%%/Prowlarr.Core.deps.json
%%DATADIR%%/Prowlarr.Core.dll
%%DATADIR%%/Prowlarr.Core.pdb
%%DATADIR%%/Prowlarr.Host.deps.json
%%DATADIR%%/Prowlarr.Host.dll
%%DATADIR%%/Prowlarr.Host.pdb
%%DATADIR%%/Prowlarr.Http.deps.json
%%DATADIR%%/Prowlarr.Http.dll
%%DATADIR%%/Prowlarr.Http.pdb
%%DATADIR%%/Prowlarr.Mono.deps.json
%%DATADIR%%/Prowlarr.Mono.dll
%%DATADIR%%/Prowlarr.Mono.pdb
%%DATADIR%%/Prowlarr.SignalR.deps.json
%%DATADIR%%/Prowlarr.SignalR.dll
%%DATADIR%%/Prowlarr.SignalR.pdb
%%DATADIR%%/Prowlarr.Update/DryIoc.Microsoft.DependencyInjection.dll
%%DATADIR%%/Prowlarr.Update/DryIoc.dll
%%DATADIR%%/Prowlarr.Update/ICSharpCode.SharpZipLib.dll
%%DATADIR%%/Prowlarr.Update/Microsoft.CSharp.dll
%%DATADIR%%/Prowlarr.Update/Microsoft.Extensions.Configuration.Abstractions.dll
%%DATADIR%%/Prowlarr.Update/Microsoft.Extensions.Configuration.Binder.dll
%%DATADIR%%/Prowlarr.Update/Microsoft.Extensions.Configuration.CommandLine.dll
%%DATADIR%%/Prowlarr.Update/Microsoft.Extensions.Configuration.EnvironmentVariables.dll
%%DATADIR%%/Prowlarr.Update/Microsoft.Extensions.Configuration.FileExtensions.dll
%%DATADIR%%/Prowlarr.Update/Microsoft.Extensions.Configuration.Json.dll
%%DATADIR%%/Prowlarr.Update/Microsoft.Extensions.Configuration.UserSecrets.dll
%%DATADIR%%/Prowlarr.Update/Microsoft.Extensions.Configuration.dll
%%DATADIR%%/Prowlarr.Update/Microsoft.Extensions.DependencyInjection.Abstractions.dll
%%DATADIR%%/Prowlarr.Update/Microsoft.Extensions.DependencyInjection.dll
%%DATADIR%%/Prowlarr.Update/Microsoft.Extensions.FileProviders.Abstractions.dll
%%DATADIR%%/Prowlarr.Update/Microsoft.Extensions.FileProviders.Physical.dll
%%DATADIR%%/Prowlarr.Update/Microsoft.Extensions.FileSystemGlobbing.dll
%%DATADIR%%/Prowlarr.Update/Microsoft.Extensions.Hosting.Abstractions.dll
%%DATADIR%%/Prowlarr.Update/Microsoft.Extensions.Hosting.WindowsServices.dll
%%DATADIR%%/Prowlarr.Update/Microsoft.Extensions.Hosting.dll
%%DATADIR%%/Prowlarr.Update/Microsoft.Extensions.Logging.Abstractions.dll
%%DATADIR%%/Prowlarr.Update/Microsoft.Extensions.Logging.Configuration.dll
%%DATADIR%%/Prowlarr.Update/Microsoft.Extensions.Logging.Console.dll
%%DATADIR%%/Prowlarr.Update/Microsoft.Extensions.Logging.Debug.dll
%%DATADIR%%/Prowlarr.Update/Microsoft.Extensions.Logging.EventLog.dll
%%DATADIR%%/Prowlarr.Update/Microsoft.Extensions.Logging.EventSource.dll
%%DATADIR%%/Prowlarr.Update/Microsoft.Extensions.Logging.dll
%%DATADIR%%/Prowlarr.Update/Microsoft.Extensions.Options.ConfigurationExtensions.dll
%%DATADIR%%/Prowlarr.Update/Microsoft.Extensions.Options.dll
%%DATADIR%%/Prowlarr.Update/Microsoft.Extensions.Primitives.dll
%%DATADIR%%/Prowlarr.Update/Microsoft.VisualBasic.Core.dll
%%DATADIR%%/Prowlarr.Update/Microsoft.VisualBasic.dll
%%DATADIR%%/Prowlarr.Update/Microsoft.Win32.Primitives.dll
%%DATADIR%%/Prowlarr.Update/Microsoft.Win32.Registry.dll
%%DATADIR%%/Prowlarr.Update/Microsoft.Win32.SystemEvents.dll
%%DATADIR%%/Prowlarr.Update/Mono.Posix.NETStandard.dll
%%DATADIR%%/Prowlarr.Update/NLog.Extensions.Logging.dll
%%DATADIR%%/Prowlarr.Update/NLog.dll
%%DATADIR%%/Prowlarr.Update/Newtonsoft.Json.dll
%%DATADIR%%/Prowlarr.Update/Prowlarr.Common.dll
%%DATADIR%%/Prowlarr.Update/Prowlarr.Common.pdb
%%DATADIR%%/Prowlarr.Update/Prowlarr.Mono.deps.json
%%DATADIR%%/Prowlarr.Update/Prowlarr.Mono.dll
%%DATADIR%%/Prowlarr.Update/Prowlarr.Mono.pdb
%%DATADIR%%/Prowlarr.Update/Prowlarr.Update
%%DATADIR%%/Prowlarr.Update/Prowlarr.Update.deps.json
%%DATADIR%%/Prowlarr.Update/Prowlarr.Update.dll
%%DATADIR%%/Prowlarr.Update/Prowlarr.Update.dll.config
%%DATADIR%%/Prowlarr.Update/Prowlarr.Update.pdb
%%DATADIR%%/Prowlarr.Update/Prowlarr.Update.runtimeconfig.json
%%DATADIR%%/Prowlarr.Update/Sentry.dll
%%DATADIR%%/Prowlarr.Update/System.AppContext.dll
%%DATADIR%%/Prowlarr.Update/System.Buffers.dll
%%DATADIR%%/Prowlarr.Update/System.Collections.Concurrent.dll
%%DATADIR%%/Prowlarr.Update/System.Collections.Immutable.dll
%%DATADIR%%/Prowlarr.Update/System.Collections.NonGeneric.dll
%%DATADIR%%/Prowlarr.Update/System.Collections.Specialized.dll
%%DATADIR%%/Prowlarr.Update/System.Collections.dll
%%DATADIR%%/Prowlarr.Update/System.ComponentModel.Annotations.dll
%%DATADIR%%/Prowlarr.Update/System.ComponentModel.DataAnnotations.dll
%%DATADIR%%/Prowlarr.Update/System.ComponentModel.EventBasedAsync.dll
%%DATADIR%%/Prowlarr.Update/System.ComponentModel.Primitives.dll
%%DATADIR%%/Prowlarr.Update/System.ComponentModel.TypeConverter.dll
%%DATADIR%%/Prowlarr.Update/System.ComponentModel.dll
%%DATADIR%%/Prowlarr.Update/System.Configuration.ConfigurationManager.dll
%%DATADIR%%/Prowlarr.Update/System.Configuration.dll
%%DATADIR%%/Prowlarr.Update/System.Console.dll
%%DATADIR%%/Prowlarr.Update/System.Core.dll
%%DATADIR%%/Prowlarr.Update/System.Data.Common.dll
%%DATADIR%%/Prowlarr.Update/System.Data.DataSetExtensions.dll
%%DATADIR%%/Prowlarr.Update/System.Data.SQLite.dll
%%DATADIR%%/Prowlarr.Update/System.Data.dll
%%DATADIR%%/Prowlarr.Update/System.Diagnostics.Contracts.dll
%%DATADIR%%/Prowlarr.Update/System.Diagnostics.Debug.dll
%%DATADIR%%/Prowlarr.Update/System.Diagnostics.DiagnosticSource.dll
%%DATADIR%%/Prowlarr.Update/System.Diagnostics.EventLog.dll
%%DATADIR%%/Prowlarr.Update/System.Diagnostics.FileVersionInfo.dll
%%DATADIR%%/Prowlarr.Update/System.Diagnostics.Process.dll
%%DATADIR%%/Prowlarr.Update/System.Diagnostics.StackTrace.dll
%%DATADIR%%/Prowlarr.Update/System.Diagnostics.TextWriterTraceListener.dll
%%DATADIR%%/Prowlarr.Update/System.Diagnostics.Tools.dll
%%DATADIR%%/Prowlarr.Update/System.Diagnostics.TraceSource.dll
%%DATADIR%%/Prowlarr.Update/System.Diagnostics.Tracing.dll
%%DATADIR%%/Prowlarr.Update/System.Drawing.Common.dll
%%DATADIR%%/Prowlarr.Update/System.Drawing.Primitives.dll
%%DATADIR%%/Prowlarr.Update/System.Drawing.dll
%%DATADIR%%/Prowlarr.Update/System.Dynamic.Runtime.dll
%%DATADIR%%/Prowlarr.Update/System.Formats.Asn1.dll
%%DATADIR%%/Prowlarr.Update/System.Globalization.Calendars.dll
%%DATADIR%%/Prowlarr.Update/System.Globalization.Extensions.dll
%%DATADIR%%/Prowlarr.Update/System.Globalization.dll
%%DATADIR%%/Prowlarr.Update/System.IO.Compression.Brotli.dll
%%DATADIR%%/Prowlarr.Update/System.IO.Compression.FileSystem.dll
%%DATADIR%%/Prowlarr.Update/System.IO.Compression.ZipFile.dll
%%DATADIR%%/Prowlarr.Update/System.IO.Compression.dll
%%DATADIR%%/Prowlarr.Update/System.IO.FileSystem.AccessControl.dll
%%DATADIR%%/Prowlarr.Update/System.IO.FileSystem.DriveInfo.dll
%%DATADIR%%/Prowlarr.Update/System.IO.FileSystem.Primitives.dll
%%DATADIR%%/Prowlarr.Update/System.IO.FileSystem.Watcher.dll
%%DATADIR%%/Prowlarr.Update/System.IO.FileSystem.dll
%%DATADIR%%/Prowlarr.Update/System.IO.IsolatedStorage.dll
%%DATADIR%%/Prowlarr.Update/System.IO.MemoryMappedFiles.dll
%%DATADIR%%/Prowlarr.Update/System.IO.Pipes.AccessControl.dll
%%DATADIR%%/Prowlarr.Update/System.IO.Pipes.dll
%%DATADIR%%/Prowlarr.Update/System.IO.UnmanagedMemoryStream.dll
%%DATADIR%%/Prowlarr.Update/System.IO.dll
%%DATADIR%%/Prowlarr.Update/System.Linq.Expressions.dll
%%DATADIR%%/Prowlarr.Update/System.Linq.Parallel.dll
%%DATADIR%%/Prowlarr.Update/System.Linq.Queryable.dll
%%DATADIR%%/Prowlarr.Update/System.Linq.dll
%%DATADIR%%/Prowlarr.Update/System.Memory.dll
%%DATADIR%%/Prowlarr.Update/System.Net.Http.Json.dll
%%DATADIR%%/Prowlarr.Update/System.Net.Http.dll
%%DATADIR%%/Prowlarr.Update/System.Net.HttpListener.dll
%%DATADIR%%/Prowlarr.Update/System.Net.Mail.dll
%%DATADIR%%/Prowlarr.Update/System.Net.NameResolution.dll
%%DATADIR%%/Prowlarr.Update/System.Net.NetworkInformation.dll
%%DATADIR%%/Prowlarr.Update/System.Net.Ping.dll
%%DATADIR%%/Prowlarr.Update/System.Net.Primitives.dll
%%DATADIR%%/Prowlarr.Update/System.Net.Quic.dll
%%DATADIR%%/Prowlarr.Update/System.Net.Requests.dll
%%DATADIR%%/Prowlarr.Update/System.Net.Security.dll
%%DATADIR%%/Prowlarr.Update/System.Net.ServicePoint.dll
%%DATADIR%%/Prowlarr.Update/System.Net.Sockets.dll
%%DATADIR%%/Prowlarr.Update/System.Net.WebClient.dll
%%DATADIR%%/Prowlarr.Update/System.Net.WebHeaderCollection.dll
%%DATADIR%%/Prowlarr.Update/System.Net.WebProxy.dll
%%DATADIR%%/Prowlarr.Update/System.Net.WebSockets.Client.dll
%%DATADIR%%/Prowlarr.Update/System.Net.WebSockets.dll
%%DATADIR%%/Prowlarr.Update/System.Net.dll
%%DATADIR%%/Prowlarr.Update/System.Numerics.Vectors.dll
%%DATADIR%%/Prowlarr.Update/System.Numerics.dll
%%DATADIR%%/Prowlarr.Update/System.ObjectModel.dll
%%DATADIR%%/Prowlarr.Update/System.Private.CoreLib.dll
%%DATADIR%%/Prowlarr.Update/System.Private.DataContractSerialization.dll
%%DATADIR%%/Prowlarr.Update/System.Private.Uri.dll
%%DATADIR%%/Prowlarr.Update/System.Private.Xml.Linq.dll
%%DATADIR%%/Prowlarr.Update/System.Private.Xml.dll
%%DATADIR%%/Prowlarr.Update/System.Reflection.DispatchProxy.dll
%%DATADIR%%/Prowlarr.Update/System.Reflection.Emit.ILGeneration.dll
%%DATADIR%%/Prowlarr.Update/System.Reflection.Emit.Lightweight.dll
%%DATADIR%%/Prowlarr.Update/System.Reflection.Emit.dll
%%DATADIR%%/Prowlarr.Update/System.Reflection.Extensions.dll
%%DATADIR%%/Prowlarr.Update/System.Reflection.Metadata.dll
%%DATADIR%%/Prowlarr.Update/System.Reflection.Primitives.dll
%%DATADIR%%/Prowlarr.Update/System.Reflection.TypeExtensions.dll
%%DATADIR%%/Prowlarr.Update/System.Reflection.dll
%%DATADIR%%/Prowlarr.Update/System.Resources.Reader.dll
%%DATADIR%%/Prowlarr.Update/System.Resources.ResourceManager.dll
%%DATADIR%%/Prowlarr.Update/System.Resources.Writer.dll
%%DATADIR%%/Prowlarr.Update/System.Runtime.CompilerServices.Unsafe.dll
%%DATADIR%%/Prowlarr.Update/System.Runtime.CompilerServices.VisualC.dll
%%DATADIR%%/Prowlarr.Update/System.Runtime.Extensions.dll
%%DATADIR%%/Prowlarr.Update/System.Runtime.Handles.dll
%%DATADIR%%/Prowlarr.Update/System.Runtime.InteropServices.RuntimeInformation.dll
%%DATADIR%%/Prowlarr.Update/System.Runtime.InteropServices.dll
%%DATADIR%%/Prowlarr.Update/System.Runtime.Intrinsics.dll
%%DATADIR%%/Prowlarr.Update/System.Runtime.Loader.dll
%%DATADIR%%/Prowlarr.Update/System.Runtime.Numerics.dll
%%DATADIR%%/Prowlarr.Update/System.Runtime.Serialization.Formatters.dll
%%DATADIR%%/Prowlarr.Update/System.Runtime.Serialization.Json.dll
%%DATADIR%%/Prowlarr.Update/System.Runtime.Serialization.Primitives.dll
%%DATADIR%%/Prowlarr.Update/System.Runtime.Serialization.Xml.dll
%%DATADIR%%/Prowlarr.Update/System.Runtime.Serialization.dll
%%DATADIR%%/Prowlarr.Update/System.Runtime.dll
%%DATADIR%%/Prowlarr.Update/System.Security.AccessControl.dll
%%DATADIR%%/Prowlarr.Update/System.Security.Claims.dll
%%DATADIR%%/Prowlarr.Update/System.Security.Cryptography.Algorithms.dll
%%DATADIR%%/Prowlarr.Update/System.Security.Cryptography.Cng.dll
%%DATADIR%%/Prowlarr.Update/System.Security.Cryptography.Csp.dll
%%DATADIR%%/Prowlarr.Update/System.Security.Cryptography.Encoding.dll
%%DATADIR%%/Prowlarr.Update/System.Security.Cryptography.OpenSsl.dll
%%DATADIR%%/Prowlarr.Update/System.Security.Cryptography.Primitives.dll
%%DATADIR%%/Prowlarr.Update/System.Security.Cryptography.ProtectedData.dll
%%DATADIR%%/Prowlarr.Update/System.Security.Cryptography.X509Certificates.dll
%%DATADIR%%/Prowlarr.Update/System.Security.Permissions.dll
%%DATADIR%%/Prowlarr.Update/System.Security.Principal.Windows.dll
%%DATADIR%%/Prowlarr.Update/System.Security.Principal.dll
%%DATADIR%%/Prowlarr.Update/System.Security.SecureString.dll
%%DATADIR%%/Prowlarr.Update/System.Security.dll
%%DATADIR%%/Prowlarr.Update/System.ServiceModel.Web.dll
%%DATADIR%%/Prowlarr.Update/System.ServiceProcess.ServiceController.dll
%%DATADIR%%/Prowlarr.Update/System.ServiceProcess.dll
%%DATADIR%%/Prowlarr.Update/System.Text.Encoding.CodePages.dll
%%DATADIR%%/Prowlarr.Update/System.Text.Encoding.Extensions.dll
%%DATADIR%%/Prowlarr.Update/System.Text.Encoding.dll
%%DATADIR%%/Prowlarr.Update/System.Text.Encodings.Web.dll
%%DATADIR%%/Prowlarr.Update/System.Text.Json.dll
%%DATADIR%%/Prowlarr.Update/System.Text.RegularExpressions.dll
%%DATADIR%%/Prowlarr.Update/System.Threading.Channels.dll
%%DATADIR%%/Prowlarr.Update/System.Threading.Overlapped.dll
%%DATADIR%%/Prowlarr.Update/System.Threading.Tasks.Dataflow.dll
%%DATADIR%%/Prowlarr.Update/System.Threading.Tasks.Extensions.dll
%%DATADIR%%/Prowlarr.Update/System.Threading.Tasks.Parallel.dll
%%DATADIR%%/Prowlarr.Update/System.Threading.Tasks.dll
%%DATADIR%%/Prowlarr.Update/System.Threading.Thread.dll
%%DATADIR%%/Prowlarr.Update/System.Threading.ThreadPool.dll
%%DATADIR%%/Prowlarr.Update/System.Threading.Timer.dll
%%DATADIR%%/Prowlarr.Update/System.Threading.dll
%%DATADIR%%/Prowlarr.Update/System.Transactions.Local.dll
%%DATADIR%%/Prowlarr.Update/System.Transactions.dll
%%DATADIR%%/Prowlarr.Update/System.ValueTuple.dll
%%DATADIR%%/Prowlarr.Update/System.Web.HttpUtility.dll
%%DATADIR%%/Prowlarr.Update/System.Web.dll
%%DATADIR%%/Prowlarr.Update/System.Windows.Extensions.dll
%%DATADIR%%/Prowlarr.Update/System.Windows.dll
%%DATADIR%%/Prowlarr.Update/System.Xml.Linq.dll
%%DATADIR%%/Prowlarr.Update/System.Xml.ReaderWriter.dll
%%DATADIR%%/Prowlarr.Update/System.Xml.Serialization.dll
%%DATADIR%%/Prowlarr.Update/System.Xml.XDocument.dll
%%DATADIR%%/Prowlarr.Update/System.Xml.XPath.XDocument.dll
%%DATADIR%%/Prowlarr.Update/System.Xml.XPath.dll
%%DATADIR%%/Prowlarr.Update/System.Xml.XmlDocument.dll
%%DATADIR%%/Prowlarr.Update/System.Xml.XmlSerializer.dll
%%DATADIR%%/Prowlarr.Update/System.Xml.dll
%%DATADIR%%/Prowlarr.Update/System.dll
%%DATADIR%%/Prowlarr.Update/WindowsBase.dll
%%DATADIR%%/Prowlarr.Update/libMonoPosixHelper.so
%%DATADIR%%/Prowlarr.Update/libSystem.Globalization.Native.so
%%DATADIR%%/Prowlarr.Update/libSystem.IO.Compression.Native.so
%%DATADIR%%/Prowlarr.Update/libSystem.Native.so
%%DATADIR%%/Prowlarr.Update/libSystem.Net.Security.Native.so
%%DATADIR%%/Prowlarr.Update/libSystem.Security.Cryptography.Native.OpenSsl.so
%%DATADIR%%/Prowlarr.Update/libclrjit.so
%%DATADIR%%/Prowlarr.Update/libcoreclr.so
%%DATADIR%%/Prowlarr.Update/libcoreclrtraceptprovider.so
%%DATADIR%%/Prowlarr.Update/libdbgshim.so
%%DATADIR%%/Prowlarr.Update/libhostfxr.so
%%DATADIR%%/Prowlarr.Update/libhostpolicy.so
%%DATADIR%%/Prowlarr.Update/libmscordaccore.so
%%DATADIR%%/Prowlarr.Update/libmscordbi.so
%%DATADIR%%/Prowlarr.Update/mscorlib.dll
%%DATADIR%%/Prowlarr.Update/netstandard.dll
%%DATADIR%%/Prowlarr.deps.json
%%DATADIR%%/Prowlarr.dll
%%DATADIR%%/Prowlarr.pdb
%%DATADIR%%/Prowlarr.runtimeconfig.json
%%DATADIR%%/ReusableTasks.dll
%%DATADIR%%/Sentry.dll
%%DATADIR%%/ServiceInstall
%%DATADIR%%/ServiceUninstall
%%DATADIR%%/System.AppContext.dll
%%DATADIR%%/System.Buffers.dll
%%DATADIR%%/System.Collections.Concurrent.dll
%%DATADIR%%/System.Collections.Immutable.dll
%%DATADIR%%/System.Collections.NonGeneric.dll
%%DATADIR%%/System.Collections.Specialized.dll
%%DATADIR%%/System.Collections.dll
%%DATADIR%%/System.ComponentModel.Annotations.dll
%%DATADIR%%/System.ComponentModel.DataAnnotations.dll
%%DATADIR%%/System.ComponentModel.EventBasedAsync.dll
%%DATADIR%%/System.ComponentModel.Primitives.dll
%%DATADIR%%/System.ComponentModel.TypeConverter.dll
%%DATADIR%%/System.ComponentModel.dll
%%DATADIR%%/System.Configuration.ConfigurationManager.dll
%%DATADIR%%/System.Configuration.dll
%%DATADIR%%/System.Console.dll
%%DATADIR%%/System.Core.dll
%%DATADIR%%/System.Data.Common.dll
%%DATADIR%%/System.Data.DataSetExtensions.dll
%%DATADIR%%/System.Data.SQLite.dll
%%DATADIR%%/System.Data.SqlServerCe.dll
%%DATADIR%%/System.Data.dll
%%DATADIR%%/System.Diagnostics.Contracts.dll
%%DATADIR%%/System.Diagnostics.Debug.dll
%%DATADIR%%/System.Diagnostics.DiagnosticSource.dll
%%DATADIR%%/System.Diagnostics.EventLog.dll
%%DATADIR%%/System.Diagnostics.FileVersionInfo.dll
%%DATADIR%%/System.Diagnostics.Process.dll
%%DATADIR%%/System.Diagnostics.StackTrace.dll
%%DATADIR%%/System.Diagnostics.TextWriterTraceListener.dll
%%DATADIR%%/System.Diagnostics.Tools.dll
%%DATADIR%%/System.Diagnostics.TraceSource.dll
%%DATADIR%%/System.Diagnostics.Tracing.dll
%%DATADIR%%/System.Drawing.Common.dll
%%DATADIR%%/System.Drawing.Primitives.dll
%%DATADIR%%/System.Drawing.dll
%%DATADIR%%/System.Dynamic.Runtime.dll
%%DATADIR%%/System.Formats.Asn1.dll
%%DATADIR%%/System.Globalization.Calendars.dll
%%DATADIR%%/System.Globalization.Extensions.dll
%%DATADIR%%/System.Globalization.dll
%%DATADIR%%/System.IO.Compression.Brotli.dll
%%DATADIR%%/System.IO.Compression.FileSystem.dll
%%DATADIR%%/System.IO.Compression.ZipFile.dll
%%DATADIR%%/System.IO.Compression.dll
%%DATADIR%%/System.IO.FileSystem.AccessControl.dll
%%DATADIR%%/System.IO.FileSystem.DriveInfo.dll
%%DATADIR%%/System.IO.FileSystem.Primitives.dll
%%DATADIR%%/System.IO.FileSystem.Watcher.dll
%%DATADIR%%/System.IO.FileSystem.dll
%%DATADIR%%/System.IO.IsolatedStorage.dll
%%DATADIR%%/System.IO.MemoryMappedFiles.dll
%%DATADIR%%/System.IO.Pipelines.dll
%%DATADIR%%/System.IO.Pipes.AccessControl.dll
%%DATADIR%%/System.IO.Pipes.dll
%%DATADIR%%/System.IO.UnmanagedMemoryStream.dll
%%DATADIR%%/System.IO.dll
%%DATADIR%%/System.IdentityModel.Tokens.Jwt.dll
%%DATADIR%%/System.Linq.Expressions.dll
%%DATADIR%%/System.Linq.Parallel.dll
%%DATADIR%%/System.Linq.Queryable.dll
%%DATADIR%%/System.Linq.dll
%%DATADIR%%/System.Memory.dll
%%DATADIR%%/System.Net.Http.Json.dll
%%DATADIR%%/System.Net.Http.dll
%%DATADIR%%/System.Net.HttpListener.dll
%%DATADIR%%/System.Net.Mail.dll
%%DATADIR%%/System.Net.NameResolution.dll
%%DATADIR%%/System.Net.NetworkInformation.dll
%%DATADIR%%/System.Net.Ping.dll
%%DATADIR%%/System.Net.Primitives.dll
%%DATADIR%%/System.Net.Quic.dll
%%DATADIR%%/System.Net.Requests.dll
%%DATADIR%%/System.Net.Security.dll
%%DATADIR%%/System.Net.ServicePoint.dll
%%DATADIR%%/System.Net.Sockets.dll
%%DATADIR%%/System.Net.WebClient.dll
%%DATADIR%%/System.Net.WebHeaderCollection.dll
%%DATADIR%%/System.Net.WebProxy.dll
%%DATADIR%%/System.Net.WebSockets.Client.dll
%%DATADIR%%/System.Net.WebSockets.dll
%%DATADIR%%/System.Net.dll
%%DATADIR%%/System.Numerics.Vectors.dll
%%DATADIR%%/System.Numerics.dll
%%DATADIR%%/System.ObjectModel.dll
%%DATADIR%%/System.Private.CoreLib.dll
%%DATADIR%%/System.Private.DataContractSerialization.dll
%%DATADIR%%/System.Private.Uri.dll
%%DATADIR%%/System.Private.Xml.Linq.dll
%%DATADIR%%/System.Private.Xml.dll
%%DATADIR%%/System.Reflection.DispatchProxy.dll
%%DATADIR%%/System.Reflection.Emit.ILGeneration.dll
%%DATADIR%%/System.Reflection.Emit.Lightweight.dll
%%DATADIR%%/System.Reflection.Emit.dll
%%DATADIR%%/System.Reflection.Extensions.dll
%%DATADIR%%/System.Reflection.Metadata.dll
%%DATADIR%%/System.Reflection.Primitives.dll
%%DATADIR%%/System.Reflection.TypeExtensions.dll
%%DATADIR%%/System.Reflection.dll
%%DATADIR%%/System.Resources.Reader.dll
%%DATADIR%%/System.Resources.ResourceManager.dll
%%DATADIR%%/System.Resources.Writer.dll
%%DATADIR%%/System.Runtime.Caching.dll
%%DATADIR%%/System.Runtime.CompilerServices.Unsafe.dll
%%DATADIR%%/System.Runtime.CompilerServices.VisualC.dll
%%DATADIR%%/System.Runtime.Extensions.dll
%%DATADIR%%/System.Runtime.Handles.dll
%%DATADIR%%/System.Runtime.InteropServices.RuntimeInformation.dll
%%DATADIR%%/System.Runtime.InteropServices.dll
%%DATADIR%%/System.Runtime.Intrinsics.dll
%%DATADIR%%/System.Runtime.Loader.dll
%%DATADIR%%/System.Runtime.Numerics.dll
%%DATADIR%%/System.Runtime.Serialization.Formatters.dll
%%DATADIR%%/System.Runtime.Serialization.Json.dll
%%DATADIR%%/System.Runtime.Serialization.Primitives.dll
%%DATADIR%%/System.Runtime.Serialization.Xml.dll
%%DATADIR%%/System.Runtime.Serialization.dll
%%DATADIR%%/System.Runtime.dll
%%DATADIR%%/System.Security.AccessControl.dll
%%DATADIR%%/System.Security.Claims.dll
%%DATADIR%%/System.Security.Cryptography.Algorithms.dll
%%DATADIR%%/System.Security.Cryptography.Cng.dll
%%DATADIR%%/System.Security.Cryptography.Csp.dll
%%DATADIR%%/System.Security.Cryptography.Encoding.dll
%%DATADIR%%/System.Security.Cryptography.OpenSsl.dll
%%DATADIR%%/System.Security.Cryptography.Pkcs.dll
%%DATADIR%%/System.Security.Cryptography.Primitives.dll
%%DATADIR%%/System.Security.Cryptography.ProtectedData.dll
%%DATADIR%%/System.Security.Cryptography.X509Certificates.dll
%%DATADIR%%/System.Security.Cryptography.Xml.dll
%%DATADIR%%/System.Security.Permissions.dll
%%DATADIR%%/System.Security.Principal.Windows.dll
%%DATADIR%%/System.Security.Principal.dll
%%DATADIR%%/System.Security.SecureString.dll
%%DATADIR%%/System.Security.dll
%%DATADIR%%/System.ServiceModel.Syndication.dll
%%DATADIR%%/System.ServiceModel.Web.dll
%%DATADIR%%/System.ServiceProcess.ServiceController.dll
%%DATADIR%%/System.ServiceProcess.dll
%%DATADIR%%/System.Text.Encoding.CodePages.dll
%%DATADIR%%/System.Text.Encoding.Extensions.dll
%%DATADIR%%/System.Text.Encoding.dll
%%DATADIR%%/System.Text.Encodings.Web.dll
%%DATADIR%%/System.Text.Json.dll
%%DATADIR%%/System.Text.RegularExpressions.dll
%%DATADIR%%/System.Threading.Channels.dll
%%DATADIR%%/System.Threading.Overlapped.dll
%%DATADIR%%/System.Threading.Tasks.Dataflow.dll
%%DATADIR%%/System.Threading.Tasks.Extensions.dll
%%DATADIR%%/System.Threading.Tasks.Parallel.dll
%%DATADIR%%/System.Threading.Tasks.dll
%%DATADIR%%/System.Threading.Thread.dll
%%DATADIR%%/System.Threading.ThreadPool.dll
%%DATADIR%%/System.Threading.Timer.dll
%%DATADIR%%/System.Threading.dll
%%DATADIR%%/System.Transactions.Local.dll
%%DATADIR%%/System.Transactions.dll
%%DATADIR%%/System.ValueTuple.dll
%%DATADIR%%/System.Web.HttpUtility.dll
%%DATADIR%%/System.Web.dll
%%DATADIR%%/System.Windows.Extensions.dll
%%DATADIR%%/System.Windows.dll
%%DATADIR%%/System.Xml.Linq.dll
%%DATADIR%%/System.Xml.ReaderWriter.dll
%%DATADIR%%/System.Xml.Serialization.dll
%%DATADIR%%/System.Xml.XDocument.dll
%%DATADIR%%/System.Xml.XPath.XDocument.dll
%%DATADIR%%/System.Xml.XPath.dll
%%DATADIR%%/System.Xml.XmlDocument.dll
%%DATADIR%%/System.Xml.XmlSerializer.dll
%%DATADIR%%/System.Xml.dll
%%DATADIR%%/System.dll
%%DATADIR%%/UI/Content/Fonts/Roboto-Light.ttf
%%DATADIR%%/UI/Content/Fonts/Roboto-Light.woff
%%DATADIR%%/UI/Content/Fonts/Roboto-Light.woff2
%%DATADIR%%/UI/Content/Fonts/Roboto-Regular.ttf
%%DATADIR%%/UI/Content/Fonts/Roboto-Regular.woff
%%DATADIR%%/UI/Content/Fonts/Roboto-Regular.woff2
%%DATADIR%%/UI/Content/Fonts/UbuntuMono-Regular.eot
%%DATADIR%%/UI/Content/Fonts/UbuntuMono-Regular.ttf
%%DATADIR%%/UI/Content/Fonts/UbuntuMono-Regular.woff
%%DATADIR%%/UI/Content/Fonts/fonts.css
%%DATADIR%%/UI/Content/Fonts/text-security-disc.ttf
%%DATADIR%%/UI/Content/Fonts/text-security-disc.woff
%%DATADIR%%/UI/Content/Images/404.png
%%DATADIR%%/UI/Content/Images/Icons/android-chrome-192x192.png
%%DATADIR%%/UI/Content/Images/Icons/android-chrome-512x512.png
%%DATADIR%%/UI/Content/Images/Icons/apple-touch-icon.png
%%DATADIR%%/UI/Content/Images/Icons/browserconfig.xml
%%DATADIR%%/UI/Content/Images/Icons/favicon-16x16.png
%%DATADIR%%/UI/Content/Images/Icons/favicon-32x32.png
%%DATADIR%%/UI/Content/Images/Icons/favicon-debug-16x16.png
%%DATADIR%%/UI/Content/Images/Icons/favicon-debug-32x32.png
%%DATADIR%%/UI/Content/Images/Icons/favicon-debug.ico
%%DATADIR%%/UI/Content/Images/Icons/favicon.ico
%%DATADIR%%/UI/Content/Images/Icons/logo-lidarr.png
%%DATADIR%%/UI/Content/Images/Icons/logo-prowlarr.png
%%DATADIR%%/UI/Content/Images/Icons/logo-radarr.png
%%DATADIR%%/UI/Content/Images/Icons/logo-readarr.png
%%DATADIR%%/UI/Content/Images/Icons/logo-sonarr.png
%%DATADIR%%/UI/Content/Images/Icons/manifest.json
%%DATADIR%%/UI/Content/Images/Icons/mstile-144x144.png
%%DATADIR%%/UI/Content/Images/Icons/mstile-150x150.png
%%DATADIR%%/UI/Content/Images/Icons/mstile-310x150.png
%%DATADIR%%/UI/Content/Images/Icons/mstile-310x310.png
%%DATADIR%%/UI/Content/Images/Icons/mstile-70x70.png
%%DATADIR%%/UI/Content/Images/Icons/safari-pinned-tab.svg
%%DATADIR%%/UI/Content/Images/error.png
%%DATADIR%%/UI/Content/Images/logo-full.png
%%DATADIR%%/UI/Content/Images/logo.png
%%DATADIR%%/UI/Content/Images/logo.svg
%%DATADIR%%/UI/Content/Images/poster-dark.png
%%DATADIR%%/UI/Content/robots.txt
%%DATADIR%%/UI/Content/styles.css
%%DATADIR%%/UI/Content/styles.css.map
%%DATADIR%%/UI/index.html
%%DATADIR%%/UI/index.js
%%DATADIR%%/UI/index.js.map
%%DATADIR%%/UI/login.html
%%DATADIR%%/UI/oauth.html
%%DATADIR%%/UI/vendors.js
%%DATADIR%%/UI/vendors.js.LICENSE.txt
%%DATADIR%%/UI/vendors.js.map
%%DATADIR%%/WindowsBase.dll
%%DATADIR%%/YamlDotNet.dll
%%DATADIR%%/de-DE/FluentMigrator.Abstractions.resources.dll
%%DATADIR%%/libMonoPosixHelper.so
%%DATADIR%%/libSystem.Globalization.Native.so
%%DATADIR%%/libSystem.IO.Compression.Native.so
%%DATADIR%%/libSystem.Native.so
%%DATADIR%%/libSystem.Net.Security.Native.so
%%DATADIR%%/libSystem.Security.Cryptography.Native.OpenSsl.so
%%DATADIR%%/libclrjit.so
%%DATADIR%%/libcoreclr.so
%%DATADIR%%/libcoreclrtraceptprovider.so
%%DATADIR%%/libdbgshim.so
%%DATADIR%%/libhostfxr.so
%%DATADIR%%/libhostpolicy.so
%%DATADIR%%/libmscordaccore.so
%%DATADIR%%/libmscordbi.so
%%DATADIR%%/mscorlib.dll
%%DATADIR%%/netstandard.dll