From ccb7ca3c039d68090e50e4bb24355f6415adbce7 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Sun, 5 Dec 2021 09:52:35 -0600 Subject: [PATCH] =?UTF-8?q?refactor(dir):=20=E2=99=BB=20make=20ViewUrl=20o?= =?UTF-8?q?wned=20by=20FilterList?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ....cs => 20211205154614_Initial.Designer.cs} | 104 +- ...1_Initial.cs => 20211205154614_Initial.cs} | 2 +- ...cs => 20211205154639_SeedData.Designer.cs} | 42940 ++++++++-------- ...SeedData.cs => 20211205154639_SeedData.cs} | 16048 +++--- .../Migrations/QueryDbContextModelSnapshot.cs | 42938 ++++++++------- .../FilterListTypeConfiguration.cs | 19 +- .../FilterListViewUrlTypeConfiguration.cs | 18 - .../Queries/Entities/FilterList.cs | 20 +- .../Queries/Entities/FilterListViewUrl.cs | 26 +- .../Persistence/SeedExtensions.cs | 11 + 10 files changed, 51055 insertions(+), 51071 deletions(-) rename services/Directory/FilterLists.Directory.Infrastructure.Migrations/Migrations/{20211205104001_Initial.Designer.cs => 20211205154614_Initial.Designer.cs} (94%) rename services/Directory/FilterLists.Directory.Infrastructure.Migrations/Migrations/{20211205104001_Initial.cs => 20211205154614_Initial.cs} (99%) rename services/Directory/FilterLists.Directory.Infrastructure.Migrations/Migrations/{20211205104022_SeedData.Designer.cs => 20211205154639_SeedData.Designer.cs} (70%) rename services/Directory/FilterLists.Directory.Infrastructure.Migrations/Migrations/{20211205104022_SeedData.cs => 20211205154639_SeedData.cs} (88%) delete mode 100644 services/Directory/FilterLists.Directory.Infrastructure/Persistence/Commands/EntityTypeConfigurations/FilterListViewUrlTypeConfiguration.cs diff --git a/services/Directory/FilterLists.Directory.Infrastructure.Migrations/Migrations/20211205104001_Initial.Designer.cs b/services/Directory/FilterLists.Directory.Infrastructure.Migrations/Migrations/20211205154614_Initial.Designer.cs similarity index 94% rename from services/Directory/FilterLists.Directory.Infrastructure.Migrations/Migrations/20211205104001_Initial.Designer.cs rename to services/Directory/FilterLists.Directory.Infrastructure.Migrations/Migrations/20211205154614_Initial.Designer.cs index 0b7d99d49..d5c08cc1e 100644 --- a/services/Directory/FilterLists.Directory.Infrastructure.Migrations/Migrations/20211205104001_Initial.Designer.cs +++ b/services/Directory/FilterLists.Directory.Infrastructure.Migrations/Migrations/20211205154614_Initial.Designer.cs @@ -14,7 +14,7 @@ namespace FilterLists.Directory.Infrastructure.Migrations.Migrations { [DbContext(typeof(QueryDbContext))] - [Migration("20211205104001_Initial")] + [Migration("20211205154614_Initial")] partial class Initial { protected override void BuildTargetModel(ModelBuilder modelBuilder) @@ -297,46 +297,6 @@ protected override void BuildTargetModel(ModelBuilder modelBuilder) b.ToTable("filter_list_tags", (string)null); }); - modelBuilder.Entity("FilterLists.Directory.Infrastructure.Persistence.Queries.Entities.FilterListViewUrl", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("bigint") - .HasColumnName("id"); - - NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); - - b.Property("FilterListId") - .HasColumnType("bigint") - .HasColumnName("filter_list_id"); - - b.Property("Primariness") - .ValueGeneratedOnAdd() - .HasColumnType("smallint") - .HasDefaultValue((short)1) - .HasColumnName("primariness"); - - b.Property("SegmentNumber") - .ValueGeneratedOnAdd() - .HasColumnType("smallint") - .HasDefaultValue((short)1) - .HasColumnName("segment_number"); - - b.Property("Url") - .IsRequired() - .HasColumnType("text") - .HasColumnName("url"); - - b.HasKey("Id") - .HasName("pk_filter_list_view_urls"); - - b.HasIndex("FilterListId", "SegmentNumber", "Primariness") - .IsUnique() - .HasDatabaseName("ix_filter_list_view_urls_filter_list_id_segment_number_primari"); - - b.ToTable("filter_list_view_urls", (string)null); - }); - modelBuilder.Entity("FilterLists.Directory.Infrastructure.Persistence.Queries.Entities.Fork", b => { b.Property("UpstreamFilterListId") @@ -705,7 +665,55 @@ protected override void BuildTargetModel(ModelBuilder modelBuilder) .IsRequired() .HasConstraintName("fk_filter_lists_licenses_license_id"); + b.OwnsMany("FilterLists.Directory.Infrastructure.Persistence.Queries.Entities.FilterListViewUrl", "ViewUrls", b1 => + { + b1.Property("FilterListId") + .HasColumnType("bigint") + .HasColumnName("filter_list_id"); + + b1.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("bigint") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b1.Property("Id")); + + b1.Property("Primariness") + .ValueGeneratedOnAdd() + .HasColumnType("smallint") + .HasDefaultValue((short)1) + .HasColumnName("primariness"); + + b1.Property("SegmentNumber") + .ValueGeneratedOnAdd() + .HasColumnType("smallint") + .HasDefaultValue((short)1) + .HasColumnName("segment_number"); + + b1.Property("Url") + .IsRequired() + .HasColumnType("text") + .HasColumnName("url"); + + b1.HasKey("FilterListId", "Id") + .HasName("pk_filter_list_view_urls"); + + b1.HasIndex("FilterListId", "SegmentNumber", "Primariness") + .IsUnique() + .HasDatabaseName("ix_filter_list_view_urls_filter_list_id_segment_number_primari"); + + b1.ToTable("filter_list_view_urls", (string)null); + + b1.WithOwner("FilterList") + .HasForeignKey("FilterListId") + .HasConstraintName("fk_filter_list_view_urls_filter_lists_filter_list_id"); + + b1.Navigation("FilterList"); + }); + b.Navigation("License"); + + b.Navigation("ViewUrls"); }); modelBuilder.Entity("FilterLists.Directory.Infrastructure.Persistence.Queries.Entities.FilterListLanguage", b => @@ -792,18 +800,6 @@ protected override void BuildTargetModel(ModelBuilder modelBuilder) b.Navigation("Tag"); }); - modelBuilder.Entity("FilterLists.Directory.Infrastructure.Persistence.Queries.Entities.FilterListViewUrl", b => - { - b.HasOne("FilterLists.Directory.Infrastructure.Persistence.Queries.Entities.FilterList", "FilterList") - .WithMany("ViewUrls") - .HasForeignKey("FilterListId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired() - .HasConstraintName("fk_filter_list_view_urls_filter_lists_filter_list_id"); - - b.Navigation("FilterList"); - }); - modelBuilder.Entity("FilterLists.Directory.Infrastructure.Persistence.Queries.Entities.Fork", b => { b.HasOne("FilterLists.Directory.Infrastructure.Persistence.Queries.Entities.FilterList", "ForkFilterList") @@ -890,8 +886,6 @@ protected override void BuildTargetModel(ModelBuilder modelBuilder) b.Navigation("IncludesFilterLists"); b.Navigation("UpstreamFilterLists"); - - b.Navigation("ViewUrls"); }); modelBuilder.Entity("FilterLists.Directory.Infrastructure.Persistence.Queries.Entities.Language", b => diff --git a/services/Directory/FilterLists.Directory.Infrastructure.Migrations/Migrations/20211205104001_Initial.cs b/services/Directory/FilterLists.Directory.Infrastructure.Migrations/Migrations/20211205154614_Initial.cs similarity index 99% rename from services/Directory/FilterLists.Directory.Infrastructure.Migrations/Migrations/20211205104001_Initial.cs rename to services/Directory/FilterLists.Directory.Infrastructure.Migrations/Migrations/20211205154614_Initial.cs index 321645bbd..f03460883 100644 --- a/services/Directory/FilterLists.Directory.Infrastructure.Migrations/Migrations/20211205104001_Initial.cs +++ b/services/Directory/FilterLists.Directory.Infrastructure.Migrations/Migrations/20211205154614_Initial.cs @@ -364,7 +364,7 @@ protected override void Up(MigrationBuilder migrationBuilder) }, constraints: table => { - table.PrimaryKey("pk_filter_list_view_urls", x => x.id); + table.PrimaryKey("pk_filter_list_view_urls", x => new { x.filter_list_id, x.id }); table.ForeignKey( name: "fk_filter_list_view_urls_filter_lists_filter_list_id", column: x => x.filter_list_id, diff --git a/services/Directory/FilterLists.Directory.Infrastructure.Migrations/Migrations/20211205104022_SeedData.Designer.cs b/services/Directory/FilterLists.Directory.Infrastructure.Migrations/Migrations/20211205154639_SeedData.Designer.cs similarity index 70% rename from services/Directory/FilterLists.Directory.Infrastructure.Migrations/Migrations/20211205104022_SeedData.Designer.cs rename to services/Directory/FilterLists.Directory.Infrastructure.Migrations/Migrations/20211205154639_SeedData.Designer.cs index f44115bb2..c57ad55a6 100644 --- a/services/Directory/FilterLists.Directory.Infrastructure.Migrations/Migrations/20211205104022_SeedData.Designer.cs +++ b/services/Directory/FilterLists.Directory.Infrastructure.Migrations/Migrations/20211205154639_SeedData.Designer.cs @@ -14,7 +14,7 @@ namespace FilterLists.Directory.Infrastructure.Migrations.Migrations { [DbContext(typeof(QueryDbContext))] - [Migration("20211205104022_SeedData")] + [Migration("20211205154639_SeedData")] partial class SeedData { protected override void BuildTargetModel(ModelBuilder modelBuilder) @@ -60374,21464 +60374,6 @@ protected override void BuildTargetModel(ModelBuilder modelBuilder) }); }); - modelBuilder.Entity("FilterLists.Directory.Infrastructure.Persistence.Queries.Entities.FilterListViewUrl", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("bigint") - .HasColumnName("id"); - - NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); - - b.Property("FilterListId") - .HasColumnType("bigint") - .HasColumnName("filter_list_id"); - - b.Property("Primariness") - .ValueGeneratedOnAdd() - .HasColumnType("smallint") - .HasDefaultValue((short)1) - .HasColumnName("primariness"); - - b.Property("SegmentNumber") - .ValueGeneratedOnAdd() - .HasColumnType("smallint") - .HasDefaultValue((short)1) - .HasColumnName("segment_number"); - - b.Property("Url") - .IsRequired() - .HasColumnType("text") - .HasColumnName("url"); - - b.HasKey("Id") - .HasName("pk_filter_list_view_urls"); - - b.HasIndex("FilterListId", "SegmentNumber", "Primariness") - .IsUnique() - .HasDatabaseName("ix_filter_list_view_urls_filter_list_id_segment_number_primari"); - - b.ToTable("filter_list_view_urls", (string)null); - - b.HasData( - new - { - Id = 1L, - FilterListId = 1L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-mob.txt" - }, - new - { - Id = 2L, - FilterListId = 2L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/B-Con/mute/master/mute.txt" - }, - new - { - Id = 3L, - FilterListId = 3L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://adblock.mahakala.is/" - }, - new - { - Id = 4L, - FilterListId = 4L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/michaeltrimm/hosts-blocking/master/_hosts.txt" - }, - new - { - Id = 5L, - FilterListId = 4L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/michaeltrimm/hosts-blocking/master/_hosts.txt" - }, - new - { - Id = 6L, - FilterListId = 4L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/michaeltrimm/hosts-blocking/master/_hosts.txt" - }, - new - { - Id = 7L, - FilterListId = 5L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hg.adblockplus.org/facebookfilters/file/tip/message_seen_remover_for_facebook.txt" - }, - new - { - Id = 8L, - FilterListId = 6L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mayve/private-adblock-filters/master/Adblock_List.txt" - }, - new - { - Id = 9L, - FilterListId = 6L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/mayve/private-adblock-filters/master/Adblock_List.txt" - }, - new - { - Id = 10L, - FilterListId = 6L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/mayve/private-adblock-filters/master/Adblock_List.txt" - }, - new - { - Id = 11L, - FilterListId = 10L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.malwaredomainlist.com/hostslist/hosts.txt" - }, - new - { - Id = 12L, - FilterListId = 11L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/liste_fr+easylist.txt" - }, - new - { - Id = 13L, - FilterListId = 12L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/liste_fr.txt" - }, - new - { - Id = 14L, - FilterListId = 13L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/liste_ar+liste_fr+easylist.txt" - }, - new - { - Id = 15L, - FilterListId = 14L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/Liste_AR.txt" - }, - new - { - Id = 16L, - FilterListId = 16L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/List-KR/List-KR/master/filter.txt" - }, - new - { - Id = 17L, - FilterListId = 17L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://winhelp2002.mvps.org/hosts.txt" - }, - new - { - Id = 18L, - FilterListId = 17L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/data/mvps.org/hosts" - }, - new - { - Id = 19L, - FilterListId = 17L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/data/mvps.org/hosts" - }, - new - { - Id = 20L, - FilterListId = 18L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/taylr/linkedinsanity/master/linkedinsanity.txt" - }, - new - { - Id = 21L, - FilterListId = 18L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/taylr/linkedinsanity/master/linkedinsanity.txt" - }, - new - { - Id = 22L, - FilterListId = 18L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/taylr/linkedinsanity/master/linkedinsanity.txt" - }, - new - { - Id = 23L, - FilterListId = 19L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/hoshsadiq/adblock-nocoin-list/master/nocoin.txt" - }, - new - { - Id = 24L, - FilterListId = 19L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/hoshsadiq/adblock-nocoin-list/master/nocoin.txt" - }, - new - { - Id = 25L, - FilterListId = 19L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/hoshsadiq/adblock-nocoin-list/master/nocoin.txt" - }, - new - { - Id = 26L, - FilterListId = 20L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianList.txt" - }, - new - { - Id = 27L, - FilterListId = 20L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianList.txt" - }, - new - { - Id = 28L, - FilterListId = 27L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/metaphoricgiraffe/tracking-filters/master/trackingfilters.txt" - }, - new - { - Id = 29L, - FilterListId = 27L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/metaphoricgiraffe/tracking-filters/master/trackingfilters.txt" - }, - new - { - Id = 30L, - FilterListId = 27L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/metaphoricgiraffe/tracking-filters/master/trackingfilters.txt" - }, - new - { - Id = 31L, - FilterListId = 28L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/liamja/Prebake/master/quiet.txt" - }, - new - { - Id = 32L, - FilterListId = 28L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/liamja/Prebake/master/quiet.txt" - }, - new - { - Id = 33L, - FilterListId = 28L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/liamja/Prebake/master/quiet.txt" - }, - new - { - Id = 34L, - FilterListId = 29L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/liamja/Prebake/master/obtrusive.txt" - }, - new - { - Id = 35L, - FilterListId = 29L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/liamja/Prebake/master/obtrusive.txt" - }, - new - { - Id = 36L, - FilterListId = 29L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/liamja/Prebake/master/obtrusive.txt" - }, - new - { - Id = 37L, - FilterListId = 30L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PPB.txt" - }, - new - { - Id = 38L, - FilterListId = 30L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/FiltersHeroes/PolishAnnoyanceFilters/master/PPB.txt" - }, - new - { - Id = 39L, - FilterListId = 30L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/FiltersHeroes/PolishAnnoyanceFilters/master/PPB.txt" - }, - new - { - Id = 40L, - FilterListId = 31L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.niecko.pl/adblock/adblock.txt" - }, - new - { - Id = 41L, - FilterListId = 32L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=adblockplus&showintro=1&mimetype=plaintext" - }, - new - { - Id = 42L, - FilterListId = 33L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/LordBadmintonofYorkshire/Overlay-Blocker/master/blocklist.txt" - }, - new - { - Id = 43L, - FilterListId = 33L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/LordBadmintonofYorkshire/Overlay-Blocker/master/blocklist.txt" - }, - new - { - Id = 44L, - FilterListId = 33L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/LordBadmintonofYorkshire/Overlay-Blocker/master/blocklist.txt" - }, - new - { - Id = 45L, - FilterListId = 34L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://openphish.com/feed.txt" - }, - new - { - Id = 46L, - FilterListId = 36L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/genediazjr/nopelist/master/nopelist.txt" - }, - new - { - Id = 47L, - FilterListId = 36L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/genediazjr/nopelist/master/nopelist.txt" - }, - new - { - Id = 48L, - FilterListId = 36L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/genediazjr/nopelist/master/nopelist.txt" - }, - new - { - Id = 49L, - FilterListId = 38L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Rpsl/adblock-leadgenerator-list/master/list/list.txt" - }, - new - { - Id = 50L, - FilterListId = 38L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/Rpsl/adblock-leadgenerator-list/master/list/list.txt" - }, - new - { - Id = 51L, - FilterListId = 38L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/Rpsl/adblock-leadgenerator-list/master/list/list.txt" - }, - new - { - Id = 52L, - FilterListId = 39L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://notabug.org/latvian-list/adblock-latvian/raw/master/lists/latvian-list.txt" - }, - new - { - Id = 53L, - FilterListId = 47L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/NanoMeow/UltimateMirror/master/archive/hphosts.txt" - }, - new - { - Id = 54L, - FilterListId = 47L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/static/HPHosts/HostsAdServers.txt" - }, - new - { - Id = 55L, - FilterListId = 49L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://sites.google.com/site/hosts2ch/ja?attredirects=0" - }, - new - { - Id = 56L, - FilterListId = 50L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/HexxiumCreations/threat-list/gh-pages/hexxiumthreatlist.txt" - }, - new - { - Id = 57L, - FilterListId = 50L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/HexxiumCreations/threat-list/gh-pages/hexxiumthreatlist.txt" - }, - new - { - Id = 58L, - FilterListId = 50L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/HexxiumCreations/threat-list/gh-pages/hexxiumthreatlist.txt" - }, - new - { - Id = 59L, - FilterListId = 51L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kargig/greek-adblockplus-filter/master/void-gr-filters.txt" - }, - new - { - Id = 60L, - FilterListId = 51L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/kargig/greek-adblockplus-filter/master/void-gr-filters.txt" - }, - new - { - Id = 61L, - FilterListId = 51L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/kargig/greek-adblockplus-filter/master/void-gr-filters.txt" - }, - new - { - Id = 62L, - FilterListId = 52L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gnuzilla.gnu.org/filters/blacklist.txt" - }, - new - { - Id = 63L, - FilterListId = 53L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/gmbkslist (Hosts).txt" - }, - new - { - Id = 64L, - FilterListId = 53L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/DandelionSprout/adfilt/master/AncientLibrary/gmbkslist (Hosts).txt" - }, - new - { - Id = 65L, - FilterListId = 54L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://web.archive.org/web/20160221140034if_/http://adblock.gjtech.net/?format=unix-hosts" - }, - new - { - Id = 66L, - FilterListId = 56L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/latvianlist+easylist.txt" - }, - new - { - Id = 67L, - FilterListId = 59L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/gfmaster/adblock-korea-contrib/master/filter.txt" - }, - new - { - Id = 68L, - FilterListId = 59L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/gfmaster/adblock-korea-contrib/master/filter.txt" - }, - new - { - Id = 69L, - FilterListId = 59L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/gfmaster/adblock-korea-contrib/master/filter.txt" - }, - new - { - Id = 70L, - FilterListId = 60L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/KADhosts/master/KADhosts.txt" - }, - new - { - Id = 71L, - FilterListId = 60L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/FiltersHeroes/KADhosts/master/KADhosts.txt" - }, - new - { - Id = 72L, - FilterListId = 60L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/FiltersHeroes/KADhosts/master/KADhosts.txt" - }, - new - { - Id = 73L, - FilterListId = 61L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/KAD/master/KAD.txt" - }, - new - { - Id = 74L, - FilterListId = 61L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/FiltersHeroes/KAD/master/KAD.txt" - }, - new - { - Id = 75L, - FilterListId = 61L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/FiltersHeroes/KAD/master/KAD.txt" - }, - new - { - Id = 76L, - FilterListId = 62L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://qme.mydns.jp/data/AdblockV2.txt" - }, - new - { - Id = 77L, - FilterListId = 63L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://qme.mydns.jp/data/Adblock.txt" - }, - new - { - Id = 78L, - FilterListId = 64L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/lewisje/jansal/master/adblock/hostslt" - }, - new - { - Id = 79L, - FilterListId = 64L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/lewisje/jansal/master/adblock/hostslt" - }, - new - { - Id = 80L, - FilterListId = 64L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitcdn.link/repo/lewisje/jansal/master/adblock/hostslt" - }, - new - { - Id = 81L, - FilterListId = 65L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/lewisje/jansal/master/adblock/hosts" - }, - new - { - Id = 82L, - FilterListId = 65L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/lewisje/jansal/master/adblock/hosts" - }, - new - { - Id = 83L, - FilterListId = 65L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitcdn.link/repo/lewisje/jansal/master/adblock/hosts" - }, - new - { - Id = 84L, - FilterListId = 66L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.jabcreations.com/downloads/adblock-filters.php" - }, - new - { - Id = 85L, - FilterListId = 67L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/piperun/iploggerfilter/master/filterlist" - }, - new - { - Id = 86L, - FilterListId = 67L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/piperun/iploggerfilter/master/filterlist" - }, - new - { - Id = 87L, - FilterListId = 67L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitcdn.link/repo/piperun/iploggerfilter/master/filterlist" - }, - new - { - Id = 88L, - FilterListId = 68L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ilyakatz/adblock_filters/master/inpage_popups.txt" - }, - new - { - Id = 89L, - FilterListId = 68L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/ilyakatz/adblock_filters/master/inpage_popups.txt" - }, - new - { - Id = 90L, - FilterListId = 68L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/ilyakatz/adblock_filters/master/inpage_popups.txt" - }, - new - { - Id = 91L, - FilterListId = 69L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://adblock.gardar.net/is.abp.txt" - }, - new - { - Id = 92L, - FilterListId = 70L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Rudloff/adblock-imokwithcookies/master/filters.txt" - }, - new - { - Id = 93L, - FilterListId = 70L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/Rudloff/adblock-imokwithcookies/master/filters.txt" - }, - new - { - Id = 94L, - FilterListId = 70L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/Rudloff/adblock-imokwithcookies/master/filters.txt" - }, - new - { - Id = 95L, - FilterListId = 71L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.i-dont-care-about-cookies.eu/abp/" - }, - new - { - Id = 96L, - FilterListId = 72L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/hufilter/hufilter/master/hufilter.txt" - }, - new - { - Id = 97L, - FilterListId = 72L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://repo.or.cz/Adblock-list-backups-hufilter.git/blob_plain/refs/heads/master:/hufilter.txt" - }, - new - { - Id = 98L, - FilterListId = 72L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/hufilter/hufilter/master/hufilter.txt" - }, - new - { - Id = 99L, - FilterListId = 78L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts" - }, - new - { - Id = 100L, - FilterListId = 78L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://sbc.io/hosts/alternates/gambling-porn/hosts" - }, - new - { - Id = 101L, - FilterListId = 78L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/gambling-porn/hosts" - }, - new - { - Id = 102L, - FilterListId = 79L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts" - }, - new - { - Id = 103L, - FilterListId = 79L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://sbc.io/hosts/alternates/gambling/hosts" - }, - new - { - Id = 104L, - FilterListId = 79L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/gambling/hosts" - }, - new - { - Id = 105L, - FilterListId = 80L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts" - }, - new - { - Id = 106L, - FilterListId = 80L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://sbc.io/hosts/hosts" - }, - new - { - Id = 107L, - FilterListId = 80L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/hosts" - }, - new - { - Id = 108L, - FilterListId = 81L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/UncheckyAds/hosts" - }, - new - { - Id = 109L, - FilterListId = 81L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/data/UncheckyAds/hosts" - }, - new - { - Id = 110L, - FilterListId = 81L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/data/UncheckyAds/hosts" - }, - new - { - Id = 111L, - FilterListId = 82L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/uBlock-user/uBO-Personal-Filters/master/uPF.txt" - }, - new - { - Id = 112L, - FilterListId = 82L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/uBlock-user/uBO-Personal-Filters/master/uPF.txt" - }, - new - { - Id = 113L, - FilterListId = 82L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/uBlock-user/uBO-Personal-Filters/master/uPF.txt" - }, - new - { - Id = 114L, - FilterListId = 83L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/NanoAdblocker/NanoFilters/master/NanoMirror/NanoDefender.txt" - }, - new - { - Id = 115L, - FilterListId = 83L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/NanoAdblocker/NanoFilters/master/NanoMirror/NanoDefender.txt" - }, - new - { - Id = 116L, - FilterListId = 84L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock_ublock.txt" - }, - new - { - Id = 117L, - FilterListId = 84L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock_ublock.txt" - }, - new - { - Id = 118L, - FilterListId = 84L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock_ublock.txt" - }, - new - { - Id = 119L, - FilterListId = 85L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/IDKwhattoputhere/uBlock-Filters-Plus/master/uBlock-Filters-Plus.txt" - }, - new - { - Id = 120L, - FilterListId = 85L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/IDKwhattoputhere/uBlock-Filters-Plus/master/uBlock-Filters-Plus.txt" - }, - new - { - Id = 121L, - FilterListId = 85L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/IDKwhattoputhere/uBlock-Filters-Plus/master/uBlock-Filters-Plus.txt" - }, - new - { - Id = 122L, - FilterListId = 86L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/byaka/ublock-antiskimming-list/master/build/data.txt" - }, - new - { - Id = 123L, - FilterListId = 86L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/byaka/ublock-antiskimming-list/master/build/data.txt" - }, - new - { - Id = 124L, - FilterListId = 86L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/byaka/ublock-antiskimming-list/master/build/data.txt" - }, - new - { - Id = 125L, - FilterListId = 87L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/unbreak.txt" - }, - new - { - Id = 126L, - FilterListId = 87L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/uBlockOrigin/uAssets/master/filters/unbreak.txt" - }, - new - { - Id = 127L, - FilterListId = 87L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/uBlockOrigin/uAssets/master/filters/unbreak.txt" - }, - new - { - Id = 128L, - FilterListId = 88L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/privacy.txt" - }, - new - { - Id = 129L, - FilterListId = 88L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/uBlockOrigin/uAssets/master/filters/privacy.txt" - }, - new - { - Id = 130L, - FilterListId = 88L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/uBlockOrigin/uAssets/master/filters/privacy.txt" - }, - new - { - Id = 131L, - FilterListId = 89L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/filters.txt" - }, - new - { - Id = 132L, - FilterListId = 89L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/uBlockOrigin/uAssets/master/filters/filters.txt" - }, - new - { - Id = 133L, - FilterListId = 89L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/uBlockOrigin/uAssets/master/filters/filters.txt" - }, - new - { - Id = 137L, - FilterListId = 91L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/badware.txt" - }, - new - { - Id = 138L, - FilterListId = 91L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/uBlockOrigin/uAssets/master/filters/badware.txt" - }, - new - { - Id = 139L, - FilterListId = 91L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/uBlockOrigin/uAssets/master/filters/badware.txt" - }, - new - { - Id = 140L, - FilterListId = 93L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts" - }, - new - { - Id = 141L, - FilterListId = 93L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://sbc.io/hosts/alternates/gambling-porn-social/hosts" - }, - new - { - Id = 142L, - FilterListId = 93L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/gambling-porn-social/hosts" - }, - new - { - Id = 143L, - FilterListId = 94L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.topcashback.com/Misc/AdBlockWhiteList.aspx" - }, - new - { - Id = 144L, - FilterListId = 95L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts" - }, - new - { - Id = 145L, - FilterListId = 95L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://sbc.io/hosts/alternates/gambling-social/hosts" - }, - new - { - Id = 146L, - FilterListId = 95L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/gambling-social/hosts" - }, - new - { - Id = 147L, - FilterListId = 96L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts" - }, - new - { - Id = 148L, - FilterListId = 96L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://sbc.io/hosts/alternates/porn-social/hosts" - }, - new - { - Id = 149L, - FilterListId = 96L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/porn-social/hosts" - }, - new - { - Id = 151L, - FilterListId = 97L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hg.adblockplus.org/youtubefilters/raw-file/default/yt_annoyances_full.txt" - }, - new - { - Id = 153L, - FilterListId = 98L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hg.adblockplus.org/youtubefilters/raw-file/default/yt_annoyances_other.txt" - }, - new - { - Id = 154L, - FilterListId = 99L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/yous/YousList/master/youslist.txt" - }, - new - { - Id = 155L, - FilterListId = 99L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/yous/YousList/master/youslist.txt" - }, - new - { - Id = 156L, - FilterListId = 99L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/yous/YousList/master/youslist.txt" - }, - new - { - Id = 157L, - FilterListId = 100L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/wiltteri/subscriptions/master/wiltteri-reborn.txt" - }, - new - { - Id = 158L, - FilterListId = 100L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/wiltteri/subscriptions/master/wiltteri-reborn.txt" - }, - new - { - Id = 159L, - FilterListId = 100L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/wiltteri/subscriptions/master/wiltteri-reborn.txt" - }, - new - { - Id = 160L, - FilterListId = 101L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/wiltteri/subscriptions/master/wiltteri.txt" - }, - new - { - Id = 161L, - FilterListId = 101L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/wiltteri/subscriptions/master/wiltteri.txt" - }, - new - { - Id = 162L, - FilterListId = 101L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/wiltteri/subscriptions/master/wiltteri.txt" - }, - new - { - Id = 163L, - FilterListId = 102L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/ultralist.txt" - }, - new - { - Id = 164L, - FilterListId = 102L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/yourduskquibbles/webannoyances/master/ultralist.txt" - }, - new - { - Id = 165L, - FilterListId = 102L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/yourduskquibbles/webannoyances/master/ultralist.txt" - }, - new - { - Id = 166L, - FilterListId = 103L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts" - }, - new - { - Id = 167L, - FilterListId = 103L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts" - }, - new - { - Id = 168L, - FilterListId = 103L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-gambling-porn-social/hosts" - }, - new - { - Id = 169L, - FilterListId = 104L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts" - }, - new - { - Id = 170L, - FilterListId = 104L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://sbc.io/hosts/alternates/fakenews-porn-social/hosts" - }, - new - { - Id = 171L, - FilterListId = 104L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-porn-social/hosts" - }, - new - { - Id = 172L, - FilterListId = 105L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts" - }, - new - { - Id = 173L, - FilterListId = 105L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts" - }, - new - { - Id = 174L, - FilterListId = 105L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-gambling-social/hosts" - }, - new - { - Id = 175L, - FilterListId = 106L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts" - }, - new - { - Id = 176L, - FilterListId = 106L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts" - }, - new - { - Id = 177L, - FilterListId = 106L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-gambling-porn/hosts" - }, - new - { - Id = 178L, - FilterListId = 107L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts" - }, - new - { - Id = 179L, - FilterListId = 107L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://sbc.io/hosts/alternates/fakenews-social/hosts" - }, - new - { - Id = 180L, - FilterListId = 107L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-social/hosts" - }, - new - { - Id = 181L, - FilterListId = 108L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts" - }, - new - { - Id = 182L, - FilterListId = 108L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://sbc.io/hosts/alternates/fakenews-porn/hosts" - }, - new - { - Id = 183L, - FilterListId = 108L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-porn/hosts" - }, - new - { - Id = 184L, - FilterListId = 109L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts" - }, - new - { - Id = 185L, - FilterListId = 109L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://sbc.io/hosts/alternates/fakenews-gambling/hosts" - }, - new - { - Id = 186L, - FilterListId = 109L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-gambling/hosts" - }, - new - { - Id = 187L, - FilterListId = 110L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts" - }, - new - { - Id = 188L, - FilterListId = 110L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://sbc.io/hosts/alternates/fakenews/hosts" - }, - new - { - Id = 189L, - FilterListId = 110L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews/hosts" - }, - new - { - Id = 190L, - FilterListId = 111L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts" - }, - new - { - Id = 191L, - FilterListId = 111L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://sbc.io/hosts/alternates/social/hosts" - }, - new - { - Id = 192L, - FilterListId = 111L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/social/hosts" - }, - new - { - Id = 193L, - FilterListId = 112L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts" - }, - new - { - Id = 194L, - FilterListId = 112L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://sbc.io/hosts/alternates/porn/hosts" - }, - new - { - Id = 195L, - FilterListId = 112L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/porn/hosts" - }, - new - { - Id = 196L, - FilterListId = 113L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tofukko/filter/master/Adblock_Plus_list.txt" - }, - new - { - Id = 197L, - FilterListId = 114L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/thoughtconverge/abf/master/abf.txt" - }, - new - { - Id = 198L, - FilterListId = 114L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/thoughtconverge/abf/master/abf.txt" - }, - new - { - Id = 199L, - FilterListId = 114L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/thoughtconverge/abf/master/abf.txt" - }, - new - { - Id = 200L, - FilterListId = 115L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hostsfile.mine.nu/hosts0.txt" - }, - new - { - Id = 201L, - FilterListId = 116L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.zoso.ro/pages/rolist2.txt" - }, - new - { - Id = 202L, - FilterListId = 117L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/rolist+easylist.txt" - }, - new - { - Id = 203L, - FilterListId = 118L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.zoso.ro/pages/rolist.txt" - }, - new - { - Id = 204L, - FilterListId = 119L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://road.adblock.ro/lista.txt" - }, - new - { - Id = 205L, - FilterListId = 119L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tcptomato/ROad-Block/master/road-block-filters-light.txt" - }, - new - { - Id = 206L, - FilterListId = 119L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/tcptomato/ROad-Block/master/road-block-filters-light.txt" - }, - new - { - Id = 207L, - FilterListId = 131L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/advblock.txt" - }, - new - { - Id = 208L, - FilterListId = 132L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://denis-ovs.narod.ru/adblock.txt" - }, - new - { - Id = 209L, - FilterListId = 133L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/ruadlist+easylist.txt" - }, - new - { - Id = 210L, - FilterListId = 134L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/bitblock.txt" - }, - new - { - Id = 211L, - FilterListId = 135L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hostsfile.mine.nu/downloads/adblock.txt" - }, - new - { - Id = 212L, - FilterListId = 136L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/betterwebleon/slovenian-list/master/filters.txt" - }, - new - { - Id = 213L, - FilterListId = 136L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/betterwebleon/slovenian-list/master/filters.txt" - }, - new - { - Id = 214L, - FilterListId = 136L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/betterwebleon/slovenian-list/master/filters.txt" - }, - new - { - Id = 215L, - FilterListId = 137L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/data/StevenBlack/hosts" - }, - new - { - Id = 216L, - FilterListId = 137L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/StevenBlack/hosts/master/data/StevenBlack/hosts" - }, - new - { - Id = 217L, - FilterListId = 137L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/data/StevenBlack/hosts" - }, - new - { - Id = 221L, - FilterListId = 139L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Spam404/lists/master/main-blacklist.txt" - }, - new - { - Id = 222L, - FilterListId = 139L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/Spam404/lists/master/main-blacklist.txt" - }, - new - { - Id = 223L, - FilterListId = 139L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/Spam404/lists/master/main-blacklist.txt" - }, - new - { - Id = 224L, - FilterListId = 140L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Spam404/lists/master/adblock-list.txt" - }, - new - { - Id = 225L, - FilterListId = 140L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/Spam404/lists/master/adblock-list.txt" - }, - new - { - Id = 226L, - FilterListId = 140L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/Spam404/lists/master/adblock-list.txt" - }, - new - { - Id = 227L, - FilterListId = 141L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://shopping.mileageplus.com/adBlockWhitelist.php" - }, - new - { - Id = 228L, - FilterListId = 142L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://web.archive.org/web/20160221140104if_/http://adblock.gjtech.net/?format=adblock-plus" - }, - new - { - Id = 229L, - FilterListId = 143L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://rapidrewardsshopping.southwest.com/adBlockWhitelist.php" - }, - new - { - Id = 230L, - FilterListId = 144L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.aadvantageeshopping.com/adBlockWhitelist.php" - }, - new - { - Id = 231L, - FilterListId = 145L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.mileageplanshopping.com/adBlockWhitelist.php" - }, - new - { - Id = 232L, - FilterListId = 146L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://web.archive.org/web/20121106002043if_/http://www.schuzak.jp:80/other/abp.conf" - }, - new - { - Id = 233L, - FilterListId = 147L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://adblock.dk/block.csv" - }, - new - { - Id = 234L, - FilterListId = 147L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://adblock.schack.dk/block.txt" - }, - new - { - Id = 235L, - FilterListId = 150L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/cntblock.txt" - }, - new - { - Id = 236L, - FilterListId = 151L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.barclaycardrewardsboost.com/adBlockWhitelist.php" - }, - new - { - Id = 237L, - FilterListId = 152L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://pastebin.com/raw/r9a5WrZa" - }, - new - { - Id = 238L, - FilterListId = 155L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/chromium/filters/10.txt" - }, - new - { - Id = 239L, - FilterListId = 156L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/chromium/filters/13.txt" - }, - new - { - Id = 240L, - FilterListId = 157L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/chromium/filters/3.txt" - }, - new - { - Id = 241L, - FilterListId = 158L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/chromium/filters/9.txt" - }, - new - { - Id = 242L, - FilterListId = 159L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/chromium/filters/4.txt" - }, - new - { - Id = 243L, - FilterListId = 160L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/mac/filters/12.txt" - }, - new - { - Id = 244L, - FilterListId = 161L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/chromium/filters/1.txt" - }, - new - { - Id = 245L, - FilterListId = 162L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/android/filters/11.txt" - }, - new - { - Id = 246L, - FilterListId = 163L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/chromium/filters/7.txt" - }, - new - { - Id = 247L, - FilterListId = 164L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/chromium/filters/6.txt" - }, - new - { - Id = 248L, - FilterListId = 165L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/chromium/filters/5.txt" - }, - new - { - Id = 249L, - FilterListId = 166L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/chromium/filters/2.txt" - }, - new - { - Id = 250L, - FilterListId = 167L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/chromium/filters/8.txt" - }, - new - { - Id = 251L, - FilterListId = 168L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/windows/filters/15.txt" - }, - new - { - Id = 252L, - FilterListId = 169L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/chromium/filters/14.txt" - }, - new - { - Id = 253L, - FilterListId = 170L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hg.adblockplus.org/adwarefilters/raw-file/tip/adwarefilters.txt" - }, - new - { - Id = 254L, - FilterListId = 171L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://dl.dropboxusercontent.com/s/1ybzw9lb7m1qiyl/AAs.txt" - }, - new - { - Id = 255L, - FilterListId = 173L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://rlwpx.free.fr/WPFF/hmis.7z" - }, - new - { - Id = 256L, - FilterListId = 175L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/r4vi/block-the-eu-cookie-shit-list/master/filterlist.txt" - }, - new - { - Id = 257L, - FilterListId = 175L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/r4vi/block-the-eu-cookie-shit-list/master/filterlist.txt" - }, - new - { - Id = 258L, - FilterListId = 175L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/r4vi/block-the-eu-cookie-shit-list/master/filterlist.txt" - }, - new - { - Id = 259L, - FilterListId = 176L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/anarki999/Adblock-List-Archive/master/Better.fyiTrackersBlocklist.txt" - }, - new - { - Id = 260L, - FilterListId = 176L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/anarki999/Adblock-List-Archive/master/Better.fyiTrackersBlocklist.txt" - }, - new - { - Id = 261L, - FilterListId = 176L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/anarki999/Adblock-List-Archive/master/Better.fyiTrackersBlocklist.txt" - }, - new - { - Id = 262L, - FilterListId = 177L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://paulgb.github.io/BarbBlock/blacklists/hosts-file.txt" - }, - new - { - Id = 263L, - FilterListId = 178L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/rebelion76/bankiru_plus_adblock_list/master/bankiru_plus.txt" - }, - new - { - Id = 264L, - FilterListId = 178L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/rebelion76/bankiru_plus_adblock_list/master/bankiru_plus.txt" - }, - new - { - Id = 265L, - FilterListId = 178L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/rebelion76/bankiru_plus_adblock_list/master/bankiru_plus.txt" - }, - new - { - Id = 266L, - FilterListId = 179L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.hostsfile.org/Downloads/hosts.txt" - }, - new - { - Id = 267L, - FilterListId = 181L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://git.sourceforge.jp/view?p=ayucat-list/ayucat-list.git;a=blob_plain;f=ayucat-list.txt;hb=b254c74c132832a3ade7b9d42c2ef8d3dd59fdb9" - }, - new - { - Id = 268L, - FilterListId = 181L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Ayucat Powerful List.txt" - }, - new - { - Id = 269L, - FilterListId = 183L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yhonay/antipopads/master/popads.txt" - }, - new - { - Id = 270L, - FilterListId = 183L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/Yhonay/antipopads/master/popads.txt" - }, - new - { - Id = 271L, - FilterListId = 183L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/Yhonay/antipopads/master/popads.txt" - }, - new - { - Id = 272L, - FilterListId = 184L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/fanboy-antifacebook.txt" - }, - new - { - Id = 273L, - FilterListId = 185L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://rlwpx.free.fr/WPFF/hblc.7z" - }, - new - { - Id = 274L, - FilterListId = 186L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://rlwpx.free.fr/WPFF/hrsk.7z" - }, - new - { - Id = 275L, - FilterListId = 186L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/Airelle-hrsk.txt" - }, - new - { - Id = 276L, - FilterListId = 187L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://rlwpx.free.fr/WPFF/htrc.7z" - }, - new - { - Id = 277L, - FilterListId = 187L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/Airelle-trc.txt" - }, - new - { - Id = 278L, - FilterListId = 188L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://rlwpx.free.fr/WPFF/hsex.7z" - }, - new - { - Id = 279L, - FilterListId = 189L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://rlwpx.free.fr/WPFF/hpub.7z" - }, - new - { - Id = 280L, - FilterListId = 190L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.Spam/hosts" - }, - new - { - Id = 281L, - FilterListId = 190L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/FadeMind/hosts.extras/master/add.Spam/hosts" - }, - new - { - Id = 282L, - FilterListId = 190L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitcdn.link/repo/FadeMind/hosts.extras/master/add.Spam/hosts" - }, - new - { - Id = 283L, - FilterListId = 191L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.Risk/hosts" - }, - new - { - Id = 284L, - FilterListId = 191L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/FadeMind/hosts.extras/master/add.Risk/hosts" - }, - new - { - Id = 285L, - FilterListId = 191L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitcdn.link/repo/FadeMind/hosts.extras/master/add.Risk/hosts" - }, - new - { - Id = 286L, - FilterListId = 192L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.Dead/hosts" - }, - new - { - Id = 287L, - FilterListId = 192L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/FadeMind/hosts.extras/master/add.Dead/hosts" - }, - new - { - Id = 288L, - FilterListId = 192L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitcdn.link/repo/FadeMind/hosts.extras/master/add.Dead/hosts" - }, - new - { - Id = 289L, - FilterListId = 197L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/abpindo+easylist.txt" - }, - new - { - Id = 290L, - FilterListId = 198L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ABPindo/indonesianadblockrules/master/subscriptions/abpindo.txt" - }, - new - { - Id = 291L, - FilterListId = 198L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/heradhis/indonesianadblockrules/master/subscriptions/abpindo.txt" - }, - new - { - Id = 292L, - FilterListId = 198L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/ABPindo/indonesianadblockrules/master/subscriptions/abpindo.txt" - }, - new - { - Id = 293L, - FilterListId = 199L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/gioxx/xfiles/master/facebook.txt" - }, - new - { - Id = 294L, - FilterListId = 199L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/gioxx/xfiles/master/facebook.txt" - }, - new - { - Id = 295L, - FilterListId = 199L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/gioxx/xfiles/master/facebook.txt" - }, - new - { - Id = 296L, - FilterListId = 200L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/gioxx/xfiles/master/siteblock.txt" - }, - new - { - Id = 297L, - FilterListId = 200L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/gioxx/xfiles/master/siteblock.txt" - }, - new - { - Id = 298L, - FilterListId = 200L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/gioxx/xfiles/master/siteblock.txt" - }, - new - { - Id = 299L, - FilterListId = 201L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/gioxx/xfiles/master/filtri.txt" - }, - new - { - Id = 300L, - FilterListId = 201L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/gioxx/xfiles/master/filtri.txt" - }, - new - { - Id = 301L, - FilterListId = 201L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/gioxx/xfiles/master/filtri.txt" - }, - new - { - Id = 302L, - FilterListId = 202L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/k2jp/abp-japanese-filters/master/abpjf_paranoid.txt" - }, - new - { - Id = 303L, - FilterListId = 202L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/k2jp/abp-japanese-filters/master/abpjf_paranoid.txt" - }, - new - { - Id = 304L, - FilterListId = 202L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/k2jp/abp-japanese-filters/master/abpjf_paranoid.txt" - }, - new - { - Id = 305L, - FilterListId = 203L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/k2jp/abp-japanese-filters/master/abpjf.txt" - }, - new - { - Id = 306L, - FilterListId = 203L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/k2jp/abp-japanese-filters/master/abpjf.txt" - }, - new - { - Id = 307L, - FilterListId = 203L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/k2jp/abp-japanese-filters/master/abpjf.txt" - }, - new - { - Id = 308L, - FilterListId = 204L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/k2jp/abp-japanese-filters/master/abpjf_element_hiding.txt" - }, - new - { - Id = 309L, - FilterListId = 204L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/k2jp/abp-japanese-filters/master/abpjf_element_hiding.txt" - }, - new - { - Id = 310L, - FilterListId = 204L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/k2jp/abp-japanese-filters/master/abpjf_element_hiding.txt" - }, - new - { - Id = 311L, - FilterListId = 205L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/k2jp/abp-japanese-filters/master/abpjf_3rd_party_sns.txt" - }, - new - { - Id = 312L, - FilterListId = 205L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/k2jp/abp-japanese-filters/master/abpjf_3rd_party_sns.txt" - }, - new - { - Id = 313L, - FilterListId = 205L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/k2jp/abp-japanese-filters/master/abpjf_3rd_party_sns.txt" - }, - new - { - Id = 314L, - FilterListId = 206L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/abpvn/abpvn/master/filter/abpvn.txt" - }, - new - { - Id = 315L, - FilterListId = 206L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/abpvn/abpvn/master/filter/abpvn.txt" - }, - new - { - Id = 316L, - FilterListId = 206L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/abpvn/abpvn/master/filter/abpvn.txt" - }, - new - { - Id = 317L, - FilterListId = 207L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/reek/anti-adblock-killer/master/anti-adblock-killer-filters.txt" - }, - new - { - Id = 318L, - FilterListId = 207L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/reek/anti-adblock-killer/master/anti-adblock-killer-filters.txt" - }, - new - { - Id = 319L, - FilterListId = 207L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/reek/anti-adblock-killer/master/anti-adblock-killer-filters.txt" - }, - new - { - Id = 320L, - FilterListId = 212L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.2o7Net/hosts" - }, - new - { - Id = 321L, - FilterListId = 212L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/FadeMind/hosts.extras/master/add.2o7Net/hosts" - }, - new - { - Id = 322L, - FilterListId = 212L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitcdn.link/repo/FadeMind/hosts.extras/master/add.2o7Net/hosts" - }, - new - { - Id = 323L, - FilterListId = 213L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kbinani/adblock-youtube-ads/master/signed.txt" - }, - new - { - Id = 324L, - FilterListId = 213L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/kbinani/adblock-youtube-ads/master/signed.txt" - }, - new - { - Id = 325L, - FilterListId = 213L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/kbinani/adblock-youtube-ads/master/signed.txt" - }, - new - { - Id = 326L, - FilterListId = 214L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/antiadblockfilters.txt" - }, - new - { - Id = 327L, - FilterListId = 215L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/adblockpolska/Adblock_PL_List/master/adblock_polska.txt" - }, - new - { - Id = 328L, - FilterListId = 215L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/adblockpolska/Adblock_PL_List/master/adblock_polska.txt" - }, - new - { - Id = 329L, - FilterListId = 215L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/adblockpolska/Adblock_PL_List/master/adblock_polska.txt" - }, - new - { - Id = 330L, - FilterListId = 216L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/adblock_social_filters/adblock_social_list.txt" - }, - new - { - Id = 331L, - FilterListId = 216L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/MajkiIT/polish-ads-filter/master/adblock_social_filters/adblock_social_list.txt" - }, - new - { - Id = 332L, - FilterListId = 216L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/MajkiIT/polish-ads-filter/master/adblock_social_filters/adblock_social_list.txt" - }, - new - { - Id = 333L, - FilterListId = 217L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://ideone.com/plain/K452p" - }, - new - { - Id = 334L, - FilterListId = 220L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://web.archive.org/web/20160411115130if_/http://adblock-korea.googlecode.com:80/git/adblock-korea.txt" - }, - new - { - Id = 335L, - FilterListId = 221L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gurud.ee/ab.txt" - }, - new - { - Id = 336L, - FilterListId = 222L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/SlashArash/adblockfa/master/adblockfa.txt" - }, - new - { - Id = 337L, - FilterListId = 222L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/SlashArash/adblockfa/master/adblockfa.txt" - }, - new - { - Id = 338L, - FilterListId = 222L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/SlashArash/adblockfa/master/adblockfa.txt" - }, - new - { - Id = 339L, - FilterListId = 223L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock.txt" - }, - new - { - Id = 340L, - FilterListId = 223L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock.txt" - }, - new - { - Id = 341L, - FilterListId = 223L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock.txt" - }, - new - { - Id = 342L, - FilterListId = 224L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/cookies_filters/adblock_cookies.txt" - }, - new - { - Id = 343L, - FilterListId = 224L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/MajkiIT/polish-ads-filter/master/cookies_filters/adblock_cookies.txt" - }, - new - { - Id = 344L, - FilterListId = 224L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/MajkiIT/polish-ads-filter/master/cookies_filters/adblock_cookies.txt" - }, - new - { - Id = 345L, - FilterListId = 225L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://sites.google.com/site/logroid/files/hosts.txt?attredirects=0" - }, - new - { - Id = 346L, - FilterListId = 226L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://adaway.org/hosts.txt" - }, - new - { - Id = 347L, - FilterListId = 227L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/exceptionrules.txt" - }, - new - { - Id = 348L, - FilterListId = 228L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/farrokhi/adblock-iran/master/filter.txt" - }, - new - { - Id = 349L, - FilterListId = 228L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/farrokhi/adblock-iran/master/filter.txt" - }, - new - { - Id = 351L, - FilterListId = 229L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hg.adblockplus.org/youtubefilters/raw-file/default/yt_annoyances_comments.txt" - }, - new - { - Id = 352L, - FilterListId = 232L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ryanbr/fanboy-adblock/master/fake-news.txt" - }, - new - { - Id = 354L, - FilterListId = 233L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hg.adblockplus.org/facebookfilters/raw-file/default/fb_annoyances_sidebar.txt" - }, - new - { - Id = 355L, - FilterListId = 234L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://www.squirrelconspiracy.net/abp/facebook-privacy-list.txt" - }, - new - { - Id = 356L, - FilterListId = 234L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Facebook Privacy List.txt" - }, - new - { - Id = 358L, - FilterListId = 235L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hg.adblockplus.org/facebookfilters/raw-file/default/fb_annoyances_newsfeed.txt" - }, - new - { - Id = 360L, - FilterListId = 236L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hg.adblockplus.org/facebookfilters/raw-file/default/fb_annoyances_full.txt" - }, - new - { - Id = 361L, - FilterListId = 237L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://adblock.ee/list.php" - }, - new - { - Id = 362L, - FilterListId = 238L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.ebates.com/whitelist/ebates-cash-back-shopping.txt" - }, - new - { - Id = 363L, - FilterListId = 239L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easytest.txt" - }, - new - { - Id = 364L, - FilterListId = 240L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easyprivacy_nointernational.txt" - }, - new - { - Id = 365L, - FilterListId = 241L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easyprivacy+easylist.txt" - }, - new - { - Id = 366L, - FilterListId = 242L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist.to/easylist/easyprivacy.txt" - }, - new - { - Id = 367L, - FilterListId = 242L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/easyprivacy.txt" - }, - new - { - Id = 368L, - FilterListId = 242L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easyprivacy.txt" - }, - new - { - Id = 369L, - FilterListId = 243L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylist_noadult.txt" - }, - new - { - Id = 370L, - FilterListId = 244L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylist_noelemhide.txt" - }, - new - { - Id = 371L, - FilterListId = 245L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/easylist-thailand/easylist-thailand/master/subscription/easylist-thailand.txt" - }, - new - { - Id = 372L, - FilterListId = 246L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistspanish.txt" - }, - new - { - Id = 373L, - FilterListId = 247L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/fanboy-annoyance.txt" - }, - new - { - Id = 374L, - FilterListId = 247L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/fanboy-annoyance.txt" - }, - new - { - Id = 375L, - FilterListId = 247L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://easylist.to/easylist/fanboy-annoyance.txt" - }, - new - { - Id = 376L, - FilterListId = 248L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistlithuania+easylist.txt" - }, - new - { - Id = 377L, - FilterListId = 249L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/fanboy-antifonts.txt" - }, - new - { - Id = 378L, - FilterListId = 250L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylist-cookie.txt" - }, - new - { - Id = 380L, - FilterListId = 251L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mozillahispano/nauscopio-filtros/master/filtros.txt" - }, - new - { - Id = 381L, - FilterListId = 252L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filtri-dns.ga/filtri.txt" - }, - new - { - Id = 382L, - FilterListId = 253L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/hant0508/uBlock-filters/master/filters.txt" - }, - new - { - Id = 383L, - FilterListId = 254L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/fanboy-vietnam.txt" - }, - new - { - Id = 384L, - FilterListId = 255L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/r/fanboy-ultimate.txt" - }, - new - { - Id = 385L, - FilterListId = 256L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/fanboy-turkish.txt" - }, - new - { - Id = 386L, - FilterListId = 257L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/fanboy-swedish.txt" - }, - new - { - Id = 387L, - FilterListId = 258L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/fanboy-espanol.txt" - }, - new - { - Id = 388L, - FilterListId = 259L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/fanboy-social.txt" - }, - new - { - Id = 389L, - FilterListId = 259L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/fanboy-social.txt" - }, - new - { - Id = 390L, - FilterListId = 260L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/fanboy-polish.txt" - }, - new - { - Id = 391L, - FilterListId = 261L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/fanboy-korean.txt" - }, - new - { - Id = 392L, - FilterListId = 262L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/fanboy-japanese.txt" - }, - new - { - Id = 393L, - FilterListId = 263L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/israelilist/IsraelList.txt" - }, - new - { - Id = 394L, - FilterListId = 264L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/fanboy-indian.txt" - }, - new - { - Id = 395L, - FilterListId = 265L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/enhancedstats.txt" - }, - new - { - Id = 396L, - FilterListId = 266L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/r/fanboy-complete.txt" - }, - new - { - Id = 397L, - FilterListId = 267L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/EasyList-Lithuania/easylist_lithuania/master/easylistlithuania.txt" - }, - new - { - Id = 398L, - FilterListId = 268L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cjx82630/cjxlist/master/cjxlist.txt" - }, - new - { - Id = 399L, - FilterListId = 268L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitee.com/cjx82630/cjxlist/raw/master/cjxlist.txt" - }, - new - { - Id = 400L, - FilterListId = 269L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistitaly+easylist.txt" - }, - new - { - Id = 403L, - FilterListId = 272L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://s3.amazonaws.com/lists.disconnect.me/simple_tracking.txt" - }, - new - { - Id = 404L, - FilterListId = 274L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://s3.amazonaws.com/lists.disconnect.me/simple_malvertising.txt" - }, - new - { - Id = 405L, - FilterListId = 275L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://s3.amazonaws.com/lists.disconnect.me/simple_ad.txt" - }, - new - { - Id = 406L, - FilterListId = 276L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://someonewhocares.org/hosts/zero/hosts" - }, - new - { - Id = 407L, - FilterListId = 276L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/data/someonewhocares.org/hosts" - }, - new - { - Id = 408L, - FilterListId = 277L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Czech Filters for Adblock Plus" - }, - new - { - Id = 409L, - FilterListId = 278L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nicedirector/ADBlock/master/Adblock_Filter.txt" - }, - new - { - Id = 410L, - FilterListId = 279L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.eff.org/files/cookieblocklist.txt" - }, - new - { - Id = 411L, - FilterListId = 280L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cpeterso/clickbait-blocklist/master/clickbait-blocklist.txt" - }, - new - { - Id = 412L, - FilterListId = 281L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cjx82630/cjxlist/master/cjx-annoyance.txt" - }, - new - { - Id = 413L, - FilterListId = 281L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitee.com/cjx82630/cjxlist/raw/master/cjx-annoyance.txt" - }, - new - { - Id = 414L, - FilterListId = 282L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://sysctl.org/cameleon/hosts" - }, - new - { - Id = 415L, - FilterListId = 283L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/bulgarian_list+easylist.txt" - }, - new - { - Id = 416L, - FilterListId = 284L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://stanev.org/abp/adblock_bg.txt" - }, - new - { - Id = 417L, - FilterListId = 285L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://malwaredomains.lehigh.edu/files/dynamic_dns.txt" - }, - new - { - Id = 422L, - FilterListId = 288L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://malwaredomains.lehigh.edu/files/immortal_domains.txt" - }, - new - { - Id = 424L, - FilterListId = 289L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistitaly.txt" - }, - new - { - Id = 425L, - FilterListId = 290L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/israellist+easylist.txt" - }, - new - { - Id = 426L, - FilterListId = 291L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/easylist/EasyListHebrew/master/EasyListHebrew.txt" - }, - new - { - Id = 427L, - FilterListId = 292L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistgermany+easylist.txt" - }, - new - { - Id = 428L, - FilterListId = 293L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistgermany.txt" - }, - new - { - Id = 429L, - FilterListId = 293L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://easylist.to/easylistgermany/easylistgermany.txt" - }, - new - { - Id = 430L, - FilterListId = 294L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistdutch+easylist.txt" - }, - new - { - Id = 431L, - FilterListId = 295L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistdutch.txt" - }, - new - { - Id = 432L, - FilterListId = 297L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistczechslovak+easylist.txt" - }, - new - { - Id = 433L, - FilterListId = 298L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nfer/easylistchina_it/master/easylistchina_it.txt" - }, - new - { - Id = 434L, - FilterListId = 299L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistchina+easylist.txt" - }, - new - { - Id = 435L, - FilterListId = 300L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistchina.txt" - }, - new - { - Id = 436L, - FilterListId = 301L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist.to/easylist/easylist.txt" - }, - new - { - Id = 437L, - FilterListId = 301L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/easylist.txt" - }, - new - { - Id = 438L, - FilterListId = 301L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylist.txt" - }, - new - { - Id = 439L, - FilterListId = 302L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://feeds.dshield.org/block.txt" - }, - new - { - Id = 442L, - FilterListId = 305L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tomasko126/easylistczechandslovak/master/filters.txt" - }, - new - { - Id = 444L, - FilterListId = 306L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hg.adblockplus.org/youtubefilters/raw-file/default/yt_annoyances_suggestions.txt" - }, - new - { - Id = 445L, - FilterListId = 307L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/taylr/linkedinsanity/master/spies-dislike-us.txt" - }, - new - { - Id = 446L, - FilterListId = 308L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/hoshsadiq/adblock-nocoin-list/master/hosts.txt" - }, - new - { - Id = 447L, - FilterListId = 309L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/complete/hosts.txt" - }, - new - { - Id = 448L, - FilterListId = 311L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/elypter/generic_annoying_stickybar_filter/master/generic_header_list.txt" - }, - new - { - Id = 449L, - FilterListId = 312L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/elypter/filter_processor/master/generated_filterlists/blockhead(decoy_generic_extraction).txt" - }, - new - { - Id = 450L, - FilterListId = 313L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/elypter/filter_processor/master/generated_filterlists/blockhead(decoy_generic_selection).txt" - }, - new - { - Id = 451L, - FilterListId = 315L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://alleblock.pl/alleblock/alleblock.txt" - }, - new - { - Id = 452L, - FilterListId = 316L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bkrucarci/turk-adlist/master/hosts" - }, - new - { - Id = 453L, - FilterListId = 317L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/anudeepND/blacklist/master/adservers.txt" - }, - new - { - Id = 454L, - FilterListId = 318L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/anudeepND/blacklist/master/CoinMiner.txt" - }, - new - { - Id = 455L, - FilterListId = 319L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/anudeepND/youtubeadsblacklist/master/domainlist.txt" - }, - new - { - Id = 456L, - FilterListId = 320L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/anudeepND/youtubeadsblacklist/master/hosts.txt" - }, - new - { - Id = 457L, - FilterListId = 321L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/anudeepND/whitelist/master/domains/whitelist.txt" - }, - new - { - Id = 458L, - FilterListId = 322L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/anudeepND/whitelist/master/domains/referral-sites.txt" - }, - new - { - Id = 459L, - FilterListId = 323L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/anudeepND/whitelist/master/domains/optional-list.txt" - }, - new - { - Id = 460L, - FilterListId = 324L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/arcetera/Minimal-Hosts-Blocker/master/etc/MinimalHostsBlocker/minimalhosts" - }, - new - { - Id = 461L, - FilterListId = 325L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bjornstar/hosts/master/hosts" - }, - new - { - Id = 462L, - FilterListId = 327L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/stayingonbrowser/Staying On The Phone Browser" - }, - new - { - Id = 463L, - FilterListId = 327L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/stayingonbrowser/Staying On The Phone Browser" - }, - new - { - Id = 464L, - FilterListId = 329L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/VeleSila/yhosts/master/hosts.txt" - }, - new - { - Id = 465L, - FilterListId = 330L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/ThaiConsentHosts/master/ThaiConsentHosts.txt" - }, - new - { - Id = 466L, - FilterListId = 330L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/ThaiConsentHosts/raw/master/ThaiConsentHosts.txt" - }, - new - { - Id = 467L, - FilterListId = 331L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/ThaiParanoidBlock/master/ThaiParanoid.txt" - }, - new - { - Id = 468L, - FilterListId = 331L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/ThaiParanoidBlock/raw/master/ThaiParanoid.txt" - }, - new - { - Id = 469L, - FilterListId = 332L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/ThaiAntiForceLike/master/AntiForceLike.txt" - }, - new - { - Id = 470L, - FilterListId = 333L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/pureexe/LeeCh-List/master/anime.txt" - }, - new - { - Id = 471L, - FilterListId = 334L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://warui.intaa.net/adhosts/hosts.txt" - }, - new - { - Id = 472L, - FilterListId = 335L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/multiverse2011/adawaylist-jp/master/hosts" - }, - new - { - Id = 473L, - FilterListId = 336L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://sites.google.com/site/cosmonoteshosts/hosts_for_Windows8.txt" - }, - new - { - Id = 474L, - FilterListId = 337L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://sites.google.com/site/cosmonoteshosts/hosts_for_Adaway.txt" - }, - new - { - Id = 475L, - FilterListId = 338L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://sites.google.com/site/cosmonoteshosts/hosts_Ultimate.txt" - }, - new - { - Id = 476L, - FilterListId = 339L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Lerist/Go-Hosts/master/hosts-ad" - }, - new - { - Id = 477L, - FilterListId = 340L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Lerist/Go-Hosts/master/hosts" - }, - new - { - Id = 478L, - FilterListId = 341L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/adblock_social_filters/social_filters_uB_AG.txt" - }, - new - { - Id = 480L, - FilterListId = 343L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/cookies_filters/cookies_uB_AG.txt" - }, - new - { - Id = 482L, - FilterListId = 345L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock_adguard.txt" - }, - new - { - Id = 483L, - FilterListId = 346L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock_test.txt" - }, - new - { - Id = 484L, - FilterListId = 347L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-pihole-filters/hostfile.txt" - }, - new - { - Id = 485L, - FilterListId = 348L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://vxvault.net/URL_List.php" - }, - new - { - Id = 486L, - FilterListId = 349L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/KADhosts/master/KADhosts_without_controversies.txt" - }, - new - { - Id = 487L, - FilterListId = 349L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/FiltersHeroes/KADhosts/master/KADhosts_without_controversies.txt" - }, - new - { - Id = 488L, - FilterListId = 349L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/FiltersHeroes/KADhosts/master/KADhosts_without_controversies.txt" - }, - new - { - Id = 489L, - FilterListId = 350L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/chromium/filters/16.txt" - }, - new - { - Id = 490L, - FilterListId = 352L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eladkarako/hosts/master/build/hosts_adblock.txt" - }, - new - { - Id = 491L, - FilterListId = 353L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eladkarako/hosts/master/build/hosts_adblock_anti_annoyances_block.txt" - }, - new - { - Id = 492L, - FilterListId = 354L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eladkarako/hosts/master/build/hosts_adblock_anti_annoyances_block_inline_script.txt" - }, - new - { - Id = 493L, - FilterListId = 355L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eladkarako/hosts/master/build/hosts_adblock_anti_annoyances_hide.txt" - }, - new - { - Id = 494L, - FilterListId = 356L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eladkarako/hosts/master/build/hosts_adblock_anti_annoyances_style_inject.txt" - }, - new - { - Id = 495L, - FilterListId = 357L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/list.txt" - }, - new - { - Id = 496L, - FilterListId = 358L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/list_optional.txt" - }, - new - { - Id = 497L, - FilterListId = 359L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/list_browser.txt" - }, - new - { - Id = 498L, - FilterListId = 360L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/hosts" - }, - new - { - Id = 499L, - FilterListId = 361L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/hosts_optional" - }, - new - { - Id = 500L, - FilterListId = 362L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/hosts_browser" - }, - new - { - Id = 501L, - FilterListId = 363L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/list_browser_UBO.txt" - }, - new - { - Id = 502L, - FilterListId = 367L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/uMatrix-Rules/uMatrix-Rules-Domain/master/rules.txt" - }, - new - { - Id = 503L, - FilterListId = 368L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/uMatrix-Rules/uMatrix-Rules-Site/master/rules.txt" - }, - new - { - Id = 504L, - FilterListId = 369L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tomasko126/easylistczechandslovak/master/filters_ublock.txt" - }, - new - { - Id = 505L, - FilterListId = 370L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easylistczechslovak+easylist.tpl" - }, - new - { - Id = 506L, - FilterListId = 371L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AFNIL-AntiFakeNewsInternationalList/AFNIL/master/AFNIL-ABP-uBO.txt" - }, - new - { - Id = 507L, - FilterListId = 372L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Hubird-au/Adversity/master/Adversity.txt" - }, - new - { - Id = 508L, - FilterListId = 373L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Hubird-au/Adversity/master/Antisocial.txt" - }, - new - { - Id = 509L, - FilterListId = 374L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Hubird-au/Adversity/master/Extreme-Measures.txt" - }, - new - { - Id = 510L, - FilterListId = 375L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/hl2guide/All-in-One-Customized-Adblock-List/master/aio.txt" - }, - new - { - Id = 511L, - FilterListId = 376L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/haykam821/Blocklists/master/mmo.txt" - }, - new - { - Id = 512L, - FilterListId = 377L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cb-software/CB-Malicious-Domains/master/block_lists/adblock_plus.txt" - }, - new - { - Id = 513L, - FilterListId = 378L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cb-software/CB-Malicious-Domains/master/block_lists/hosts" - }, - new - { - Id = 514L, - FilterListId = 379L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gist.githubusercontent.com/gorhill/ef1b62d606473c68d524/raw/f8181faac18cb5172c7c9bca8e5a3b22f0c925d0/gistfile1.txt" - }, - new - { - Id = 515L, - FilterListId = 380L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/toshiya44/myAssets/master/filters-exp.txt" - }, - new - { - Id = 516L, - FilterListId = 381L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://rickrolldb.com/ricklist.txt" - }, - new - { - Id = 517L, - FilterListId = 383L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://austinhuang.me/0131-block-list/list.txt" - }, - new - { - Id = 518L, - FilterListId = 385L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Username Hider for Compilation Creators.txt" - }, - new - { - Id = 519L, - FilterListId = 385L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Username Hider for Compilation Creators.txt" - }, - new - { - Id = 520L, - FilterListId = 388L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/DandelionSproutsNorskeFiltre.tpl" - }, - new - { - Id = 521L, - FilterListId = 388L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/DandelionSproutsNorskeFiltre.tpl" - }, - new - { - Id = 522L, - FilterListId = 390L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAntiAnnoyingSpecialSupplement/master/polish_rss_filters.txt" - }, - new - { - Id = 523L, - FilterListId = 391L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/IHateOverpromotedGames.txt" - }, - new - { - Id = 524L, - FilterListId = 391L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/IHateOverpromotedGames.txt" - }, - new - { - Id = 525L, - FilterListId = 392L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/BrowseWebsitesWithoutLoggingIn.txt" - }, - new - { - Id = 526L, - FilterListId = 392L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/BrowseWebsitesWithoutLoggingIn.txt" - }, - new - { - Id = 527L, - FilterListId = 393L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Dandelion Sprout-s Redirector Assistant List/DandelionSproutRedirectorList.json" - }, - new - { - Id = 528L, - FilterListId = 393L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Dandelion Sprout-s Redirector Assistant List/DandelionSproutRedirectorList.json" - }, - new - { - Id = 529L, - FilterListId = 395L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/raghavdua1995/DNSlock-PiHole-whitelist/master/whitelist.list" - }, - new - { - Id = 530L, - FilterListId = 396L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/NanoAdblocker/NanoFilters/master/NanoFilters/NanoBase.txt" - }, - new - { - Id = 531L, - FilterListId = 397L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/NanoAdblocker/NanoFilters/master/NanoFilters/NanoWhitelist.txt" - }, - new - { - Id = 532L, - FilterListId = 398L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/NanoAdblocker/NanoFilters/master/NanoFilters/NanoAnnoyance.txt" - }, - new - { - Id = 533L, - FilterListId = 399L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/lassekongo83/Frellwits-filter-lists/master/Frellwits-Swedish-Filter.txt" - }, - new - { - Id = 534L, - FilterListId = 399L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://repo.or.cz/Adblock-list-backups-Frellwits-filter-lists.git/blob_plain/refs/heads/master:/Frellwits-Swedish-Filter.txt" - }, - new - { - Id = 535L, - FilterListId = 400L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/notracking/hosts-blocklists/master/domains.txt" - }, - new - { - Id = 536L, - FilterListId = 401L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/notracking/hosts-blocklists/master/hostnames.txt" - }, - new - { - Id = 537L, - FilterListId = 403L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/lassekongo83/Frellwits-filter-lists/master/emoji-filter.txt" - }, - new - { - Id = 538L, - FilterListId = 403L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://repo.or.cz/Adblock-list-backups-Frellwits-filter-lists.git/blob_plain/refs/heads/master:/emoji-filter.txt" - }, - new - { - Id = 539L, - FilterListId = 405L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/annoyances.txt" - }, - new - { - Id = 540L, - FilterListId = 410L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/resource-abuse.txt" - }, - new - { - Id = 541L, - FilterListId = 412L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gist.githubusercontent.com/BBcan177/d7105c242f17f4498f81/raw/201968fa11b1f409d408a129a0774ffedb1560e2/MS-3" - }, - new - { - Id = 542L, - FilterListId = 413L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gist.githubusercontent.com/BBcan177/b6df57cef74e28d90acf1eec93d62d3b/raw/f0996cf5248657ada2adb396f3636be8716b99eb/MS-4" - }, - new - { - Id = 543L, - FilterListId = 414L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gist.githubusercontent.com/BBcan177/4a8bf37c131be4803cb2/raw/343ff780e15205b4dd0de37c86af34cfb26b2fbe/MS-2" - }, - new - { - Id = 544L, - FilterListId = 415L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gist.githubusercontent.com/BBcan177/bf29d47ea04391cb3eb0/raw/7290e0681bcd07415420b5c80a253652fd13f840/MS-1" - }, - new - { - Id = 545L, - FilterListId = 416L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gist.githubusercontent.com/BBcan177/2a9fc2548c3c5a5e2dc86e580b5795d2/raw/2f5c90ffb3bd02199ace1b16a0bd9f53b29f0879/EasyList_DE" - }, - new - { - Id = 546L, - FilterListId = 417L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/matomo-org/referrer-spam-blacklist/master/spammers.txt" - }, - new - { - Id = 547L, - FilterListId = 418L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/desbma/referer-spam-domains-blacklist/master/spammers.txt" - }, - new - { - Id = 548L, - FilterListId = 419L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.joewein.net/dl/bl/dom-bl-base.txt" - }, - new - { - Id = 549L, - FilterListId = 420L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.joewein.net/dl/bl/from-bl.txt" - }, - new - { - Id = 550L, - FilterListId = 421L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/Kurobeats/phishing_hosts/raw/master/hosts" - }, - new - { - Id = 551L, - FilterListId = 422L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ligyxy/Blocklist/master/BLOCKLIST" - }, - new - { - Id = 552L, - FilterListId = 424L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gist.githubusercontent.com/MOxFIVE/4730cac715ef406bd8eac7b29335be4a/raw/d21fa08e97963edde372d0d3e50703c783c9c32e/Personal%2520Blocklist.txt" - }, - new - { - Id = 553L, - FilterListId = 425L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nabble/semalt-blocker/master/domains/blocked" - }, - new - { - Id = 554L, - FilterListId = 426L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://osint.bambenekconsulting.com/feeds/c2-ipmasterlist.txt" - }, - new - { - Id = 555L, - FilterListId = 427L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://phishing.mailscanner.info/phishing.bad.sites.conf" - }, - new - { - Id = 556L, - FilterListId = 428L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.threatcrowd.org/feeds/domains.txt" - }, - new - { - Id = 557L, - FilterListId = 429L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/betterwebleon/international-list/master/filters.txt" - }, - new - { - Id = 558L, - FilterListId = 430L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/AdawayHosts" - }, - new - { - Id = 559L, - FilterListId = 430L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/AdawayHosts" - }, - new - { - Id = 560L, - FilterListId = 431L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Dandelion Sprout's Website Stretcher.txt" - }, - new - { - Id = 561L, - FilterListId = 431L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Dandelion Sprout%27s Website Stretcher.txt" - }, - new - { - Id = 562L, - FilterListId = 432L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-FіМ List.txt" - }, - new - { - Id = 563L, - FilterListId = 432L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-FіМ List.txt" - }, - new - { - Id = 564L, - FilterListId = 433L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-IMDB List.txt" - }, - new - { - Id = 565L, - FilterListId = 433L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-IMDB List.txt" - }, - new - { - Id = 566L, - FilterListId = 434L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/StopAutoplayOnYouTube.txt" - }, - new - { - Id = 567L, - FilterListId = 434L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/StopAutoplayOnYouTube.txt" - }, - new - { - Id = 568L, - FilterListId = 435L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/googlehosts/hosts/master/hosts-files/hosts" - }, - new - { - Id = 569L, - FilterListId = 435L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://git.qvq.network/googlehosts/hosts/raw/master/hosts-files/hosts" - }, - new - { - Id = 570L, - FilterListId = 436L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/lassekongo83/Frellwits-filter-lists/master/i-dont-want-your-app.txt" - }, - new - { - Id = 571L, - FilterListId = 436L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://repo.or.cz/Adblock-list-backups-Frellwits-filter-lists.git/blob_plain/refs/heads/master:/i-dont-want-your-app.txt" - }, - new - { - Id = 572L, - FilterListId = 437L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/easylistbrasil/easylistbrasil/filtro/easylistbrasil.txt" - }, - new - { - Id = 573L, - FilterListId = 438L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/SessionReplay.txt" - }, - new - { - Id = 574L, - FilterListId = 439L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/SmartTV.txt" - }, - new - { - Id = 575L, - FilterListId = 440L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/android-tracking.txt" - }, - new - { - Id = 576L, - FilterListId = 441L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/static/w3kbl.txt" - }, - new - { - Id = 577L, - FilterListId = 442L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/BillStearns.txt" - }, - new - { - Id = 578L, - FilterListId = 445L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/Easyprivacy.txt" - }, - new - { - Id = 579L, - FilterListId = 446L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/Prigent-Ads.txt" - }, - new - { - Id = 580L, - FilterListId = 447L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/quidsup/notrack-blocklists/raw/master/notrack-blocklist.txt" - }, - new - { - Id = 581L, - FilterListId = 448L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/quidsup/notrack-blocklists/raw/master/notrack-malware.txt" - }, - new - { - Id = 582L, - FilterListId = 449L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/hosts/spy.txt" - }, - new - { - Id = 583L, - FilterListId = 450L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/hosts/update.txt" - }, - new - { - Id = 584L, - FilterListId = 451L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/hosts/extra.txt" - }, - new - { - Id = 585L, - FilterListId = 465L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/Shalla-mal.txt" - }, - new - { - Id = 586L, - FilterListId = 465L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Shalla-Malicious.txt" - }, - new - { - Id = 587L, - FilterListId = 467L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kano1/I/master/badway.txt" - }, - new - { - Id = 588L, - FilterListId = 468L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kano1/I/master/adware.txt" - }, - new - { - Id = 589L, - FilterListId = 469L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kano1/Kano/master/Spyware.txt" - }, - new - { - Id = 590L, - FilterListId = 470L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/firehol_level1.netset" - }, - new - { - Id = 591L, - FilterListId = 471L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/firehol_level2.netset" - }, - new - { - Id = 592L, - FilterListId = 472L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/pinterest/all" - }, - new - { - Id = 593L, - FilterListId = 473L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/cloudflare/all" - }, - new - { - Id = 594L, - FilterListId = 474L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/facebook/all" - }, - new - { - Id = 595L, - FilterListId = 475L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/mozilla/all" - }, - new - { - Id = 596L, - FilterListId = 476L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/microsoft/all" - }, - new - { - Id = 597L, - FilterListId = 477L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/google/non_localized" - }, - new - { - Id = 598L, - FilterListId = 478L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/google/localized" - }, - new - { - Id = 599L, - FilterListId = 479L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistpolish.txt" - }, - new - { - Id = 600L, - FilterListId = 480L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/yecarrillo/adblock-colombia/master/adblock_co.txt" - }, - new - { - Id = 601L, - FilterListId = 481L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/spark/formats/hosts.txt" - }, - new - { - Id = 602L, - FilterListId = 482L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/bluGo/formats/hosts.txt" - }, - new - { - Id = 603L, - FilterListId = 482L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/bluGo/formats/hosts.txt" - }, - new - { - Id = 604L, - FilterListId = 483L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/blu/formats/hosts.txt" - }, - new - { - Id = 605L, - FilterListId = 484L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/basic/formats/hosts.txt" - }, - new - { - Id = 606L, - FilterListId = 485L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/porn/formats/hosts.txt" - }, - new - { - Id = 607L, - FilterListId = 486L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/ultimate/formats/hosts.txt" - }, - new - { - Id = 608L, - FilterListId = 487L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/unified/formats/hosts.txt" - }, - new - { - Id = 609L, - FilterListId = 490L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/CyanideBrother/anti-pr0n/master/hosts" - }, - new - { - Id = 610L, - FilterListId = 491L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/extensions/porn/clefspeare13/hosts" - }, - new - { - Id = 611L, - FilterListId = 492L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mhxion/pornaway/master/hosts/porn_sites.txt" - }, - new - { - Id = 612L, - FilterListId = 493L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mhxion/pornaway/master/hosts/porn_ads.txt" - }, - new - { - Id = 613L, - FilterListId = 494L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mitchellkrogza/Badd-Boyz-Hosts/master/hosts" - }, - new - { - Id = 614L, - FilterListId = 495L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/MetaMask/eth-phishing-detect/master/src/hosts.txt" - }, - new - { - Id = 615L, - FilterListId = 496L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/MrThreat/Confirmed-Phish/master/phish.txt" - }, - new - { - Id = 616L, - FilterListId = 504L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Adblock list templates/Adblock list template -Beginner-.txt" - }, - new - { - Id = 617L, - FilterListId = 504L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Adblock list templates/Adblock list template -Beginner-.txt" - }, - new - { - Id = 618L, - FilterListId = 505L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Adblock list templates/Adblock list template -Novice-.txt" - }, - new - { - Id = 619L, - FilterListId = 505L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Adblock list templates/Adblock list template -Novice-.txt" - }, - new - { - Id = 620L, - FilterListId = 506L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/exceptionrules-privacy-friendly.txt" - }, - new - { - Id = 621L, - FilterListId = 507L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easylist.tpl" - }, - new - { - Id = 623L, - FilterListId = 509L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/endolith/clickbait/master/clickbait.txt" - }, - new - { - Id = 624L, - FilterListId = 510L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/UnluckyLuke/BlockUnderRadarJunk/master/blockunderradarjunk-list.txt" - }, - new - { - Id = 625L, - FilterListId = 512L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/xd4rker/MinerBlock/master/assets/filters.txt" - }, - new - { - Id = 626L, - FilterListId = 513L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/hit3shjain/Andromeda-ublock-list/master/hosts.txt" - }, - new - { - Id = 628L, - FilterListId = 515L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://paulgb.github.io/BarbBlock/blacklists/ublock-origin.txt" - }, - new - { - Id = 629L, - FilterListId = 516L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://paulgb.github.io/BarbBlock/blacklists/domain-list.txt" - }, - new - { - Id = 630L, - FilterListId = 517L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://paulgb.github.io/BarbBlock/blacklists/adblock-plus.txt" - }, - new - { - Id = 631L, - FilterListId = 518L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.dshield.org/feeds/suspiciousdomains_Low.txt" - }, - new - { - Id = 632L, - FilterListId = 519L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.dshield.org/feeds/suspiciousdomains_Medium.txt" - }, - new - { - Id = 633L, - FilterListId = 519L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://isc.sans.edu/feeds/suspiciousdomains_Medium.txt" - }, - new - { - Id = 634L, - FilterListId = 520L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.dshield.org/feeds/suspiciousdomains_High.txt" - }, - new - { - Id = 635L, - FilterListId = 521L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://list.kwbt.de/kwbtlist.txt" - }, - new - { - Id = 636L, - FilterListId = 522L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://list.kwbt.de/kwbtlist.txt" - }, - new - { - Id = 637L, - FilterListId = 525L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/chadmayfield/my-pihole-blocklists/master/lists/pi_blocklist_porn_top1m.list" - }, - new - { - Id = 638L, - FilterListId = 525L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Chad-Mayfield-Porn-Blocklist-Light.txt" - }, - new - { - Id = 639L, - FilterListId = 526L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/chadmayfield/my-pihole-blocklists/master/lists/pi_blocklist_porn_all.list" - }, - new - { - Id = 640L, - FilterListId = 526L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Chad-Mayfield-Porn-Blocklist-Heavy.txt" - }, - new - { - Id = 641L, - FilterListId = 562L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/xinggsf/Adblock-Plus-Rule/master/ABP-FX.txt" - }, - new - { - Id = 642L, - FilterListId = 563L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/andromedarabbit/List-KR/master/filter.txt" - }, - new - { - Id = 643L, - FilterListId = 564L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/fanboy-problematic-sites.txt" - }, - new - { - Id = 644L, - FilterListId = 565L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://cdn.adblockcdn.com/filters/easylist_lite.txt" - }, - new - { - Id = 645L, - FilterListId = 566L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/abp-filters-anti-cv.txt" - }, - new - { - Id = 646L, - FilterListId = 569L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/chinese.txt" - }, - new - { - Id = 647L, - FilterListId = 570L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/czech.txt" - }, - new - { - Id = 648L, - FilterListId = 573L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/english.txt" - }, - new - { - Id = 649L, - FilterListId = 574L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/french.txt" - }, - new - { - Id = 650L, - FilterListId = 575L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/german.txt" - }, - new - { - Id = 651L, - FilterListId = 583L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/portuguese.txt" - }, - new - { - Id = 652L, - FilterListId = 585L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/russian.txt" - }, - new - { - Id = 653L, - FilterListId = 586L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/spanish.txt" - }, - new - { - Id = 654L, - FilterListId = 589L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Sinfonietta/hostfiles/master/gambling-hosts" - }, - new - { - Id = 655L, - FilterListId = 590L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Sinfonietta/hostfiles/master/pornography-hosts" - }, - new - { - Id = 656L, - FilterListId = 591L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Sinfonietta/hostfiles/master/snuff-hosts" - }, - new - { - Id = 657L, - FilterListId = 592L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Sinfonietta/hostfiles/master/social-hosts" - }, - new - { - Id = 658L, - FilterListId = 593L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/marktron/fakenews/master/fakenews" - }, - new - { - Id = 659L, - FilterListId = 595L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.github.developerdan.com/hosts/lists/ads-and-tracking-extended.txt" - }, - new - { - Id = 660L, - FilterListId = 596L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.github.developerdan.com/hosts/lists/tracking-aggressive-extended.txt" - }, - new - { - Id = 661L, - FilterListId = 598L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bigdargon/hostsVN/master/hosts" - }, - new - { - Id = 662L, - FilterListId = 599L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://abpvn.com/android/abpvn.txt" - }, - new - { - Id = 663L, - FilterListId = 600L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/abpvn/abpvn/master/filter/abpvn_noelemhide.txt" - }, - new - { - Id = 664L, - FilterListId = 601L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/ThaiAntiTokenSites/master/AntiPumpSites.txt" - }, - new - { - Id = 665L, - FilterListId = 601L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/ThaiAntiTokenSites/raw/master/AntiPumpSites.txt" - }, - new - { - Id = 666L, - FilterListId = 602L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/ThaiAntiTokenSites/master/AntiPumpSites_hosts.txt" - }, - new - { - Id = 667L, - FilterListId = 602L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/ThaiAntiTokenSites/raw/master/AntiPumpSites_hosts.txt" - }, - new - { - Id = 668L, - FilterListId = 603L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-Elsagate List.txt" - }, - new - { - Id = 669L, - FilterListId = 603L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-Elsagate List.txt" - }, - new - { - Id = 670L, - FilterListId = 604L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/stopforumspam_30d.ipset" - }, - new - { - Id = 671L, - FilterListId = 605L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/firehol_level3.netset" - }, - new - { - Id = 672L, - FilterListId = 606L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jerryn70/GoodbyeAds/master/Hosts/GoodbyeAds.txt" - }, - new - { - Id = 673L, - FilterListId = 607L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_newsletters.txt" - }, - new - { - Id = 674L, - FilterListId = 608L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_arrows.txt" - }, - new - { - Id = 675L, - FilterListId = 609L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_push.txt" - }, - new - { - Id = 676L, - FilterListId = 610L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_scrolling_videos.txt" - }, - new - { - Id = 677L, - FilterListId = 611L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_backgrounds_self-advertising.txt" - }, - new - { - Id = 678L, - FilterListId = 612L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_pop-ups.txt" - }, - new - { - Id = 679L, - FilterListId = 613L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_contact_feedback_widgets.txt" - }, - new - { - Id = 680L, - FilterListId = 614L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_tagged_internal_links.txt" - }, - new - { - Id = 681L, - FilterListId = 616L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_other_widgets.txt" - }, - new - { - Id = 682L, - FilterListId = 617L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=hosts&showintro=1&mimetype=plaintext" - }, - new - { - Id = 683L, - FilterListId = 617L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/data/yoyo.org/hosts" - }, - new - { - Id = 684L, - FilterListId = 618L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://bitbucket.org/ethanr/dns-blacklists/raw/8575c9f96e5b4a1308f2f12394abd86d0927a4a0/bad_lists/Mandiant_APT1_Report_Appendix_D.txt" - }, - new - { - Id = 685L, - FilterListId = 618L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Mandiant-APT1-Report.txt" - }, - new - { - Id = 686L, - FilterListId = 619L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/HenningVanRaumle/pihole-ytadblock/master/ytadblock.txt" - }, - new - { - Id = 687L, - FilterListId = 625L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nathanaccidentally/SystemHostsBlocker/master/hosts" - }, - new - { - Id = 688L, - FilterListId = 626L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tyzbit/hosts/master/data/tyzbit/hosts" - }, - new - { - Id = 689L, - FilterListId = 628L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/TakoYachty/Gift-Card-Killer/master/Untrusted Hosts Blocker.txt" - }, - new - { - Id = 690L, - FilterListId = 630L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/AdguardDNS.txt" - }, - new - { - Id = 691L, - FilterListId = 631L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/Prigent-Phishing.txt" - }, - new - { - Id = 692L, - FilterListId = 631L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Prigent-Phishing.txt" - }, - new - { - Id = 693L, - FilterListId = 632L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/static/SamsungSmart.txt" - }, - new - { - Id = 694L, - FilterListId = 658L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/filters/generic_filters.txt" - }, - new - { - Id = 695L, - FilterListId = 659L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/filters/modal_filters.txt" - }, - new - { - Id = 696L, - FilterListId = 660L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/filters/newsletter_filters.txt" - }, - new - { - Id = 697L, - FilterListId = 661L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/filters/social_filters.txt" - }, - new - { - Id = 698L, - FilterListId = 663L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nmtrung/FMSF-2.0/master/fmsf_2.0.txt" - }, - new - { - Id = 699L, - FilterListId = 664L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/AdguardMobileAds.txt" - }, - new - { - Id = 700L, - FilterListId = 665L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/AdguardMobileSpyware.txt" - }, - new - { - Id = 701L, - FilterListId = 666L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/AdguardApps.txt" - }, - new - { - Id = 702L, - FilterListId = 667L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/AdguardDNS.txt" - }, - new - { - Id = 703L, - FilterListId = 668L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://tgc.cloud/downloads/iOSAds.txt" - }, - new - { - Id = 704L, - FilterListId = 669L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://tgc.cloud/downloads/hosts.txt" - }, - new - { - Id = 705L, - FilterListId = 670L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/LittleSnitchNorwegianList.lsrules" - }, - new - { - Id = 706L, - FilterListId = 670L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/LittleSnitchNorwegianList.lsrules" - }, - new - { - Id = 707L, - FilterListId = 671L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://obdev.at/resources/littlesnitch/blocklist-example.lsrules" - }, - new - { - Id = 708L, - FilterListId = 672L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=littlesnitch-rule-group-subscriptions;showintro=1&mimetype=plaintext" - }, - new - { - Id = 709L, - FilterListId = 673L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=msfilter&showintro=1&mimetype=plaintext" - }, - new - { - Id = 710L, - FilterListId = 674L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=nohtml&showintro=1&mimetype=plaintext" - }, - new - { - Id = 711L, - FilterListId = 675L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://pgl.yoyo.org/adservers/iplist.php?ipformat=plain&showintro=1&mimetype=plaintext" - }, - new - { - Id = 712L, - FilterListId = 676L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://pgl.yoyo.org/as/serverlist.php?hostformat=junkbuster;showintro=1&mimetype=plaintext" - }, - new - { - Id = 713L, - FilterListId = 677L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://pgl.yoyo.org/as/serverlist.php?hostformat=adblock;showintro=1&mimetype=plaintext" - }, - new - { - Id = 714L, - FilterListId = 678L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gist.githubusercontent.com/sx2008/2766874/raw/c12a305decef3332663d1e04efa80b881211cfac/user.action" - }, - new - { - Id = 715L, - FilterListId = 679L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/fdb/privoxy-config/master/block-trackers.action" - }, - new - { - Id = 716L, - FilterListId = 680L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/DandelionSproutsNorskeFiltreDomains.txt" - }, - new - { - Id = 717L, - FilterListId = 680L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/DandelionSproutsNorskeFiltreDomains.txt" - }, - new - { - Id = 718L, - FilterListId = 681L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.malwaredomainlist.com/hostslist/ip.txt" - }, - new - { - Id = 719L, - FilterListId = 682L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://malc0de.com/bl/IP_Blacklist.txt" - }, - new - { - Id = 720L, - FilterListId = 683L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://www.urlvir.com/export-ip-addresses/" - }, - new - { - Id = 721L, - FilterListId = 684L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://www.urlvir.com/export-hosts/" - }, - new - { - Id = 724L, - FilterListId = 686L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://cdn.adblockcdn.com/filters/adblock_custom.txt" - }, - new - { - Id = 725L, - FilterListId = 687L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://www.quero.at/download/adblock-hosts.zip" - }, - new - { - Id = 726L, - FilterListId = 689L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/xxcriticxx/.pl-host-file/master/hosts.txt" - }, - new - { - Id = 727L, - FilterListId = 690L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mitchellkrogza/Suspicious.Snooping.Sniffing.Hacking.IP.Addresses/master/ips.list" - }, - new - { - Id = 728L, - FilterListId = 691L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mitchellkrogza/Top-Attacking-IP-Addresses-Against-Wordpress-Sites/master/wordpress-attacking-ips.txt" - }, - new - { - Id = 729L, - FilterListId = 692L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mitchellkrogza/The-Big-List-of-Hacked-Malware-Web-Sites/master/hacked-domains.list" - }, - new - { - Id = 730L, - FilterListId = 693L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hosts.ubuntu101.co.za/hosts" - }, - new - { - Id = 731L, - FilterListId = 694L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hosts.ubuntu101.co.za/domains.list" - }, - new - { - Id = 732L, - FilterListId = 696L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/dan-pollock-someonewhocares-org.txt" - }, - new - { - Id = 733L, - FilterListId = 697L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/mvps-hosts-file.txt" - }, - new - { - Id = 734L, - FilterListId = 698L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/malware-domain-list.txt" - }, - new - { - Id = 735L, - FilterListId = 699L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/nocoin.txt" - }, - new - { - Id = 736L, - FilterListId = 700L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/easylist.txt" - }, - new - { - Id = 737L, - FilterListId = 703L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/KADhosts/master/KADomains.txt" - }, - new - { - Id = 738L, - FilterListId = 704L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/steven-blacks-ad-hoc-list.txt" - }, - new - { - Id = 739L, - FilterListId = 705L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/coinblocker.txt" - }, - new - { - Id = 740L, - FilterListId = 706L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/add-2o7net.txt" - }, - new - { - Id = 741L, - FilterListId = 707L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/add-dead.txt" - }, - new - { - Id = 742L, - FilterListId = 708L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/add-risk.txt" - }, - new - { - Id = 743L, - FilterListId = 709L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/add-spam.txt" - }, - new - { - Id = 744L, - FilterListId = 710L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/tyzbit.txt" - }, - new - { - Id = 745L, - FilterListId = 710L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Tyzbit.txt" - }, - new - { - Id = 746L, - FilterListId = 711L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/uncheckyads.txt" - }, - new - { - Id = 747L, - FilterListId = 712L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/spotifyads.txt" - }, - new - { - Id = 748L, - FilterListId = 715L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/highsea/Hosts/master/host-include-appale/hosts" - }, - new - { - Id = 750L, - FilterListId = 717L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/superliaoyong/hosts/master/hosts" - }, - new - { - Id = 751L, - FilterListId = 718L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/popcorner/cernet-ipv6-hosts/hosts/hosts" - }, - new - { - Id = 752L, - FilterListId = 719L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://ads-for-open-source.readthedocs.io/en/latest/_static/lists/opensource-ads.txt" - }, - new - { - Id = 753L, - FilterListId = 720L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://nonio.pt/antinonio.txt" - }, - new - { - Id = 754L, - FilterListId = 721L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/brunomiguel/antinonio/master/antinonio.txt" - }, - new - { - Id = 755L, - FilterListId = 722L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gist.githubusercontent.com/balupton/6960605/raw/16bfeff88761b16296ed3ee15fbacf6840f1701a/filter-twitterdrama.txt" - }, - new - { - Id = 756L, - FilterListId = 723L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gist.githubusercontent.com/balupton/6960605/raw/16bfeff88761b16296ed3ee15fbacf6840f1701a/filter-feedlyads.txt" - }, - new - { - Id = 757L, - FilterListId = 724L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gist.githubusercontent.com/balupton/6960605/raw/16bfeff88761b16296ed3ee15fbacf6840f1701a/filter-facebookdrama.txt" - }, - new - { - Id = 758L, - FilterListId = 726L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/whtsky/abp-rules/master/rules.txt" - }, - new - { - Id = 759L, - FilterListId = 726L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://abp.tt.codes/rules.txt" - }, - new - { - Id = 760L, - FilterListId = 728L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/realodix/AdBlockID/master/output/adblockid.txt" - }, - new - { - Id = 761L, - FilterListId = 729L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/theel0ja/CrapBlock/master/crapblock-annoyances.txt" - }, - new - { - Id = 762L, - FilterListId = 729L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://crapblock.theel0ja.info/crapblock-annoyances.txt" - }, - new - { - Id = 763L, - FilterListId = 729L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/theel0ja/crapblock/raw/master/crapblock-annoyances.txt" - }, - new - { - Id = 764L, - FilterListId = 730L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/theel0ja/CrapBlock/master/block-googlefonts.txt" - }, - new - { - Id = 765L, - FilterListId = 730L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://crapblock.theel0ja.info/block-googlefonts.txt" - }, - new - { - Id = 766L, - FilterListId = 730L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/theel0ja/crapblock/raw/master/block-googlefonts.txt" - }, - new - { - Id = 767L, - FilterListId = 731L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/NeeEoo/AdBlockNeeEoo/master/List.txt" - }, - new - { - Id = 769L, - FilterListId = 734L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/imageboard/GelboLube.txt" - }, - new - { - Id = 770L, - FilterListId = 734L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/imageboard/GelboLube.txt" - }, - new - { - Id = 771L, - FilterListId = 735L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/specific/AntiAPKMirrorCountdown.txt" - }, - new - { - Id = 772L, - FilterListId = 735L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/specific/AntiAPKMirrorCountdown.txt" - }, - new - { - Id = 773L, - FilterListId = 736L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/OsborneSystems/Columbia/master/Columbia.txt" - }, - new - { - Id = 774L, - FilterListId = 743L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/akopachov/uBlock-AK-filter-rules/master/entertainment" - }, - new - { - Id = 775L, - FilterListId = 744L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Hunter-Github/the-best-stack-overflow/master/se_filters.txt" - }, - new - { - Id = 776L, - FilterListId = 746L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Hakame-kun/uBlock-Filters-Indonesia/master/uBlock Indo/ubindo.txt" - }, - new - { - Id = 777L, - FilterListId = 747L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nimasaj/uBOPa/master/uBOPa.txt" - }, - new - { - Id = 778L, - FilterListId = 747L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://mynext.pro/uBOPa.txt" - }, - new - { - Id = 779L, - FilterListId = 748L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.microsoft.com/cms/api/am/binary/RWilsQ" - }, - new - { - Id = 780L, - FilterListId = 749L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/malwaredomains_full.tpl" - }, - new - { - Id = 781L, - FilterListId = 750L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easy-tracking-protection.truste.com/easy.tpl" - }, - new - { - Id = 782L, - FilterListId = 751L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://jansal.net/tpl/ricklist.tpl" - }, - new - { - Id = 783L, - FilterListId = 752L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://jansal.net/tpl/popup-block.tpl" - }, - new - { - Id = 784L, - FilterListId = 753L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://jansal.net/tpl/obtrusive.tpl" - }, - new - { - Id = 785L, - FilterListId = 754L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://jansal.net/tpl/malpatrol.tpl" - }, - new - { - Id = 786L, - FilterListId = 755L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://jansal.net/tpl/m.tpl" - }, - new - { - Id = 787L, - FilterListId = 756L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://jansal.net/tpl/latvian-list.tpl" - }, - new - { - Id = 788L, - FilterListId = 757L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://jansal.net/tpl/facebook-connect-optout-adblockplusfilter.tpl" - }, - new - { - Id = 789L, - FilterListId = 758L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://jansal.net/tpl/adblock-persian.tpl" - }, - new - { - Id = 790L, - FilterListId = 759L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://jansal.net/tpl/IsraelList.tpl" - }, - new - { - Id = 791L, - FilterListId = 760L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://jansal.net/tpl/Adversity/Antisocial.tpl" - }, - new - { - Id = 792L, - FilterListId = 761L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://jansal.net/tpl/Adversity/Adversity.tpl" - }, - new - { - Id = 793L, - FilterListId = 762L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.fanboy.co.nz/adblock/ie/fanboy-noele.tpl" - }, - new - { - Id = 794L, - FilterListId = 763L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.fanboy.co.nz/adblock/ie/fanboy-tracking.tpl" - }, - new - { - Id = 795L, - FilterListId = 764L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://jansal.net/tpl/fanboy/enhancedstats-addon.tpl" - }, - new - { - Id = 796L, - FilterListId = 765L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://jansal.net/tpl/fanboy/fanboy-adult.tpl" - }, - new - { - Id = 797L, - FilterListId = 766L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/lilydjwg/abp-rules/master/list.txt" - }, - new - { - Id = 798L, - FilterListId = 767L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/OwlStudioCN/owl-abp-rules/master/owl-abp-rules.txt" - }, - new - { - Id = 799L, - FilterListId = 769L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Manu1400/i-don-t-care-about-newsletters/master/adp.txt" - }, - new - { - Id = 800L, - FilterListId = 770L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://adp.magnobiet.com/list.txt" - }, - new - { - Id = 801L, - FilterListId = 772L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kbinani/adblock-wikipedia/master/signed.txt" - }, - new - { - Id = 802L, - FilterListId = 773L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easylistgermany+easylist.tpl" - }, - new - { - Id = 803L, - FilterListId = 774L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/fanboy-annoyance.tpl" - }, - new - { - Id = 804L, - FilterListId = 775L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easylistlithuania+easylist.tpl" - }, - new - { - Id = 805L, - FilterListId = 776L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/bulgarian_list+easylist.tpl" - }, - new - { - Id = 806L, - FilterListId = 777L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/latvianlist+easylist.tpl" - }, - new - { - Id = 807L, - FilterListId = 778L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easyprivacy+easylist.tpl" - }, - new - { - Id = 808L, - FilterListId = 779L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easylistitaly+easylist.tpl" - }, - new - { - Id = 809L, - FilterListId = 780L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/israellist+easylist.tpl" - }, - new - { - Id = 810L, - FilterListId = 781L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easylistchina+easylist.tpl" - }, - new - { - Id = 811L, - FilterListId = 782L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easylistdutch+easylist.tpl" - }, - new - { - Id = 812L, - FilterListId = 783L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/rolist+easylist.tpl" - }, - new - { - Id = 813L, - FilterListId = 784L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/wiltteri+easylist.tpl" - }, - new - { - Id = 814L, - FilterListId = 785L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/fanboy-social.tpl" - }, - new - { - Id = 815L, - FilterListId = 786L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/liste_ar+liste_fr+easylist.tpl" - }, - new - { - Id = 816L, - FilterListId = 787L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/ruadlist+easylist.tpl" - }, - new - { - Id = 817L, - FilterListId = 788L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/Liste_AR.tpl" - }, - new - { - Id = 818L, - FilterListId = 789L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easylistdutch.tpl" - }, - new - { - Id = 819L, - FilterListId = 790L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easyprivacy_nointernational.tpl" - }, - new - { - Id = 820L, - FilterListId = 791L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/advblock.tpl" - }, - new - { - Id = 821L, - FilterListId = 792L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easylist_noadult.tpl" - }, - new - { - Id = 822L, - FilterListId = 793L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easylistspanish.tpl" - }, - new - { - Id = 823L, - FilterListId = 794L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easylistchina.tpl" - }, - new - { - Id = 824L, - FilterListId = 795L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/liste_fr.tpl" - }, - new - { - Id = 825L, - FilterListId = 796L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easylistgermany.tpl" - }, - new - { - Id = 826L, - FilterListId = 797L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/antiadblockfilters.tpl" - }, - new - { - Id = 827L, - FilterListId = 798L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/liste_fr+easylist.tpl" - }, - new - { - Id = 828L, - FilterListId = 799L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easylistitaly.tpl" - }, - new - { - Id = 829L, - FilterListId = 800L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easylistspanish+easylist.tpl" - }, - new - { - Id = 830L, - FilterListId = 801L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/ABP Macedonian List.txt" - }, - new - { - Id = 831L, - FilterListId = 802L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Liste DZ.txt" - }, - new - { - Id = 832L, - FilterListId = 803L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Snaevar87's Icelandic filter.txt" - }, - new - { - Id = 833L, - FilterListId = 804L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/TamilFriends List.txt" - }, - new - { - Id = 834L, - FilterListId = 805L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/advblock+cssfixes.txt" - }, - new - { - Id = 835L, - FilterListId = 806L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistportuguese.txt" - }, - new - { - Id = 836L, - FilterListId = 807L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/luigimannoni/m5s-ublock-filter/master/filter-list.txt" - }, - new - { - Id = 837L, - FilterListId = 808L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://ajnasz.hu/adblock/recent" - }, - new - { - Id = 838L, - FilterListId = 809L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.ergensin.nl/adblock/nlblock.txt" - }, - new - { - Id = 839L, - FilterListId = 809L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://www.verzijlbergh.com/adblock/nlblock.txt" - }, - new - { - Id = 840L, - FilterListId = 810L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/complete/domains.txt" - }, - new - { - Id = 841L, - FilterListId = 811L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/mini/hosts.txt" - }, - new - { - Id = 842L, - FilterListId = 812L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/mini/domains.txt" - }, - new - { - Id = 843L, - FilterListId = 813L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jwinnie/acceptable-ads/master/filters.txt" - }, - new - { - Id = 844L, - FilterListId = 814L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/gmbkslist.txt" - }, - new - { - Id = 845L, - FilterListId = 815L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Adblocking Open Filter JP" - }, - new - { - Id = 846L, - FilterListId = 816L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/I Don't Want to Download Your Browser.txt" - }, - new - { - Id = 847L, - FilterListId = 816L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/I Don't Want to Download Your Browser.txt" - }, - new - { - Id = 848L, - FilterListId = 817L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/lassekongo83/Frellwits-filter-lists/master/Frellwits-Swedish-Hosts-File.txt" - }, - new - { - Id = 849L, - FilterListId = 817L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://repo.or.cz/Adblock-list-backups-Frellwits-filter-lists.git/blob_plain/refs/heads/master:/Frellwits-Swedish-Hosts-File.txt" - }, - new - { - Id = 850L, - FilterListId = 818L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/indianlist.txt" - }, - new - { - Id = 851L, - FilterListId = 819L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/YouTubeEvenMorePureVideoExperience.txt" - }, - new - { - Id = 852L, - FilterListId = 819L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/YouTubeEvenMorePureVideoExperience.txt" - }, - new - { - Id = 854L, - FilterListId = 821L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/brave/adblock-lists/master/brave-unbreak.txt" - }, - new - { - Id = 855L, - FilterListId = 822L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/VeleSila/VELE-SILA-List/gh-pages/KaFanList.txt" - }, - new - { - Id = 856L, - FilterListId = 823L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/gasull/adblock-nsa/master/filters.txt" - }, - new - { - Id = 857L, - FilterListId = 824L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mistalaba/popover-blocklist/master/blocklist.txt" - }, - new - { - Id = 858L, - FilterListId = 825L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jasonbarone/membership-app-block-list/master/membership-app-block-list.txt" - }, - new - { - Id = 859L, - FilterListId = 826L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/w13d/adblockListABP-PiHole/master/Spotify.txt" - }, - new - { - Id = 860L, - FilterListId = 827L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/w13d/adblockListABP-PiHole/master/list.txt" - }, - new - { - Id = 861L, - FilterListId = 828L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/evenxzero/Raajje-AdList/master/filter.txt" - }, - new - { - Id = 862L, - FilterListId = 829L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/miyurusankalpa/adblock-list-sri-lanka/master/lkfilter.txt" - }, - new - { - Id = 863L, - FilterListId = 830L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/adblock.conf" - }, - new - { - Id = 864L, - FilterListId = 831L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/ads01.conf" - }, - new - { - Id = 865L, - FilterListId = 832L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/facebookblock.conf" - }, - new - { - Id = 866L, - FilterListId = 833L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/fastclick.conf" - }, - new - { - Id = 867L, - FilterListId = 834L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/google.conf" - }, - new - { - Id = 868L, - FilterListId = 835L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/microsoftblock.conf" - }, - new - { - Id = 869L, - FilterListId = 836L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Recon/romanian-media-propaganda-adblock-list/master/ro-media-blocklist.txt" - }, - new - { - Id = 870L, - FilterListId = 837L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/duskwuff/syndicationblock/master/filters.txt" - }, - new - { - Id = 872L, - FilterListId = 839L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Manu1400/i-don-t-care-about-gotoup-btns/master/list-gotoup-btns.txt" - }, - new - { - Id = 873L, - FilterListId = 840L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/KCaglarCoskun/enur-filter-list/master/enur-filter-list.txt" - }, - new - { - Id = 874L, - FilterListId = 841L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/LinuxLowell/chat-annoyances/master/chat-annoyances.txt" - }, - new - { - Id = 875L, - FilterListId = 842L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=dnsmasq&showintro=1&mimetype=plaintext" - }, - new - { - Id = 876L, - FilterListId = 843L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/facebook/FacebookZuckestionKiller.txt" - }, - new - { - Id = 877L, - FilterListId = 843L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/facebook/FacebookZuckestionKiller.txt" - }, - new - { - Id = 878L, - FilterListId = 844L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/facebook/FacebookCommands.txt" - }, - new - { - Id = 879L, - FilterListId = 844L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/facebook/FacebookCommands.txt" - }, - new - { - Id = 880L, - FilterListId = 845L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/hosts/hosts_google_adservice_id.txt" - }, - new - { - Id = 881L, - FilterListId = 845L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/hosts/hosts_google_adservice_id.txt" - }, - new - { - Id = 882L, - FilterListId = 846L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/ThaiParanoidBlock/maximum/ThaiParanoid.txt" - }, - new - { - Id = 883L, - FilterListId = 846L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/ThaiParanoidBlock/raw/maximum/ThaiParanoid.txt" - }, - new - { - Id = 884L, - FilterListId = 847L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/sipp11/th_ad_filters/master/th_list.txt" - }, - new - { - Id = 885L, - FilterListId = 848L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/TwitchPureViewingExperience.txt" - }, - new - { - Id = 886L, - FilterListId = 848L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/TwitchPureViewingExperience.txt" - }, - new - { - Id = 887L, - FilterListId = 850L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAbusePorn.txt" - }, - new - { - Id = 888L, - FilterListId = 850L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAbusePorn.txt" - }, - new - { - Id = 889L, - FilterListId = 851L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/WikiaPureBrowsingExperience.txt" - }, - new - { - Id = 890L, - FilterListId = 851L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/WikiaPureBrowsingExperience.txt" - }, - new - { - Id = 891L, - FilterListId = 852L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/YouTubeYetEvenMorePureVideoExperience.txt" - }, - new - { - Id = 892L, - FilterListId = 852L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/YouTubeYetEvenMorePureVideoExperience.txt" - }, - new - { - Id = 893L, - FilterListId = 853L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/VeryThoroughWebsiteCleaner.txt" - }, - new - { - Id = 894L, - FilterListId = 853L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/VeryThoroughWebsiteCleaner.txt" - }, - new - { - Id = 895L, - FilterListId = 855L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/MeWe Pink Theme.txt" - }, - new - { - Id = 896L, - FilterListId = 855L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/MeWe Pink Theme.txt" - }, - new - { - Id = 897L, - FilterListId = 856L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Pro-LED List.txt" - }, - new - { - Id = 898L, - FilterListId = 856L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Pro-LED List.txt" - }, - new - { - Id = 899L, - FilterListId = 857L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Dandelion Sprout-s Redirector Assistant List/TorRedirectorList.json" - }, - new - { - Id = 900L, - FilterListId = 857L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Dandelion Sprout-s Redirector Assistant List/TorRedirectorList.json" - }, - new - { - Id = 904L, - FilterListId = 859L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-Futa List.txt" - }, - new - { - Id = 905L, - FilterListId = 859L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-Futa List.txt" - }, - new - { - Id = 906L, - FilterListId = 860L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://bitbucket.org/nicktabick/adblock-rules/raw/master/nt-adblock.txt" - }, - new - { - Id = 907L, - FilterListId = 860L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nicktabick/adblock-rules/master/nt-adblock.txt" - }, - new - { - Id = 908L, - FilterListId = 860L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/nicktabick/adblock-rules/raw/master/nt-adblock.txt" - }, - new - { - Id = 909L, - FilterListId = 861L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bogachenko/filterlist/master/filterlist.txt" - }, - new - { - Id = 910L, - FilterListId = 862L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/other/SurvivedTrackingLinkWarning.txt" - }, - new - { - Id = 911L, - FilterListId = 862L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/other/SurvivedTrackingLinkWarning.txt" - }, - new - { - Id = 912L, - FilterListId = 863L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-'Christmas carols' List.txt" - }, - new - { - Id = 913L, - FilterListId = 863L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-'Christmas carols' List.txt" - }, - new - { - Id = 914L, - FilterListId = 866L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/hosts/hosts_facebook0.txt" - }, - new - { - Id = 915L, - FilterListId = 866L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/hosts/hosts_facebook0.txt" - }, - new - { - Id = 918L, - FilterListId = 868L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/mochi_filter.txt" - }, - new - { - Id = 919L, - FilterListId = 869L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/mochi_filter_2gun.txt" - }, - new - { - Id = 920L, - FilterListId = 870L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/mochi_filter_amazon.txt" - }, - new - { - Id = 921L, - FilterListId = 871L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/mochi_filter_extended.txt" - }, - new - { - Id = 922L, - FilterListId = 872L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/negi_filter.txt" - }, - new - { - Id = 923L, - FilterListId = 873L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/negi_google_hplogo_block.txt" - }, - new - { - Id = 924L, - FilterListId = 874L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/negi_twitter_allow_save_multi_images.txt" - }, - new - { - Id = 925L, - FilterListId = 875L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/kame_filter.txt" - }, - new - { - Id = 926L, - FilterListId = 876L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/kotori_filter.txt" - }, - new - { - Id = 927L, - FilterListId = 877L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/kujira_filter.txt" - }, - new - { - Id = 928L, - FilterListId = 878L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/ichigo_filter.txt" - }, - new - { - Id = 929L, - FilterListId = 879L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/tamago_filter.txt" - }, - new - { - Id = 930L, - FilterListId = 881L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/youtube_wo_tonikaku_filter.txt" - }, - new - { - Id = 931L, - FilterListId = 882L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/all.txt" - }, - new - { - Id = 932L, - FilterListId = 884L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/finnish-easylist-addition/finnish-easylist-addition/master/Finland_adb.txt" - }, - new - { - Id = 933L, - FilterListId = 885L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Afghanistan.txt" - }, - new - { - Id = 934L, - FilterListId = 886L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Aland.txt" - }, - new - { - Id = 935L, - FilterListId = 887L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Albania.txt" - }, - new - { - Id = 936L, - FilterListId = 888L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Algeria.txt" - }, - new - { - Id = 937L, - FilterListId = 889L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/AmericanSamoa.txt" - }, - new - { - Id = 938L, - FilterListId = 890L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Andorra.txt" - }, - new - { - Id = 939L, - FilterListId = 891L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Angola.txt" - }, - new - { - Id = 940L, - FilterListId = 892L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Anguilla.txt" - }, - new - { - Id = 941L, - FilterListId = 893L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Antarctica.txt" - }, - new - { - Id = 942L, - FilterListId = 894L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/AntiguaAndBarbuda.txt" - }, - new - { - Id = 943L, - FilterListId = 895L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Argentina.txt" - }, - new - { - Id = 944L, - FilterListId = 896L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Armenia.txt" - }, - new - { - Id = 945L, - FilterListId = 897L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/AscensionIsland.txt" - }, - new - { - Id = 946L, - FilterListId = 898L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Australia.txt" - }, - new - { - Id = 947L, - FilterListId = 899L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Austria.txt" - }, - new - { - Id = 948L, - FilterListId = 900L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Azerbaijan.txt" - }, - new - { - Id = 949L, - FilterListId = 901L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bahamas.txt" - }, - new - { - Id = 950L, - FilterListId = 902L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bahrain.txt" - }, - new - { - Id = 951L, - FilterListId = 903L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bangladesh.txt" - }, - new - { - Id = 952L, - FilterListId = 904L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Belarus.txt" - }, - new - { - Id = 953L, - FilterListId = 905L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Belgium.txt" - }, - new - { - Id = 954L, - FilterListId = 906L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Belize.txt" - }, - new - { - Id = 955L, - FilterListId = 907L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bermuda.txt" - }, - new - { - Id = 956L, - FilterListId = 908L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bhutan.txt" - }, - new - { - Id = 957L, - FilterListId = 909L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bolivia.txt" - }, - new - { - Id = 958L, - FilterListId = 910L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bonaire.txt" - }, - new - { - Id = 959L, - FilterListId = 911L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/BosniaAndHerzegovina.txt" - }, - new - { - Id = 960L, - FilterListId = 912L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Botswana.txt" - }, - new - { - Id = 961L, - FilterListId = 913L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Brazil.txt" - }, - new - { - Id = 962L, - FilterListId = 914L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/BritishIndianOceanTerritory.txt" - }, - new - { - Id = 963L, - FilterListId = 915L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/BritishVirginIslands.txt" - }, - new - { - Id = 964L, - FilterListId = 916L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bulgaria.txt" - }, - new - { - Id = 965L, - FilterListId = 917L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/BurkinaFaso.txt" - }, - new - { - Id = 966L, - FilterListId = 918L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Burundi.txt" - }, - new - { - Id = 967L, - FilterListId = 919L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Cambodia.txt" - }, - new - { - Id = 968L, - FilterListId = 920L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Cameroon.txt" - }, - new - { - Id = 969L, - FilterListId = 921L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Canada.txt" - }, - new - { - Id = 970L, - FilterListId = 922L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CapeVerde.txt" - }, - new - { - Id = 971L, - FilterListId = 923L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Catalonia.txt" - }, - new - { - Id = 972L, - FilterListId = 924L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CaymanIslands.txt" - }, - new - { - Id = 973L, - FilterListId = 925L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CentralAfricanRepublic.txt" - }, - new - { - Id = 974L, - FilterListId = 926L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Chile.txt" - }, - new - { - Id = 975L, - FilterListId = 927L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/ChinaPeoplesRepublicof.txt" - }, - new - { - Id = 976L, - FilterListId = 928L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/ChristmasIsland.txt" - }, - new - { - Id = 977L, - FilterListId = 929L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CocosKeelingIslands.txt" - }, - new - { - Id = 978L, - FilterListId = 930L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Colombia.txt" - }, - new - { - Id = 979L, - FilterListId = 931L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CongoKinshasa.txt" - }, - new - { - Id = 980L, - FilterListId = 932L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CookIslands.txt" - }, - new - { - Id = 981L, - FilterListId = 933L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CostaRica.txt" - }, - new - { - Id = 982L, - FilterListId = 934L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Croatia.txt" - }, - new - { - Id = 983L, - FilterListId = 935L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Cuba.txt" - }, - new - { - Id = 984L, - FilterListId = 936L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Cyprus.txt" - }, - new - { - Id = 985L, - FilterListId = 937L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CzechRepublic.txt" - }, - new - { - Id = 986L, - FilterListId = 938L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Denmark.txt" - }, - new - { - Id = 987L, - FilterListId = 939L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Djibouti.txt" - }, - new - { - Id = 988L, - FilterListId = 940L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Dominica.txt" - }, - new - { - Id = 989L, - FilterListId = 941L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/DominicanRepublic.txt" - }, - new - { - Id = 990L, - FilterListId = 942L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Ecuador.txt" - }, - new - { - Id = 991L, - FilterListId = 943L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Egypt.txt" - }, - new - { - Id = 992L, - FilterListId = 944L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/ElSalvador.txt" - }, - new - { - Id = 993L, - FilterListId = 945L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/EquatorialGuinea.txt" - }, - new - { - Id = 994L, - FilterListId = 946L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Estonia.txt" - }, - new - { - Id = 995L, - FilterListId = 947L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/EuropeanUnion.txt" - }, - new - { - Id = 996L, - FilterListId = 948L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/FaeroeIslands.txt" - }, - new - { - Id = 997L, - FilterListId = 949L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/FederatedStatesOfMicronesia.txt" - }, - new - { - Id = 998L, - FilterListId = 950L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Fiji.txt" - }, - new - { - Id = 999L, - FilterListId = 951L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Finland.txt" - }, - new - { - Id = 1000L, - FilterListId = 952L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/France.txt" - }, - new - { - Id = 1001L, - FilterListId = 953L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/FrenchPolynesia.txt" - }, - new - { - Id = 1002L, - FilterListId = 954L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/FrenchSouthernAndAntarcticLands.txt" - }, - new - { - Id = 1003L, - FilterListId = 955L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/GaboneseRepublic.txt" - }, - new - { - Id = 1004L, - FilterListId = 956L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Gambia.txt" - }, - new - { - Id = 1005L, - FilterListId = 957L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/GazaStrip.txt" - }, - new - { - Id = 1006L, - FilterListId = 958L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Georgia.txt" - }, - new - { - Id = 1007L, - FilterListId = 959L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Germany.txt" - }, - new - { - Id = 1008L, - FilterListId = 960L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Ghana.txt" - }, - new - { - Id = 1009L, - FilterListId = 961L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Greece.txt" - }, - new - { - Id = 1010L, - FilterListId = 962L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Greenland.txt" - }, - new - { - Id = 1011L, - FilterListId = 963L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Grenada.txt" - }, - new - { - Id = 1012L, - FilterListId = 964L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guadeloupe.txt" - }, - new - { - Id = 1013L, - FilterListId = 965L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guam.txt" - }, - new - { - Id = 1014L, - FilterListId = 966L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guatemala.txt" - }, - new - { - Id = 1015L, - FilterListId = 967L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guernsey.txt" - }, - new - { - Id = 1016L, - FilterListId = 968L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guinea.txt" - }, - new - { - Id = 1017L, - FilterListId = 969L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guyana.txt" - }, - new - { - Id = 1018L, - FilterListId = 970L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Haiti.txt" - }, - new - { - Id = 1019L, - FilterListId = 971L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/HeardIslandAndMcDonaldIslands.txt" - }, - new - { - Id = 1020L, - FilterListId = 972L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Honduras.txt" - }, - new - { - Id = 1021L, - FilterListId = 973L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/HongKong.txt" - }, - new - { - Id = 1022L, - FilterListId = 974L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Hungary.txt" - }, - new - { - Id = 1023L, - FilterListId = 975L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Iceland.txt" - }, - new - { - Id = 1024L, - FilterListId = 976L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/India.txt" - }, - new - { - Id = 1025L, - FilterListId = 977L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Indonesia.txt" - }, - new - { - Id = 1026L, - FilterListId = 978L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Iran.txt" - }, - new - { - Id = 1027L, - FilterListId = 979L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Iraq.txt" - }, - new - { - Id = 1028L, - FilterListId = 980L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Ireland.txt" - }, - new - { - Id = 1029L, - FilterListId = 981L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/IsleofMan.txt" - }, - new - { - Id = 1030L, - FilterListId = 982L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Israel.txt" - }, - new - { - Id = 1031L, - FilterListId = 983L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Italy.txt" - }, - new - { - Id = 1032L, - FilterListId = 984L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/IvoryCoast.txt" - }, - new - { - Id = 1033L, - FilterListId = 985L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Japan.txt" - }, - new - { - Id = 1034L, - FilterListId = 986L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Jersey.txt" - }, - new - { - Id = 1035L, - FilterListId = 987L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Jordan.txt" - }, - new - { - Id = 1036L, - FilterListId = 988L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Kazakhstan.txt" - }, - new - { - Id = 1037L, - FilterListId = 989L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Kenya.txt" - }, - new - { - Id = 1038L, - FilterListId = 990L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Kiribati.txt" - }, - new - { - Id = 1039L, - FilterListId = 991L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Kuwait.txt" - }, - new - { - Id = 1040L, - FilterListId = 992L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Kyrgyzstan.txt" - }, - new - { - Id = 1041L, - FilterListId = 993L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Laos.txt" - }, - new - { - Id = 1042L, - FilterListId = 994L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Latvia.txt" - }, - new - { - Id = 1043L, - FilterListId = 995L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Lebanon.txt" - }, - new - { - Id = 1044L, - FilterListId = 996L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Libya.txt" - }, - new - { - Id = 1045L, - FilterListId = 997L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Liechtenstein.txt" - }, - new - { - Id = 1046L, - FilterListId = 998L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Lithuania.txt" - }, - new - { - Id = 1047L, - FilterListId = 999L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Luxembourg.txt" - }, - new - { - Id = 1048L, - FilterListId = 1000L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Macau.txt" - }, - new - { - Id = 1049L, - FilterListId = 1001L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Macedonia.txt" - }, - new - { - Id = 1050L, - FilterListId = 1002L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Madagascar.txt" - }, - new - { - Id = 1051L, - FilterListId = 1003L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Malawi.txt" - }, - new - { - Id = 1052L, - FilterListId = 1004L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Malaysia.txt" - }, - new - { - Id = 1053L, - FilterListId = 1005L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mali.txt" - }, - new - { - Id = 1054L, - FilterListId = 1006L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Malta.txt" - }, - new - { - Id = 1055L, - FilterListId = 1007L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mauritania.txt" - }, - new - { - Id = 1056L, - FilterListId = 1008L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mauritius.txt" - }, - new - { - Id = 1057L, - FilterListId = 1009L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mayotte.txt" - }, - new - { - Id = 1058L, - FilterListId = 1010L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mexico.txt" - }, - new - { - Id = 1059L, - FilterListId = 1011L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Moldova.txt" - }, - new - { - Id = 1060L, - FilterListId = 1012L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mongolia.txt" - }, - new - { - Id = 1061L, - FilterListId = 1013L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Montenegro.txt" - }, - new - { - Id = 1062L, - FilterListId = 1014L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Montserrat.txt" - }, - new - { - Id = 1063L, - FilterListId = 1015L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Morocco.txt" - }, - new - { - Id = 1064L, - FilterListId = 1016L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mozambique.txt" - }, - new - { - Id = 1065L, - FilterListId = 1017L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Namibia.txt" - }, - new - { - Id = 1066L, - FilterListId = 1018L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Nauru.txt" - }, - new - { - Id = 1067L, - FilterListId = 1019L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Nepal.txt" - }, - new - { - Id = 1068L, - FilterListId = 1020L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Netherlands.txt" - }, - new - { - Id = 1069L, - FilterListId = 1021L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/NewCaledonia.txt" - }, - new - { - Id = 1070L, - FilterListId = 1022L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/NewZealand.txt" - }, - new - { - Id = 1071L, - FilterListId = 1023L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Nicaragua.txt" - }, - new - { - Id = 1072L, - FilterListId = 1024L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Niger.txt" - }, - new - { - Id = 1073L, - FilterListId = 1025L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Nigeria.txt" - }, - new - { - Id = 1074L, - FilterListId = 1026L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Niue.txt" - }, - new - { - Id = 1075L, - FilterListId = 1027L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/NorfolkIsland.txt" - }, - new - { - Id = 1076L, - FilterListId = 1028L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/NorthernMarianaIslands.txt" - }, - new - { - Id = 1077L, - FilterListId = 1029L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Norway.txt" - }, - new - { - Id = 1078L, - FilterListId = 1030L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Oman.txt" - }, - new - { - Id = 1079L, - FilterListId = 1031L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Pakistan.txt" - }, - new - { - Id = 1080L, - FilterListId = 1032L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Palau.txt" - }, - new - { - Id = 1081L, - FilterListId = 1033L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Palestine.txt" - }, - new - { - Id = 1082L, - FilterListId = 1034L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Panama.txt" - }, - new - { - Id = 1083L, - FilterListId = 1035L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Paraguay.txt" - }, - new - { - Id = 1084L, - FilterListId = 1036L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Peru.txt" - }, - new - { - Id = 1085L, - FilterListId = 1037L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Philippines.txt" - }, - new - { - Id = 1086L, - FilterListId = 1038L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/PitcairnIslands.txt" - }, - new - { - Id = 1087L, - FilterListId = 1039L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Poland.txt" - }, - new - { - Id = 1088L, - FilterListId = 1040L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Portugal.txt" - }, - new - { - Id = 1089L, - FilterListId = 1041L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/PuertoRico.txt" - }, - new - { - Id = 1090L, - FilterListId = 1042L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Qatar.txt" - }, - new - { - Id = 1091L, - FilterListId = 1043L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Romania.txt" - }, - new - { - Id = 1092L, - FilterListId = 1044L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Russia.txt" - }, - new - { - Id = 1093L, - FilterListId = 1045L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Rwanda.txt" - }, - new - { - Id = 1094L, - FilterListId = 1047L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaintHelena.txt" - }, - new - { - Id = 1095L, - FilterListId = 1048L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaintLucia.txt" - }, - new - { - Id = 1096L, - FilterListId = 1049L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaintPierreAndMiquelon.txt" - }, - new - { - Id = 1097L, - FilterListId = 1050L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaintVincentAndGrenadines.txt" - }, - new - { - Id = 1098L, - FilterListId = 1051L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Samoa.txt" - }, - new - { - Id = 1099L, - FilterListId = 1052L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SanMarino.txt" - }, - new - { - Id = 1100L, - FilterListId = 1053L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaoTomeAndPrincipe.txt" - }, - new - { - Id = 1101L, - FilterListId = 1054L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaudiArabia.txt" - }, - new - { - Id = 1102L, - FilterListId = 1055L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Senegal.txt" - }, - new - { - Id = 1103L, - FilterListId = 1056L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Serbia.txt" - }, - new - { - Id = 1104L, - FilterListId = 1057L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Seychelles.txt" - }, - new - { - Id = 1105L, - FilterListId = 1058L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SierraLeone.txt" - }, - new - { - Id = 1106L, - FilterListId = 1059L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Singapore.txt" - }, - new - { - Id = 1107L, - FilterListId = 1060L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SintMaarten.txt" - }, - new - { - Id = 1108L, - FilterListId = 1061L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Slovakia.txt" - }, - new - { - Id = 1109L, - FilterListId = 1062L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Slovenia.txt" - }, - new - { - Id = 1110L, - FilterListId = 1063L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Somalia.txt" - }, - new - { - Id = 1111L, - FilterListId = 1064L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SouthAfrica.txt" - }, - new - { - Id = 1112L, - FilterListId = 1065L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SouthGeorgiaAndSouthSandwichIslands.txt" - }, - new - { - Id = 1113L, - FilterListId = 1066L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SouthKorea.txt" - }, - new - { - Id = 1114L, - FilterListId = 1067L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Spain.txt" - }, - new - { - Id = 1115L, - FilterListId = 1068L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SriLanka.txt" - }, - new - { - Id = 1116L, - FilterListId = 1069L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Sudan.txt" - }, - new - { - Id = 1117L, - FilterListId = 1070L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Suriname.txt" - }, - new - { - Id = 1118L, - FilterListId = 1071L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Sweden.txt" - }, - new - { - Id = 1119L, - FilterListId = 1072L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Switzerland.txt" - }, - new - { - Id = 1120L, - FilterListId = 1073L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Syria.txt" - }, - new - { - Id = 1121L, - FilterListId = 1074L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Taiwan.txt" - }, - new - { - Id = 1122L, - FilterListId = 1075L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tajikistan.txt" - }, - new - { - Id = 1123L, - FilterListId = 1076L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tanzania.txt" - }, - new - { - Id = 1124L, - FilterListId = 1077L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Thailand.txt" - }, - new - { - Id = 1125L, - FilterListId = 1078L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/TimorLeste.txt" - }, - new - { - Id = 1126L, - FilterListId = 1079L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Togo.txt" - }, - new - { - Id = 1127L, - FilterListId = 1080L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tokelau.txt" - }, - new - { - Id = 1128L, - FilterListId = 1081L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tonga.txt" - }, - new - { - Id = 1129L, - FilterListId = 1082L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/TrinidadAndTobago.txt" - }, - new - { - Id = 1130L, - FilterListId = 1083L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tunisia.txt" - }, - new - { - Id = 1131L, - FilterListId = 1084L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Turkey.txt" - }, - new - { - Id = 1132L, - FilterListId = 1085L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Turkmenistan.txt" - }, - new - { - Id = 1133L, - FilterListId = 1086L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/TurksAndCaicosIslands.txt" - }, - new - { - Id = 1134L, - FilterListId = 1087L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tuvalu.txt" - }, - new - { - Id = 1135L, - FilterListId = 1088L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Uganda.txt" - }, - new - { - Id = 1136L, - FilterListId = 1089L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Ukraine.txt" - }, - new - { - Id = 1137L, - FilterListId = 1090L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/UnitedArabEmirates.txt" - }, - new - { - Id = 1138L, - FilterListId = 1091L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/UnitedKingdom.txt" - }, - new - { - Id = 1139L, - FilterListId = 1092L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/UnitedStatesofAmerica.txt" - }, - new - { - Id = 1140L, - FilterListId = 1093L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Uruguay.txt" - }, - new - { - Id = 1141L, - FilterListId = 1094L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Uzbekistan.txt" - }, - new - { - Id = 1142L, - FilterListId = 1095L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Vanuatu.txt" - }, - new - { - Id = 1143L, - FilterListId = 1096L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Venezuela.txt" - }, - new - { - Id = 1144L, - FilterListId = 1097L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Vietnam.txt" - }, - new - { - Id = 1145L, - FilterListId = 1098L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/WallisandFutuna.txt" - }, - new - { - Id = 1146L, - FilterListId = 1099L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/WesternSahara.txt" - }, - new - { - Id = 1147L, - FilterListId = 1100L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Zambia.txt" - }, - new - { - Id = 1148L, - FilterListId = 1101L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Zimbabwe.txt" - }, - new - { - Id = 1149L, - FilterListId = 1102L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-Bulgarian-List.txt" - }, - new - { - Id = 1150L, - FilterListId = 1103L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-Clickbait-Blocklist.txt" - }, - new - { - Id = 1151L, - FilterListId = 1104L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-Japanese-3rd-Party-SNS-Filters.txt" - }, - new - { - Id = 1152L, - FilterListId = 1105L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-Japanese-Filters.txt" - }, - new - { - Id = 1153L, - FilterListId = 1106L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-Japanese-Paranoid-Filters.txt" - }, - new - { - Id = 1154L, - FilterListId = 1107L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-X-Files.txt" - }, - new - { - Id = 1155L, - FilterListId = 1108L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABPindo.txt" - }, - new - { - Id = 1156L, - FilterListId = 1109L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/AakList.txt" - }, - new - { - Id = 1157L, - FilterListId = 1110L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/AdAway-Default-Blocklist.txt" - }, - new - { - Id = 1158L, - FilterListId = 1111L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-Filters-by-Gurudee.txt" - }, - new - { - Id = 1159L, - FilterListId = 1112L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-Iran.txt" - }, - new - { - Id = 1160L, - FilterListId = 1113L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-Korea.txt" - }, - new - { - Id = 1161L, - FilterListId = 1114L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-Persian.txt" - }, - new - { - Id = 1162L, - FilterListId = 1115L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-Polska.txt" - }, - new - { - Id = 1163L, - FilterListId = 1116L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-YouTube-Ads.txt" - }, - new - { - Id = 1164L, - FilterListId = 1117L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-uBlock-Polish-Filters.txt" - }, - new - { - Id = 1165L, - FilterListId = 1118L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adguard-English-Filter.txt" - }, - new - { - Id = 1166L, - FilterListId = 1119L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adware-Filters.txt" - }, - new - { - Id = 1167L, - FilterListId = 1120L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/AntiPubWeb.txt" - }, - new - { - Id = 1168L, - FilterListId = 1121L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Anudeep-Youtube.txt" - }, - new - { - Id = 1169L, - FilterListId = 1122L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Ayucat-Powerful.txt" - }, - new - { - Id = 1170L, - FilterListId = 1123L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/BLOGRAM-Analysis-Block-Filter-List-for-Japan.txt" - }, - new - { - Id = 1171L, - FilterListId = 1124L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/BLOGRAM-Basic-Filter-List-for-Japan.txt" - }, - new - { - Id = 1173L, - FilterListId = 1126L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Block-EU-Cookie-Shit-List.txt" - }, - new - { - Id = 1174L, - FilterListId = 1127L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Blockzilla.txt" - }, - new - { - Id = 1175L, - FilterListId = 1128L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/BreakingTheNews.txt" - }, - new - { - Id = 1176L, - FilterListId = 1130L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/CAMELEON-Hosts.txt" - }, - new - { - Id = 1177L, - FilterListId = 1133L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/CryptoWall-Ransomware-C2-Domain-blocklist.txt" - }, - new - { - Id = 1178L, - FilterListId = 1135L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/DNS-BH-Malware-Domains.txt" - }, - new - { - Id = 1179L, - FilterListId = 1139L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Disconnect-Malware-Filter.txt" - }, - new - { - Id = 1180L, - FilterListId = 1140L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Dshield-Suspicious-High.txt" - }, - new - { - Id = 1181L, - FilterListId = 1141L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Dshield-Suspicious-Low.txt" - }, - new - { - Id = 1182L, - FilterListId = 1142L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Dshield-Suspicious-Medium.txt" - }, - new - { - Id = 1183L, - FilterListId = 1143L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/EasyList-Czech-Slovak.txt" - }, - new - { - Id = 1184L, - FilterListId = 1144L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/EasyList-Dutch.txt" - }, - new - { - Id = 1185L, - FilterListId = 1146L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/EasyList-Italy.txt" - }, - new - { - Id = 1186L, - FilterListId = 1148L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/EasyList-Liste-FR.txt" - }, - new - { - Id = 1187L, - FilterListId = 1149L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/EasyList-Thailand.txt" - }, - new - { - Id = 1188L, - FilterListId = 1151L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/FadeMind-addSpam.txt" - }, - new - { - Id = 1189L, - FilterListId = 1152L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Fanboy-Annoyances-List.txt" - }, - new - { - Id = 1190L, - FilterListId = 1153L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Filtros-Nauscopicos.txt" - }, - new - { - Id = 1191L, - FilterListId = 1154L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Finnish-AntiSocial.txt" - }, - new - { - Id = 1192L, - FilterListId = 1155L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/GandJ-Hosts.txt" - }, - new - { - Id = 1193L, - FilterListId = 1156L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Greek-AdBlock-Filter.txt" - }, - new - { - Id = 1194L, - FilterListId = 1157L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Hant05080-Filters.txt" - }, - new - { - Id = 1195L, - FilterListId = 1158L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Henning-VanRaumle-Youtube.txt" - }, - new - { - Id = 1196L, - FilterListId = 1159L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Hufilter.txt" - }, - new - { - Id = 1197L, - FilterListId = 1160L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/HorusTeknoloji/TR-PhishingList/master/url-lists.txt" - }, - new - { - Id = 1198L, - FilterListId = 1161L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ImmortalMalwareDomains.txt" - }, - new - { - Id = 1199L, - FilterListId = 1162L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/JapaneseSiteAdblockFilterver2.txt" - }, - new - { - Id = 1200L, - FilterListId = 1163L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://phishing.army/download/phishing_army_blocklist_extended.txt" - }, - new - { - Id = 1201L, - FilterListId = 1164L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/HorusTeknoloji/TR-PhishingList/master/ip-lists.txt" - }, - new - { - Id = 1202L, - FilterListId = 1165L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/LatvianList.txt" - }, - new - { - Id = 1203L, - FilterListId = 1166L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Lead-Generator.txt" - }, - new - { - Id = 1204L, - FilterListId = 1167L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ListeAR.txt" - }, - new - { - Id = 1205L, - FilterListId = 1168L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Locky-Ransomware-C2-Domain-Blocklist.txt" - }, - new - { - Id = 1206L, - FilterListId = 1169L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Malware-Domains-Just-Domains.txt" - }, - new - { - Id = 1207L, - FilterListId = 1172L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Mat1th-DNS-add-block.txt" - }, - new - { - Id = 1208L, - FilterListId = 1173L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Mayvs-Private-Adblock-Filters.txt" - }, - new - { - Id = 1209L, - FilterListId = 1174L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Metaphoricgiraffe-Privacy-Filters.txt" - }, - new - { - Id = 1210L, - FilterListId = 1175L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Michael-Trimms-Hosts.txt" - }, - new - { - Id = 1211L, - FilterListId = 1176L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Mitchell-Krogs-Badd-Boyz-Hosts.txt" - }, - new - { - Id = 1212L, - FilterListId = 1179L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Notracking-hostnames.txt" - }, - new - { - Id = 1213L, - FilterListId = 1180L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/PLgeneral.txt" - }, - new - { - Id = 1214L, - FilterListId = 1182L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Piwik-Spam.txt" - }, - new - { - Id = 1215L, - FilterListId = 1183L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/PopupBlocker.txt" - }, - new - { - Id = 1216L, - FilterListId = 1184L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Prebake-Obtrusive.txt" - }, - new - { - Id = 1217L, - FilterListId = 1185L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Prigent-Malware.txt" - }, - new - { - Id = 1218L, - FilterListId = 1187L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Quidsup-Malicious.txt" - }, - new - { - Id = 1219L, - FilterListId = 1189L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ROad-Block.txt" - }, - new - { - Id = 1220L, - FilterListId = 1190L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/RU-AdList.txt" - }, - new - { - Id = 1221L, - FilterListId = 1191L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/RUAdListBitBlock.txt" - }, - new - { - Id = 1222L, - FilterListId = 1192L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/RUAdListCounters.txt" - }, - new - { - Id = 1223L, - FilterListId = 1193L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Ransomware-Domain-Blocklist.txt" - }, - new - { - Id = 1224L, - FilterListId = 1194L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/SVN-Slovenian.txt" - }, - new - { - Id = 1225L, - FilterListId = 1196L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/SatterlysAdblockPlusFilters.txt" - }, - new - { - Id = 1226L, - FilterListId = 1197L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Schacks-Adblock-Plus-Liste.txt" - }, - new - { - Id = 1227L, - FilterListId = 1199L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Spam-Assassin-Bill-Stearns.txt" - }, - new - { - Id = 1228L, - FilterListId = 1202L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Fakenews.txt" - }, - new - { - Id = 1229L, - FilterListId = 1203L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Gambling.txt" - }, - new - { - Id = 1230L, - FilterListId = 1204L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Hosts.txt" - }, - new - { - Id = 1231L, - FilterListId = 1205L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Porn.txt" - }, - new - { - Id = 1232L, - FilterListId = 1206L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Risky-Hosts.txt" - }, - new - { - Id = 1233L, - FilterListId = 1207L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Trackers.txt" - }, - new - { - Id = 1234L, - FilterListId = 1209L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Unified-Hosts.txt" - }, - new - { - Id = 1235L, - FilterListId = 1210L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/TakoYachty-Gift-Card-Killer.txt" - }, - new - { - Id = 1236L, - FilterListId = 1211L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/TeslaCrypt-Ransomware-C2-Domain-Blocklist.txt" - }, - new - { - Id = 1237L, - FilterListId = 1212L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/TeslaCrypt-Ransomware-Payment-Sites-Domain-Blocklist.txt" - }, - new - { - Id = 1238L, - FilterListId = 1213L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/The-Hosts-File-Project.txt" - }, - new - { - Id = 1239L, - FilterListId = 1214L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Thoughtconverge-AdBlock-Filters.txt" - }, - new - { - Id = 1240L, - FilterListId = 1215L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Tofu-Filter.txt" - }, - new - { - Id = 1241L, - FilterListId = 1216L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/TorrentLocker-Ransomware-C2-Domain-Blocklist.txt" - }, - new - { - Id = 1242L, - FilterListId = 1217L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/TorrentLocker-Ransomware-Payment-Sites-Domain-Blocklist.txt" - }, - new - { - Id = 1243L, - FilterListId = 1218L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Turk-adlist.txt" - }, - new - { - Id = 1244L, - FilterListId = 1220L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Wiltteri.txt" - }, - new - { - Id = 1245L, - FilterListId = 1221L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/WindowsSpyBlocker7.txt" - }, - new - { - Id = 1246L, - FilterListId = 1222L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/WindowsSpyBlocker81.txt" - }, - new - { - Id = 1247L, - FilterListId = 1223L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Yhonay-AntiPopAds.txt" - }, - new - { - Id = 1248L, - FilterListId = 1224L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/YousList.txt" - }, - new - { - Id = 1249L, - FilterListId = 1225L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ZeuS-Domain-Blocklist-Bad-Domains.txt" - }, - new - { - Id = 1250L, - FilterListId = 1226L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/uAssetsFilters.txt" - }, - new - { - Id = 1251L, - FilterListId = 1227L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/uAssetsPrivacy.txt" - }, - new - { - Id = 1252L, - FilterListId = 1228L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/uAssetsUnbreak.txt" - }, - new - { - Id = 1253L, - FilterListId = 1229L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/uBOPersonalFilters.txt" - }, - new - { - Id = 1254L, - FilterListId = 1230L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/uBlockFiltersPlus.txt" - }, - new - { - Id = 1264L, - FilterListId = 1243L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CombinedBlacklists/CombinedBlackLists.txt" - }, - new - { - Id = 1265L, - FilterListId = 1244L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CombinedBlacklists/DeathbybandaidList.txt" - }, - new - { - Id = 1266L, - FilterListId = 1245L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CombinedWhitelists/CombinedWhiteLists.txt" - }, - new - { - Id = 1267L, - FilterListId = 1247L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-'Battle Royale' List.txt" - }, - new - { - Id = 1268L, - FilterListId = 1247L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-'Battle Royale' List.txt" - }, - new - { - Id = 1269L, - FilterListId = 1278L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://better.fyi/blockerList.txt" - }, - new - { - Id = 1270L, - FilterListId = 1279L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/olegwukr/polish-privacy-filters/master/adblock.txt" - }, - new - { - Id = 1271L, - FilterListId = 1280L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/olegwukr/polish-privacy-filters/master/anti-adblock.txt" - }, - new - { - Id = 1272L, - FilterListId = 1281L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/olegwukr/polish-privacy-filters/master/anti-adblock-suplement.txt" - }, - new - { - Id = 1273L, - FilterListId = 1282L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/koenrh/little-snitch-rules/master/apps.lsrules" - }, - new - { - Id = 1274L, - FilterListId = 1283L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AnXh3L0/blocklist/master/albanian-easylist-addition/Albania.txt" - }, - new - { - Id = 1275L, - FilterListId = 1284L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/finnish-easylist-addition/finnish-easylist-addition/master/annoyances/Finland_annoyances.txt" - }, - new - { - Id = 1276L, - FilterListId = 1285L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/theel0ja/uMatrix-rules/master/my-umatrix-rules.txt" - }, - new - { - Id = 1277L, - FilterListId = 1286L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/PoorPocketsMcNewHold/steamscamsites/master/steamscamsite.txt" - }, - new - { - Id = 1278L, - FilterListId = 1288L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/NanoAdblockerLab/NanoContrib/master/dist/placeholder-buster.txt" - }, - new - { - Id = 1279L, - FilterListId = 1288L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/NanoAdblockerLab/NanoContrib/master/dist/placeholder-buster.txt" - }, - new - { - Id = 1280L, - FilterListId = 1289L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/KnowYourMemePureBrowsingExperience.txt" - }, - new - { - Id = 1281L, - FilterListId = 1289L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/KnowYourMemePureBrowsingExperience.txt" - }, - new - { - Id = 1282L, - FilterListId = 1290L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Dandelion Sprout's Anti-Malware List.txt" - }, - new - { - Id = 1283L, - FilterListId = 1290L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Dandelion Sprout's Anti-Malware List.txt" - }, - new - { - Id = 1284L, - FilterListId = 1291L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/Twitter De-Politificator.txt" - }, - new - { - Id = 1285L, - FilterListId = 1291L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/Twitter De-Politificator.txt" - }, - new - { - Id = 1286L, - FilterListId = 1292L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Android Scum Class — Fake notification counters.txt" - }, - new - { - Id = 1287L, - FilterListId = 1292L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Android Scum Class — Fake notification counters.txt" - }, - new - { - Id = 1288L, - FilterListId = 1293L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Adblock list templates/Adblock list template -Hosts and uBlock Origin-.txt" - }, - new - { - Id = 1289L, - FilterListId = 1293L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Adblock list templates/Adblock list template -Hosts and uBlock Origin-.txt" - }, - new - { - Id = 1290L, - FilterListId = 1294L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://crapblock.theel0ja.info/even-cleaner-news-sites.txt" - }, - new - { - Id = 1291L, - FilterListId = 1295L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/intr0/iVOID.GitLab.io/raw/master/iVOID.hosts" - }, - new - { - Id = 1292L, - FilterListId = 1295L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://notabug.org/-intr0/iVOID/raw/master/iVOID.hosts" - }, - new - { - Id = 1293L, - FilterListId = 1295L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "http://w2caclgy62idhzyut23ucimqw5tsmfbl4b2iyjzpvngatast2fiqxbyd.onion/ivoid/iVOID.hosts" - }, - new - { - Id = 1294L, - FilterListId = 1296L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/intr0/DomainVoider/raw/master/DomainVoider" - }, - new - { - Id = 1295L, - FilterListId = 1296L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://notabug.org/-intr0/DomainVoider/raw/master/DomainVoider" - }, - new - { - Id = 1296L, - FilterListId = 1296L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "http://w2caclgy62idhzyut23ucimqw5tsmfbl4b2iyjzpvngatast2fiqxbyd.onion/domainvoider/DomainVoider.txt" - }, - new - { - Id = 1297L, - FilterListId = 1297L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/filters/css_style_filters.txt" - }, - new - { - Id = 1298L, - FilterListId = 1298L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hosts.nfz.moe/full/hosts" - }, - new - { - Id = 1299L, - FilterListId = 1299L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hosts.nfz.moe/basic/hosts" - }, - new - { - Id = 1300L, - FilterListId = 1299L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/neoFelhz/neohosts/gh-pages/basic/hosts" - }, - new - { - Id = 1301L, - FilterListId = 1300L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.stopforumspam.com/downloads/toxic_domains_whole.txt" - }, - new - { - Id = 1302L, - FilterListId = 1301L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/hosts/test/hosts_facebook0.txt" - }, - new - { - Id = 1303L, - FilterListId = 1301L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/hosts/test/hosts_facebook0.txt" - }, - new - { - Id = 1304L, - FilterListId = 1302L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/hosts/hosts_leftover.txt" - }, - new - { - Id = 1305L, - FilterListId = 1302L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/hosts/hosts_leftover.txt" - }, - new - { - Id = 1306L, - FilterListId = 1303L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/other/MiscAnnoyance.txt" - }, - new - { - Id = 1307L, - FilterListId = 1303L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/other/MiscAnnoyance.txt" - }, - new - { - Id = 1308L, - FilterListId = 1304L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/ubo-css/iHateCircles.txt" - }, - new - { - Id = 1309L, - FilterListId = 1304L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/ubo-css/iHateCircles.txt" - }, - new - { - Id = 1310L, - FilterListId = 1305L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/adv/domains" - }, - new - { - Id = 1311L, - FilterListId = 1306L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/adv/urls" - }, - new - { - Id = 1312L, - FilterListId = 1307L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/aggressive/domains" - }, - new - { - Id = 1313L, - FilterListId = 1308L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/aggressive/urls" - }, - new - { - Id = 1314L, - FilterListId = 1309L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/alcohol/domains" - }, - new - { - Id = 1315L, - FilterListId = 1310L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/alcohol/urls" - }, - new - { - Id = 1316L, - FilterListId = 1311L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/anonvpn/domains" - }, - new - { - Id = 1317L, - FilterListId = 1312L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/anonvpn/urls" - }, - new - { - Id = 1318L, - FilterListId = 1313L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/bikes/domains" - }, - new - { - Id = 1319L, - FilterListId = 1314L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/bikes/urls" - }, - new - { - Id = 1320L, - FilterListId = 1315L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/boats/domains" - }, - new - { - Id = 1321L, - FilterListId = 1316L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/boats/urls" - }, - new - { - Id = 1322L, - FilterListId = 1317L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/cars/domains" - }, - new - { - Id = 1323L, - FilterListId = 1318L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/cars/urls" - }, - new - { - Id = 1324L, - FilterListId = 1319L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/planes/domains" - }, - new - { - Id = 1325L, - FilterListId = 1320L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/planes/urls" - }, - new - { - Id = 1326L, - FilterListId = 1321L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/chat/domains" - }, - new - { - Id = 1327L, - FilterListId = 1322L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/chat/urls" - }, - new - { - Id = 1328L, - FilterListId = 1323L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/costtraps/domains" - }, - new - { - Id = 1329L, - FilterListId = 1324L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/costtraps/urls" - }, - new - { - Id = 1330L, - FilterListId = 1325L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/dating/domains" - }, - new - { - Id = 1331L, - FilterListId = 1326L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/dating/urls" - }, - new - { - Id = 1332L, - FilterListId = 1327L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/downloads/domains" - }, - new - { - Id = 1333L, - FilterListId = 1328L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/downloads/urls" - }, - new - { - Id = 1334L, - FilterListId = 1329L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/drugs/domains" - }, - new - { - Id = 1335L, - FilterListId = 1330L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/drugs/urls" - }, - new - { - Id = 1336L, - FilterListId = 1331L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/dynamic/domains" - }, - new - { - Id = 1337L, - FilterListId = 1332L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/dynamic/urls" - }, - new - { - Id = 1338L, - FilterListId = 1333L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/education/schools/domains" - }, - new - { - Id = 1339L, - FilterListId = 1334L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/education/schools/urls" - }, - new - { - Id = 1340L, - FilterListId = 1335L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/banking/domains" - }, - new - { - Id = 1341L, - FilterListId = 1336L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/banking/urls" - }, - new - { - Id = 1342L, - FilterListId = 1337L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/insurance/domains" - }, - new - { - Id = 1343L, - FilterListId = 1338L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/insurance/urls" - }, - new - { - Id = 1344L, - FilterListId = 1339L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/moneylending/domains" - }, - new - { - Id = 1345L, - FilterListId = 1340L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/moneylending/urls" - }, - new - { - Id = 1346L, - FilterListId = 1341L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/other/domains" - }, - new - { - Id = 1347L, - FilterListId = 1342L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/other/urls" - }, - new - { - Id = 1348L, - FilterListId = 1343L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/realestate/domains" - }, - new - { - Id = 1349L, - FilterListId = 1344L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/realestate/urls" - }, - new - { - Id = 1350L, - FilterListId = 1345L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/trading/domains" - }, - new - { - Id = 1351L, - FilterListId = 1346L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/trading/urls" - }, - new - { - Id = 1352L, - FilterListId = 1347L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/fortunetelling/domains" - }, - new - { - Id = 1353L, - FilterListId = 1348L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/fortunetelling/urls" - }, - new - { - Id = 1354L, - FilterListId = 1349L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/forum/domains" - }, - new - { - Id = 1355L, - FilterListId = 1350L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/forum/urls" - }, - new - { - Id = 1356L, - FilterListId = 1351L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/gamble/domains" - }, - new - { - Id = 1357L, - FilterListId = 1352L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/gamble/urls" - }, - new - { - Id = 1358L, - FilterListId = 1353L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/government/domains" - }, - new - { - Id = 1359L, - FilterListId = 1354L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/government/urls" - }, - new - { - Id = 1360L, - FilterListId = 1355L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hacking/domains" - }, - new - { - Id = 1361L, - FilterListId = 1356L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hacking/urls" - }, - new - { - Id = 1362L, - FilterListId = 1357L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/cooking/domains" - }, - new - { - Id = 1363L, - FilterListId = 1358L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/cooking/urls" - }, - new - { - Id = 1364L, - FilterListId = 1359L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/games-misc/domains" - }, - new - { - Id = 1365L, - FilterListId = 1360L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/games-misc/urls" - }, - new - { - Id = 1366L, - FilterListId = 1361L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/games-online/domains" - }, - new - { - Id = 1367L, - FilterListId = 1362L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/games-online/urls" - }, - new - { - Id = 1368L, - FilterListId = 1363L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/gardening/domains" - }, - new - { - Id = 1369L, - FilterListId = 1364L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/gardening/urls" - }, - new - { - Id = 1370L, - FilterListId = 1365L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/pets/domains" - }, - new - { - Id = 1371L, - FilterListId = 1366L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/pets/urls" - }, - new - { - Id = 1372L, - FilterListId = 1367L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/homestyle/domains" - }, - new - { - Id = 1373L, - FilterListId = 1368L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/homestyle/urls" - }, - new - { - Id = 1374L, - FilterListId = 1369L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hospitals/domains" - }, - new - { - Id = 1375L, - FilterListId = 1370L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hospitals/urls" - }, - new - { - Id = 1376L, - FilterListId = 1371L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/imagehosting/domains" - }, - new - { - Id = 1377L, - FilterListId = 1372L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/imagehosting/urls" - }, - new - { - Id = 1378L, - FilterListId = 1373L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/isp/domains" - }, - new - { - Id = 1379L, - FilterListId = 1374L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/isp/urls" - }, - new - { - Id = 1380L, - FilterListId = 1375L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/jobsearch/domains" - }, - new - { - Id = 1381L, - FilterListId = 1376L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/jobsearch/urls" - }, - new - { - Id = 1382L, - FilterListId = 1377L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/library/domains" - }, - new - { - Id = 1383L, - FilterListId = 1378L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/library/urls" - }, - new - { - Id = 1384L, - FilterListId = 1379L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/military/domains" - }, - new - { - Id = 1385L, - FilterListId = 1380L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/military/urls" - }, - new - { - Id = 1386L, - FilterListId = 1381L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/models/domains" - }, - new - { - Id = 1387L, - FilterListId = 1382L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/models/urls" - }, - new - { - Id = 1388L, - FilterListId = 1383L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/movies/domains" - }, - new - { - Id = 1389L, - FilterListId = 1384L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/movies/urls" - }, - new - { - Id = 1390L, - FilterListId = 1385L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/music/domains" - }, - new - { - Id = 1391L, - FilterListId = 1386L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/music/urls" - }, - new - { - Id = 1392L, - FilterListId = 1387L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/news/domains" - }, - new - { - Id = 1393L, - FilterListId = 1388L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/news/urls" - }, - new - { - Id = 1394L, - FilterListId = 1389L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/podcasts/domains" - }, - new - { - Id = 1395L, - FilterListId = 1390L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/podcasts/urls" - }, - new - { - Id = 1396L, - FilterListId = 1391L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/politics/domains" - }, - new - { - Id = 1397L, - FilterListId = 1392L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/politics/urls" - }, - new - { - Id = 1398L, - FilterListId = 1393L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/porn/domains" - }, - new - { - Id = 1399L, - FilterListId = 1394L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/porn/urls" - }, - new - { - Id = 1400L, - FilterListId = 1395L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/radiotv/domains" - }, - new - { - Id = 1401L, - FilterListId = 1396L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/radiotv/urls" - }, - new - { - Id = 1402L, - FilterListId = 1397L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/humor/domains" - }, - new - { - Id = 1403L, - FilterListId = 1398L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/humor/urls" - }, - new - { - Id = 1404L, - FilterListId = 1399L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/martialarts/domains" - }, - new - { - Id = 1405L, - FilterListId = 1400L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/martialarts/urls" - }, - new - { - Id = 1406L, - FilterListId = 1401L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/restaurants/domains" - }, - new - { - Id = 1407L, - FilterListId = 1402L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/restaurants/urls" - }, - new - { - Id = 1408L, - FilterListId = 1403L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/sports/domains" - }, - new - { - Id = 1409L, - FilterListId = 1404L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/sports/urls" - }, - new - { - Id = 1410L, - FilterListId = 1405L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/travel/domains" - }, - new - { - Id = 1411L, - FilterListId = 1406L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/travel/urls" - }, - new - { - Id = 1412L, - FilterListId = 1407L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/wellness/domains" - }, - new - { - Id = 1413L, - FilterListId = 1408L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/wellness/urls" - }, - new - { - Id = 1414L, - FilterListId = 1409L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/redirector/domains" - }, - new - { - Id = 1415L, - FilterListId = 1410L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/redirector/urls" - }, - new - { - Id = 1416L, - FilterListId = 1411L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/religion/domains" - }, - new - { - Id = 1417L, - FilterListId = 1412L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/religion/urls" - }, - new - { - Id = 1418L, - FilterListId = 1413L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/remotecontrol/domains" - }, - new - { - Id = 1419L, - FilterListId = 1414L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/remotecontrol/urls" - }, - new - { - Id = 1420L, - FilterListId = 1415L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/ringtones/domains" - }, - new - { - Id = 1421L, - FilterListId = 1416L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/ringtones/urls" - }, - new - { - Id = 1422L, - FilterListId = 1417L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/science/astronomy/domains" - }, - new - { - Id = 1423L, - FilterListId = 1418L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/science/astronomy/urls" - }, - new - { - Id = 1424L, - FilterListId = 1419L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/science/chemistry/domains" - }, - new - { - Id = 1425L, - FilterListId = 1420L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/science/chemistry/urls" - }, - new - { - Id = 1426L, - FilterListId = 1421L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/searchengines/domains" - }, - new - { - Id = 1427L, - FilterListId = 1422L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/searchengines/urls" - }, - new - { - Id = 1428L, - FilterListId = 1423L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/sex/education/domains" - }, - new - { - Id = 1429L, - FilterListId = 1424L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/sex/education/urls" - }, - new - { - Id = 1430L, - FilterListId = 1425L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/sex/lingerie/domains" - }, - new - { - Id = 1431L, - FilterListId = 1426L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/sex/lingerie/urls" - }, - new - { - Id = 1432L, - FilterListId = 1427L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/shopping/domains" - }, - new - { - Id = 1433L, - FilterListId = 1428L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/shopping/urls" - }, - new - { - Id = 1434L, - FilterListId = 1429L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/socialnet/domains" - }, - new - { - Id = 1435L, - FilterListId = 1430L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/socialnet/urls" - }, - new - { - Id = 1436L, - FilterListId = 1431L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/spyware/domains" - }, - new - { - Id = 1437L, - FilterListId = 1432L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/spyware/urls" - }, - new - { - Id = 1438L, - FilterListId = 1433L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/tracker/domains" - }, - new - { - Id = 1439L, - FilterListId = 1434L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/tracker/urls" - }, - new - { - Id = 1440L, - FilterListId = 1435L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/updatesites/domains" - }, - new - { - Id = 1441L, - FilterListId = 1436L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/updatesites/urls" - }, - new - { - Id = 1442L, - FilterListId = 1437L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/urlshortener/domains" - }, - new - { - Id = 1443L, - FilterListId = 1438L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/urlshortener/urls" - }, - new - { - Id = 1444L, - FilterListId = 1439L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/violence/domains" - }, - new - { - Id = 1445L, - FilterListId = 1440L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/violence/urls" - }, - new - { - Id = 1446L, - FilterListId = 1441L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/warez/domains" - }, - new - { - Id = 1447L, - FilterListId = 1442L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/warez/urls" - }, - new - { - Id = 1448L, - FilterListId = 1443L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/weapons/domains" - }, - new - { - Id = 1449L, - FilterListId = 1444L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/weapons/urls" - }, - new - { - Id = 1450L, - FilterListId = 1445L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/webmail/domains" - }, - new - { - Id = 1451L, - FilterListId = 1446L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/webmail/urls" - }, - new - { - Id = 1452L, - FilterListId = 1447L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/webphone/domains" - }, - new - { - Id = 1453L, - FilterListId = 1448L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/webphone/urls" - }, - new - { - Id = 1454L, - FilterListId = 1449L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/webradio/domains" - }, - new - { - Id = 1455L, - FilterListId = 1450L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/webradio/urls" - }, - new - { - Id = 1456L, - FilterListId = 1451L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/webtv/domains" - }, - new - { - Id = 1457L, - FilterListId = 1452L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/webtv/urls" - }, - new - { - Id = 1458L, - FilterListId = 1454L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AnnoyingBannersAndOverlays.txt" - }, - new - { - Id = 1459L, - FilterListId = 1454L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AnnoyingBannersAndOverlays.txt" - }, - new - { - Id = 1460L, - FilterListId = 1455L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AnnoyancesList" - }, - new - { - Id = 1461L, - FilterListId = 1455L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AnnoyancesList" - }, - new - { - Id = 1462L, - FilterListId = 1456L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/SocialShareList.txt" - }, - new - { - Id = 1463L, - FilterListId = 1456L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/SocialShareList.txt" - }, - new - { - Id = 1464L, - FilterListId = 1457L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/PoorPocketsMcNewHold/SteamScamSites/master/steamscamsitesashes" - }, - new - { - Id = 1465L, - FilterListId = 1458L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/anudeepND/blacklist/master/facebook.txt" - }, - new - { - Id = 1466L, - FilterListId = 1459L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/AntiAstrologyList.txt" - }, - new - { - Id = 1467L, - FilterListId = 1459L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/AntiAstrologyList.txt" - }, - new - { - Id = 1468L, - FilterListId = 1460L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/ListForOldPeople.txt" - }, - new - { - Id = 1469L, - FilterListId = 1460L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/ListForOldPeople.txt" - }, - new - { - Id = 1470L, - FilterListId = 1461L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAmazonListForTwitch.txt" - }, - new - { - Id = 1471L, - FilterListId = 1461L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAmazonListForTwitch.txt" - }, - new - { - Id = 1472L, - FilterListId = 1463L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/CitizenXVIL/Hosts/master/Optimized_hosts_list.txt" - }, - new - { - Id = 1473L, - FilterListId = 1464L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/CitizenXVIL/Hosts/master/mobile domains.txt" - }, - new - { - Id = 1474L, - FilterListId = 1465L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/CitizenXVIL/Hosts/master/Youtube hosts.txt" - }, - new - { - Id = 1475L, - FilterListId = 1466L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Zykreh/vortexhosts/master/vortex.txt" - }, - new - { - Id = 1476L, - FilterListId = 1467L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Zykreh/vortexhosts/master/vortex_energized.txt" - }, - new - { - Id = 1477L, - FilterListId = 1468L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Zykreh/vortexhosts/master/vortex_experimental.txt" - }, - new - { - Id = 1478L, - FilterListId = 1469L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Zykreh/vortexhosts/master/vortex_lite.txt" - }, - new - { - Id = 1479L, - FilterListId = 1470L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/xtreme/formats/hosts.txt" - }, - new - { - Id = 1480L, - FilterListId = 1471L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://getadhell.com/standard-package.txt" - }, - new - { - Id = 1481L, - FilterListId = 1473L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ookangzheng/blahdns/master/hosts/blacklist.txt" - }, - new - { - Id = 1482L, - FilterListId = 1473L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://oooo.b-cdn.net/blahdns/adsblock.txt" - }, - new - { - Id = 1483L, - FilterListId = 1474L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ookangzheng/blahdns/master/hosts/whitelist.txt" - }, - new - { - Id = 1486L, - FilterListId = 1477L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hblock.molinero.dev/hosts_rpz.txt" - }, - new - { - Id = 1487L, - FilterListId = 1478L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hblock.molinero.dev/hosts_unbound.conf" - }, - new - { - Id = 1488L, - FilterListId = 1479L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hblock.molinero.dev/hosts_dnsmasq.conf" - }, - new - { - Id = 1489L, - FilterListId = 1480L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://oooo.b-cdn.net/blahdns/rpz.txt" - }, - new - { - Id = 1492L, - FilterListId = 1484L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/torrent.txt" - }, - new - { - Id = 1493L, - FilterListId = 1485L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ngosang/trackerslist/master/trackers_all.txt" - }, - new - { - Id = 1494L, - FilterListId = 1486L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ngosang/trackerslist/master/blacklist.txt" - }, - new - { - Id = 1495L, - FilterListId = 1487L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/quedlin/blacklist/master/domains" - }, - new - { - Id = 1496L, - FilterListId = 1490L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mitchellkrogza/Phishing.Database/master/phishing-domains-ACTIVE.txt" - }, - new - { - Id = 1497L, - FilterListId = 1492L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mitchellkrogza/Ultimate.Hosts.Blacklist/master/hosts.deny/hosts0.deny" - }, - new - { - Id = 1498L, - FilterListId = 1493L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/greatis/Anti-WebMiner/master/blacklist.txt" - }, - new - { - Id = 1499L, - FilterListId = 1494L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.carl.net/spam/access.txt" - }, - new - { - Id = 1500L, - FilterListId = 1495L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tankmohit/UnifiedHosts/master/hosts.all" - }, - new - { - Id = 1501L, - FilterListId = 1496L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://www.taz.net.au/Mail/SpamDomains" - }, - new - { - Id = 1502L, - FilterListId = 1497L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tankmohit/UnifiedHosts/master/whitelist" - }, - new - { - Id = 1503L, - FilterListId = 1498L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mitchellkrogza/Stop.Google.Analytics.Ghost.Spam.HOWTO/master/output/domains/ACTIVE/list" - }, - new - { - Id = 1504L, - FilterListId = 1499L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mitchellkrogza/Stop.Google.Analytics.Ghost.Spam.HOWTO/master/output/domains/INACTIVE/list" - }, - new - { - Id = 1505L, - FilterListId = 1500L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://cybercrime-tracker.net/all.php" - }, - new - { - Id = 1506L, - FilterListId = 1501L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/joelotz/URL_Blacklist/master/blacklist.csv" - }, - new - { - Id = 1507L, - FilterListId = 1502L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/oznu/dns-zone-blacklist/master/bind/zones.blacklist" - }, - new - { - Id = 1508L, - FilterListId = 1503L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/oznu/dns-zone-blacklist/master/dnsmasq/dnsmasq.blacklist" - }, - new - { - Id = 1509L, - FilterListId = 1504L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/oznu/dns-zone-blacklist/master/unbound/unbound.blacklist" - }, - new - { - Id = 1510L, - FilterListId = 1505L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ReddestDream/reddestdream.github.io/master/Projects/MinimalHostsCB/etc/MinimalHostsBlocker/minimalhosts" - }, - new - { - Id = 1511L, - FilterListId = 1506L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ReddestDream/reddestdream.github.io/master/Projects/MinimalHosts/etc/MinimalHostsBlocker/minimalhosts" - }, - new - { - Id = 1512L, - FilterListId = 1507L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://osint.bambenekconsulting.com/feeds/dga-feed.txt" - }, - new - { - Id = 1513L, - FilterListId = 1508L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://joewein.net/dl/bl/dom-bl-base.txt" - }, - new - { - Id = 1514L, - FilterListId = 1509L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://joewein.net/dl/bl/dom-bl.txt" - }, - new - { - Id = 1515L, - FilterListId = 1510L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://joewein.net/dl/bl/from-bl.txt" - }, - new - { - Id = 1516L, - FilterListId = 1511L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mitchellkrogza/Fail2Ban.WebExploits/master/input-source/exploits.list" - }, - new - { - Id = 1518L, - FilterListId = 1513L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/oleksiig/Squid-BlackList/master/denied_ext.conf" - }, - new - { - Id = 1519L, - FilterListId = 1517L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mitchellkrogza/Ultimate.Hosts.Blacklist/master/ips/ips0.list" - }, - new - { - Id = 1520L, - FilterListId = 1520L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hosts.ubuntu101.co.za/superhosts.deny" - }, - new - { - Id = 1521L, - FilterListId = 1523L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/newhosts-final.hosts" - }, - new - { - Id = 1522L, - FilterListId = 1524L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/combined-final-win.dat" - }, - new - { - Id = 1523L, - FilterListId = 1525L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/combined-final.p2p" - }, - new - { - Id = 1524L, - FilterListId = 1526L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=unbound&showintro=1&mimetype=plaintext" - }, - new - { - Id = 1525L, - FilterListId = 1527L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=bindconfig&showintro=1&mimetype=plaintext" - }, - new - { - Id = 1527L, - FilterListId = 1529L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/koreanlist.txt" - }, - new - { - Id = 1528L, - FilterListId = 1530L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bcye/Hello-Goodbye/master/filterlist.txt" - }, - new - { - Id = 1529L, - FilterListId = 1531L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kano1/I/master/adware_Scrip.txt" - }, - new - { - Id = 1530L, - FilterListId = 1532L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kano1/Kano/master/Spyware_Scrip.txt" - }, - new - { - Id = 1531L, - FilterListId = 1533L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/legacy.txt" - }, - new - { - Id = 1532L, - FilterListId = 1534L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hostsfile.mine.nu/hosts.ips" - }, - new - { - Id = 1533L, - FilterListId = 1535L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/WordPressTranslatorAssistant.txt" - }, - new - { - Id = 1534L, - FilterListId = 1535L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/WordPressTranslatorAssistant.txt" - }, - new - { - Id = 1535L, - FilterListId = 1536L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/RooneyMcNibNug/pihole-stuff/master/SNAFU.txt" - }, - new - { - Id = 1536L, - FilterListId = 1537L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easyprivacy.tpl" - }, - new - { - Id = 1537L, - FilterListId = 1538L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylist_noelemhide.tpl" - }, - new - { - Id = 1538L, - FilterListId = 1539L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easytest.tpl" - }, - new - { - Id = 1539L, - FilterListId = 1540L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistpolish.tpl" - }, - new - { - Id = 1540L, - FilterListId = 1541L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/exceptionrules.tpl" - }, - new - { - Id = 1542L, - FilterListId = 1543L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/koreanlist.tpl" - }, - new - { - Id = 1543L, - FilterListId = 1544L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistportuguese.tpl" - }, - new - { - Id = 1544L, - FilterListId = 1545L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/wiltteri/subscriptions/master/wiltteri.tpl" - }, - new - { - Id = 1545L, - FilterListId = 1546L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/wiltteri/subscriptions/master/wiltteri-reborn.tpl" - }, - new - { - Id = 1546L, - FilterListId = 1547L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/indianlist.tpl" - }, - new - { - Id = 1547L, - FilterListId = 1548L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easylistspanish+easylist.txt" - }, - new - { - Id = 1548L, - FilterListId = 1549L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/wiltteri+easylist.txt" - }, - new - { - Id = 1549L, - FilterListId = 1550L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/WebsiteStretcherVertical.txt" - }, - new - { - Id = 1550L, - FilterListId = 1550L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/WebsiteStretcherVertical.txt" - }, - new - { - Id = 1551L, - FilterListId = 1551L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/WebsiteStretcher4K.txt" - }, - new - { - Id = 1552L, - FilterListId = 1551L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/WebsiteStretcher4K.txt" - }, - new - { - Id = 1553L, - FilterListId = 1552L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/RedditTrashRemovalService.txt" - }, - new - { - Id = 1554L, - FilterListId = 1552L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/RedditTrashRemovalService.txt" - }, - new - { - Id = 1555L, - FilterListId = 1554L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/AntiPrayerTimesList.txt" - }, - new - { - Id = 1556L, - FilterListId = 1554L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/AntiPrayerTimesList.txt" - }, - new - { - Id = 1557L, - FilterListId = 1555L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bebasid/bebasid/master/releases/hosts" - }, - new - { - Id = 1558L, - FilterListId = 1556L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ColumWalsh/unsullied/master/unsullied.txt" - }, - new - { - Id = 1559L, - FilterListId = 1557L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DataMaster-2501/DataMaster-Android-AdBlock-Hosts/master/hosts" - }, - new - { - Id = 1560L, - FilterListId = 1558L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bogachenko/fuckfuckadblock/master/fuckfuckadblock.txt" - }, - new - { - Id = 1561L, - FilterListId = 1559L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/BreakingTheNews/BreakingTheNews.github.io/master/hosts" - }, - new - { - Id = 1562L, - FilterListId = 1560L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ruvelro/Halt-and-Block-Mining/master/HBmining.bat" - }, - new - { - Id = 1563L, - FilterListId = 1561L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jkrejcha/AdmiraList/master/AdmiraList.txt" - }, - new - { - Id = 1564L, - FilterListId = 1562L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mtxadmin/ublock/master/it" - }, - new - { - Id = 1566L, - FilterListId = 1564L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiCelebBirthList" - }, - new - { - Id = 1567L, - FilterListId = 1564L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiCelebBirthList" - }, - new - { - Id = 1570L, - FilterListId = 1566L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/biroloter/Mobile-Ad-Hosts/master/hosts" - }, - new - { - Id = 1571L, - FilterListId = 1567L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/101_optimized.txt" - }, - new - { - Id = 1572L, - FilterListId = 1568L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/2_optimized.txt" - }, - new - { - Id = 1573L, - FilterListId = 1569L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/16_optimized.txt" - }, - new - { - Id = 1574L, - FilterListId = 1570L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/6_optimized.txt" - }, - new - { - Id = 1575L, - FilterListId = 1573L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/qwIvan/privoxy-adfilter/master/adfilter.action" - }, - new - { - Id = 1576L, - FilterListId = 1574L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mtxadmin/ublock/master/hosts.txt" - }, - new - { - Id = 1577L, - FilterListId = 1575L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/TwitchEvenMorePureViewingExperience.txt" - }, - new - { - Id = 1578L, - FilterListId = 1575L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/TwitchEvenMorePureViewingExperience.txt" - }, - new - { - Id = 1579L, - FilterListId = 1576L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-'Custom cursors' List.txt" - }, - new - { - Id = 1580L, - FilterListId = 1576L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-'Custom cursors' List.txt" - }, - new - { - Id = 1581L, - FilterListId = 1577L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/dhowe/uAssets/master/filters/adnauseam.txt" - }, - new - { - Id = 1582L, - FilterListId = 1578L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/fabianmoronzirfas/block-facebook/master/block-facebook.lsrules" - }, - new - { - Id = 1583L, - FilterListId = 1579L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/ExtremelyCondensedList.txt" - }, - new - { - Id = 1584L, - FilterListId = 1579L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/ExtremelyCondensedList.txt" - }, - new - { - Id = 1585L, - FilterListId = 1581L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersAdGuard.txt" - }, - new - { - Id = 1586L, - FilterListId = 1581L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersAdGuard.txt" - }, - new - { - Id = 1587L, - FilterListId = 1582L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersABP.txt" - }, - new - { - Id = 1588L, - FilterListId = 1582L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersABP.txt" - }, - new - { - Id = 1589L, - FilterListId = 1583L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersPrivoxy.action" - }, - new - { - Id = 1590L, - FilterListId = 1583L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersPrivoxy.action" - }, - new - { - Id = 1591L, - FilterListId = 1584L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersDnsmasq.conf" - }, - new - { - Id = 1592L, - FilterListId = 1584L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersDnsmasq.conf" - }, - new - { - Id = 1593L, - FilterListId = 1585L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersHostsDeny.deny" - }, - new - { - Id = 1594L, - FilterListId = 1585L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersHostsDeny.deny" - }, - new - { - Id = 1595L, - FilterListId = 1586L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareABP.txt" - }, - new - { - Id = 1596L, - FilterListId = 1586L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwareABP.txt" - }, - new - { - Id = 1597L, - FilterListId = 1587L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareAdGuard.txt" - }, - new - { - Id = 1598L, - FilterListId = 1587L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwareAdGuard.txt" - }, - new - { - Id = 1599L, - FilterListId = 1588L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareTPL.tpl" - }, - new - { - Id = 1600L, - FilterListId = 1588L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwareTPL.tpl" - }, - new - { - Id = 1601L, - FilterListId = 1589L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwarePrivoxy.action" - }, - new - { - Id = 1602L, - FilterListId = 1589L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwarePrivoxy.action" - }, - new - { - Id = 1603L, - FilterListId = 1590L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareHosts.txt" - }, - new - { - Id = 1604L, - FilterListId = 1590L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwareHosts.txt" - }, - new - { - Id = 1605L, - FilterListId = 1591L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-'Google Hangouts' List.txt" - }, - new - { - Id = 1606L, - FilterListId = 1591L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-'Google Hangouts' List.txt" - }, - new - { - Id = 1607L, - FilterListId = 1592L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/RickrollLinkIdentifier.txt" - }, - new - { - Id = 1608L, - FilterListId = 1592L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/RickrollLinkIdentifier.txt" - }, - new - { - Id = 1609L, - FilterListId = 1593L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersPrivacy.txt" - }, - new - { - Id = 1610L, - FilterListId = 1593L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersPrivacy.txt" - }, - new - { - Id = 1611L, - FilterListId = 1594L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://theantisocialengineer.com/AntiSocial_Blacklist_Community_V1.txt" - }, - new - { - Id = 1612L, - FilterListId = 1595L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://phishing.army/download/phishing_army_blocklist.txt" - }, - new - { - Id = 1613L, - FilterListId = 1596L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://dehakkelaar.nl/lists/cryptojacking_campaign.list.txt" - }, - new - { - Id = 1614L, - FilterListId = 1597L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://dbl.oisd.nl/" - }, - new - { - Id = 1615L, - FilterListId = 1597L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dbl.txt" - }, - new - { - Id = 1616L, - FilterListId = 1597L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dbl.txt" - }, - new - { - Id = 1617L, - FilterListId = 1598L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hosts.oisd.nl/" - }, - new - { - Id = 1618L, - FilterListId = 1598L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/hosts.txt" - }, - new - { - Id = 1619L, - FilterListId = 1598L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/hosts.txt" - }, - new - { - Id = 1620L, - FilterListId = 1599L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://dblmobile.oisd.nl/" - }, - new - { - Id = 1621L, - FilterListId = 1599L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dbl_light.txt" - }, - new - { - Id = 1622L, - FilterListId = 1599L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dbl_light.txt" - }, - new - { - Id = 1623L, - FilterListId = 1600L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hostsmobile.oisd.nl/" - }, - new - { - Id = 1624L, - FilterListId = 1600L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/hosts_light.txt" - }, - new - { - Id = 1625L, - FilterListId = 1600L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/hosts_light.txt" - }, - new - { - Id = 1626L, - FilterListId = 1601L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/joeylane/hosts/master/hosts" - }, - new - { - Id = 1627L, - FilterListId = 1603L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-online.txt" - }, - new - { - Id = 1628L, - FilterListId = 1603L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-online.txt" - }, - new - { - Id = 1629L, - FilterListId = 1603L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-online.txt" - }, - new - { - Id = 1630L, - FilterListId = 1604L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/DailyMotionSimplicity.txt" - }, - new - { - Id = 1631L, - FilterListId = 1604L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/DailyMotionSimplicity.txt" - }, - new - { - Id = 1632L, - FilterListId = 1605L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiPPGList.txt" - }, - new - { - Id = 1633L, - FilterListId = 1605L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiPPGList.txt" - }, - new - { - Id = 1634L, - FilterListId = 1606L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-Skype List.txt" - }, - new - { - Id = 1635L, - FilterListId = 1606L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-Skype List.txt" - }, - new - { - Id = 1636L, - FilterListId = 1607L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Laicure/HostsY_hosts/master/shithosts" - }, - new - { - Id = 1637L, - FilterListId = 1608L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_base/sb_unified_hosts_base.lsrules" - }, - new - { - Id = 1638L, - FilterListId = 1609L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-gambling-porn-social/sb_unified_hosts_fakenews-gambling-porn-social.lsrules" - }, - new - { - Id = 1639L, - FilterListId = 1610L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-gambling-porn/sb_unified_hosts_fakenews-gambling-porn.lsrules" - }, - new - { - Id = 1640L, - FilterListId = 1611L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-gambling-social/sb_unified_hosts_fakenews-gambling-social.lsrules" - }, - new - { - Id = 1641L, - FilterListId = 1612L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-gambling/sb_unified_hosts_fakenews-gambling.lsrules" - }, - new - { - Id = 1642L, - FilterListId = 1613L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-porn-social/sb_unified_hosts_fakenews-porn-social.lsrules" - }, - new - { - Id = 1643L, - FilterListId = 1614L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-porn/sb_unified_hosts_fakenews-porn.lsrules" - }, - new - { - Id = 1644L, - FilterListId = 1615L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-social/sb_unified_hosts_fakenews-social.lsrules" - }, - new - { - Id = 1645L, - FilterListId = 1616L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews/sb_unified_hosts_fakenews.lsrules" - }, - new - { - Id = 1646L, - FilterListId = 1617L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_gambling-porn-social/sb_unified_hosts_gambling-porn-social.lsrules" - }, - new - { - Id = 1647L, - FilterListId = 1618L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_gambling-porn/sb_unified_hosts_gambling-porn.lsrules" - }, - new - { - Id = 1648L, - FilterListId = 1619L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_gambling-social/sb_unified_hosts_gambling-social.lsrules" - }, - new - { - Id = 1649L, - FilterListId = 1620L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_gambling/sb_unified_hosts_gambling.lsrules" - }, - new - { - Id = 1650L, - FilterListId = 1621L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_porn-social/sb_unified_hosts_porn-social.lsrules" - }, - new - { - Id = 1651L, - FilterListId = 1622L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_porn/sb_unified_hosts_porn.lsrules" - }, - new - { - Id = 1652L, - FilterListId = 1623L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_social/sb_unified_hosts_social.lsrules" - }, - new - { - Id = 1653L, - FilterListId = 1624L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jostyee/littlesnitch-rules/master/blocklist.lsrules" - }, - new - { - Id = 1654L, - FilterListId = 1625L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jostyee/littlesnitch-rules/master/blocklist-china.lsrules" - }, - new - { - Id = 1655L, - FilterListId = 1626L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bdougherty/little-snitch-rules/master/rules/browsers.lsrules" - }, - new - { - Id = 1656L, - FilterListId = 1627L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ldt116/little-snitch-vietnamese-ad-block-rules/master/vietnamese-ad-block.lsrules" - }, - new - { - Id = 1657L, - FilterListId = 1628L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/balupton/littlesnitch-filters/master/blocklist.lsrules" - }, - new - { - Id = 1658L, - FilterListId = 1629L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/balupton/littlesnitch-filters/master/whitelist-cdn.lsrules" - }, - new - { - Id = 1659L, - FilterListId = 1630L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jaydorsey/little_snitch_rules/master/jaydorsey.lsrules" - }, - new - { - Id = 1660L, - FilterListId = 1631L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/newyork10023/Little_Snitch/master/Block_All_All.lsrules" - }, - new - { - Id = 1661L, - FilterListId = 1632L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Kr00lIX/little-snitch-rules/master/Tracking.lsrules" - }, - new - { - Id = 1662L, - FilterListId = 1633L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Kr00lIX/little-snitch-rules/master/SyncLimit.lsrules" - }, - new - { - Id = 1663L, - FilterListId = 1634L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/jamujr/lsrg/raw/master/trackers-top-500.lsrules" - }, - new - { - Id = 1664L, - FilterListId = 1635L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/Dandelion Sprout's Anti-Religion List.txt" - }, - new - { - Id = 1665L, - FilterListId = 1635L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/Dandelion Sprout's Anti-Religion List.txt" - }, - new - { - Id = 1666L, - FilterListId = 1636L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/AntiPreacherList.txt" - }, - new - { - Id = 1667L, - FilterListId = 1636L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/AntiPreacherList.txt" - }, - new - { - Id = 1668L, - FilterListId = 1637L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAwfulCommentsList.txt" - }, - new - { - Id = 1669L, - FilterListId = 1637L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAwfulCommentsList.txt" - }, - new - { - Id = 1670L, - FilterListId = 1638L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Hakame-kun/uBlock-Filters-Indonesia/master/Windows Host/hosts" - }, - new - { - Id = 1671L, - FilterListId = 1639L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.github.developerdan.com/hosts/lists/amp-hosts-extended.txt" - }, - new - { - Id = 1672L, - FilterListId = 1640L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kristerkari/umatrix-recipes/master/README.md" - }, - new - { - Id = 1673L, - FilterListId = 1641L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/L2G/umatrix-rules/master/my-umatrix-rules.txt" - }, - new - { - Id = 1674L, - FilterListId = 1642L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/ruleset/recipes_th.txt" - }, - new - { - Id = 1675L, - FilterListId = 1642L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/ruleset/recipes_th.txt" - }, - new - { - Id = 1676L, - FilterListId = 1643L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/ruleset/recipes_custom.txt" - }, - new - { - Id = 1677L, - FilterListId = 1643L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/ruleset/recipes_custom.txt" - }, - new - { - Id = 1678L, - FilterListId = 1644L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/uMatrix/recipes" - }, - new - { - Id = 1679L, - FilterListId = 1645L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/Hosts/ads-tracking" - }, - new - { - Id = 1680L, - FilterListId = 1646L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/Hosts/ads-tracking-breaking" - }, - new - { - Id = 1681L, - FilterListId = 1647L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/Hosts/malware" - }, - new - { - Id = 1682L, - FilterListId = 1648L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/uBlock/list" - }, - new - { - Id = 1683L, - FilterListId = 1649L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/uBlock/facebook/groups-events" - }, - new - { - Id = 1684L, - FilterListId = 1650L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/uBlock/facebook/messenger" - }, - new - { - Id = 1685L, - FilterListId = 1651L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/themagicteeth/umatrix-recipes/master/recipes.txt" - }, - new - { - Id = 1686L, - FilterListId = 1652L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/dfkt/umatrix-rules/master/my-umatrix-rules.txt" - }, - new - { - Id = 1687L, - FilterListId = 1653L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/david1davidson/uMatrixMasterList/master/ruleset.txt" - }, - new - { - Id = 1688L, - FilterListId = 1656L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/invasy/umatrix-ruleset/master/ruleset.txt" - }, - new - { - Id = 1689L, - FilterListId = 1657L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/stephengeorgewest/my-umatrix-rules/master/my-umatrix-rules.txt" - }, - new - { - Id = 1690L, - FilterListId = 1658L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tranhoangcore/uMatrix-Rules/master/my-umatrix-rules.txt" - }, - new - { - Id = 1691L, - FilterListId = 1659L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/dadav/umatrix-rules/master/my-rules.txt" - }, - new - { - Id = 1692L, - FilterListId = 1660L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bzsparks/uMatrix/master/my-umatrix-rules.txt" - }, - new - { - Id = 1693L, - FilterListId = 1661L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Strappazzon/teleme7ry/master/rules.txt" - }, - new - { - Id = 1696L, - FilterListId = 1664L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://urlhaus.abuse.ch/downloads/text/" - }, - new - { - Id = 1697L, - FilterListId = 1665L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://urlhaus.abuse.ch/downloads/rpz/" - }, - new - { - Id = 1698L, - FilterListId = 1666L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/CryptoFR/crypto-scams-fr/master/misc.txt" - }, - new - { - Id = 1699L, - FilterListId = 1667L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/CryptoFR/crypto-scams-fr/master/websites.txt" - }, - new - { - Id = 1700L, - FilterListId = 1668L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/brasstax/RHEL-StreetPass-Relay/master/spoof-attwifi/dnsmasq.conf" - }, - new - { - Id = 1701L, - FilterListId = 1669L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/farrokhi/adblock-iran/master/additional-trackers.txt" - }, - new - { - Id = 1702L, - FilterListId = 1669L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/farrokhi/adblock-iran/master/additional-trackers.txt" - }, - new - { - Id = 1703L, - FilterListId = 1670L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/yous/YousList/master/hosts.txt" - }, - new - { - Id = 1704L, - FilterListId = 1671L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tcptomato/ROad-Block/master/road-block-filters.txt" - }, - new - { - Id = 1705L, - FilterListId = 1672L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tcptomato/ROad-Block/master/road-kill-filters.txt" - }, - new - { - Id = 1706L, - FilterListId = 1673L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://github.com/nickspaargaren/no-google/raw/master/pihole-google.txt" - }, - new - { - Id = 1707L, - FilterListId = 1673L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/pihole-google.txt" - }, - new - { - Id = 1708L, - FilterListId = 1674L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/google-domains" - }, - new - { - Id = 1709L, - FilterListId = 1674L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/google-domains" - }, - new - { - Id = 1710L, - FilterListId = 1675L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/analyticsparsed" - }, - new - { - Id = 1711L, - FilterListId = 1675L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/analyticsparsed" - }, - new - { - Id = 1712L, - FilterListId = 1676L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/analytics.txt" - }, - new - { - Id = 1713L, - FilterListId = 1676L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/analytics.txt" - }, - new - { - Id = 1714L, - FilterListId = 1677L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/androidparsed" - }, - new - { - Id = 1715L, - FilterListId = 1677L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/androidparsed" - }, - new - { - Id = 1716L, - FilterListId = 1678L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/android.txt" - }, - new - { - Id = 1717L, - FilterListId = 1678L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/android.txt" - }, - new - { - Id = 1718L, - FilterListId = 1679L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/dnsparsed" - }, - new - { - Id = 1719L, - FilterListId = 1679L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/dnsparsed" - }, - new - { - Id = 1720L, - FilterListId = 1680L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/dns.txt" - }, - new - { - Id = 1721L, - FilterListId = 1680L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/dns.txt" - }, - new - { - Id = 1722L, - FilterListId = 1681L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/domainsparsed" - }, - new - { - Id = 1723L, - FilterListId = 1681L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/domainsparsed" - }, - new - { - Id = 1724L, - FilterListId = 1682L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/domains.txt" - }, - new - { - Id = 1725L, - FilterListId = 1682L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/domains.txt" - }, - new - { - Id = 1726L, - FilterListId = 1683L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/doubleclickparsed" - }, - new - { - Id = 1727L, - FilterListId = 1683L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/doubleclickparsed" - }, - new - { - Id = 1728L, - FilterListId = 1684L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/doubleclick.txt" - }, - new - { - Id = 1729L, - FilterListId = 1684L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/doubleclick.txt" - }, - new - { - Id = 1730L, - FilterListId = 1685L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/firebaseparsed" - }, - new - { - Id = 1731L, - FilterListId = 1685L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/firebaseparsed" - }, - new - { - Id = 1732L, - FilterListId = 1686L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/firebase.txt" - }, - new - { - Id = 1733L, - FilterListId = 1686L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/firebase.txt" - }, - new - { - Id = 1734L, - FilterListId = 1687L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/fontsparsed" - }, - new - { - Id = 1735L, - FilterListId = 1687L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/fontsparsed" - }, - new - { - Id = 1736L, - FilterListId = 1688L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/fonts.txt" - }, - new - { - Id = 1737L, - FilterListId = 1688L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/fonts.txt" - }, - new - { - Id = 1738L, - FilterListId = 1689L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/generalparsed" - }, - new - { - Id = 1739L, - FilterListId = 1689L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/generalparsed" - }, - new - { - Id = 1740L, - FilterListId = 1690L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/general.txt" - }, - new - { - Id = 1741L, - FilterListId = 1690L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/general.txt" - }, - new - { - Id = 1742L, - FilterListId = 1691L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/mailparsed" - }, - new - { - Id = 1743L, - FilterListId = 1691L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/mailparsed" - }, - new - { - Id = 1744L, - FilterListId = 1692L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/mail.txt" - }, - new - { - Id = 1745L, - FilterListId = 1692L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/mail.txt" - }, - new - { - Id = 1746L, - FilterListId = 1693L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/productsparsed" - }, - new - { - Id = 1747L, - FilterListId = 1693L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/productsparsed" - }, - new - { - Id = 1748L, - FilterListId = 1694L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/products.txt" - }, - new - { - Id = 1749L, - FilterListId = 1694L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/products.txt" - }, - new - { - Id = 1750L, - FilterListId = 1695L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/proxiesparsed" - }, - new - { - Id = 1751L, - FilterListId = 1695L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/proxiesparsed" - }, - new - { - Id = 1752L, - FilterListId = 1696L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/proxies.txt" - }, - new - { - Id = 1753L, - FilterListId = 1696L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/proxies.txt" - }, - new - { - Id = 1754L, - FilterListId = 1697L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/shortlinksparsed" - }, - new - { - Id = 1755L, - FilterListId = 1697L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/shortlinksparsed" - }, - new - { - Id = 1756L, - FilterListId = 1698L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/shortlinks.txt" - }, - new - { - Id = 1757L, - FilterListId = 1698L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/shortlinks.txt" - }, - new - { - Id = 1758L, - FilterListId = 1699L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/youtubeparsed" - }, - new - { - Id = 1759L, - FilterListId = 1699L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/youtubeparsed" - }, - new - { - Id = 1760L, - FilterListId = 1700L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/youtube.txt" - }, - new - { - Id = 1761L, - FilterListId = 1700L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/youtube.txt" - }, - new - { - Id = 1762L, - FilterListId = 1701L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://asc.hk/adplus.txt" - }, - new - { - Id = 1763L, - FilterListId = 1702L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://npc.0am.jp/hosts.php?dl=1" - }, - new - { - Id = 1764L, - FilterListId = 1703L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://in0de.synology.me/pwn.txt" - }, - new - { - Id = 1765L, - FilterListId = 1704L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://in0de.synology.me/own.txt" - }, - new - { - Id = 1766L, - FilterListId = 1706L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.gameindustry.eu/files/hosts.txt" - }, - new - { - Id = 1767L, - FilterListId = 1707L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tiuxo/hosts/master/ads" - }, - new - { - Id = 1768L, - FilterListId = 1708L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tiuxo/hosts/master/porn" - }, - new - { - Id = 1769L, - FilterListId = 1709L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tiuxo/hosts/master/social" - }, - new - { - Id = 1770L, - FilterListId = 1710L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.botvrij.eu/data/ioclist.hostname.raw" - }, - new - { - Id = 1771L, - FilterListId = 1711L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://zonefiles.io/f/compromised/domains/live/" - }, - new - { - Id = 1772L, - FilterListId = 1712L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/abc45628/hosts/master/hosts" - }, - new - { - Id = 1773L, - FilterListId = 1713L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jdlingyu/ad-wars/master/hosts" - }, - new - { - Id = 1774L, - FilterListId = 1714L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/XionKzn/PiHole-Lists/master/PiHole/Archive/Quad9.txt" - }, - new - { - Id = 1775L, - FilterListId = 1715L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/XionKzn/PiHole-Lists/master/PiHole/Archive/Yahoo_Ad_Servers.txt" - }, - new - { - Id = 1776L, - FilterListId = 1716L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/XionKzn/PiHole-Lists/master/PiHole/PiHole_HOSTS_Spyware_HOSTS.txt" - }, - new - { - Id = 1777L, - FilterListId = 1717L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/XionKzn/PiHole-Lists/master/PiHole/Archive/Cerber_Ransomware.txt" - }, - new - { - Id = 1778L, - FilterListId = 1718L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/XionKzn/PiHole-Lists/master/PiHole/Blocklist_HOSTS.txt" - }, - new - { - Id = 1779L, - FilterListId = 1719L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/KurzGedanke/kurzBlock/master/kurzBlock.txt" - }, - new - { - Id = 1780L, - FilterListId = 1720L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/VernonStow/Filterlist/master/Filterlist.txt" - }, - new - { - Id = 1781L, - FilterListId = 1721L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jakejarvis/ios-trackers/master/blocklist.txt" - }, - new - { - Id = 1782L, - FilterListId = 1722L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/hell-sh/Evil-Domains/master/evil-domains.txt" - }, - new - { - Id = 1783L, - FilterListId = 1723L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/pirat28/IHateTracker/master/iHateTracker.txt" - }, - new - { - Id = 1784L, - FilterListId = 1724L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/parseword/nolovia/master/skel/hosts-nolovia.txt" - }, - new - { - Id = 1785L, - FilterListId = 1725L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/parseword/nolovia/master/skel/hosts-government-malware.txt" - }, - new - { - Id = 1787L, - FilterListId = 1727L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/gwillem/magento-malware-scanner/master/rules/burner-domains.txt" - }, - new - { - Id = 1788L, - FilterListId = 1728L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/soteria-nou/domain-list/master/ads.txt" - }, - new - { - Id = 1789L, - FilterListId = 1729L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/soteria-nou/domain-list/master/affiliate.txt" - }, - new - { - Id = 1790L, - FilterListId = 1730L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/soteria-nou/domain-list/master/analytics.txt" - }, - new - { - Id = 1791L, - FilterListId = 1731L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/soteria-nou/domain-list/master/enrichments.txt" - }, - new - { - Id = 1792L, - FilterListId = 1732L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/soteria-nou/domain-list/master/fake.txt" - }, - new - { - Id = 1793L, - FilterListId = 1733L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/soteria-nou/domain-list/master/widgets.txt" - }, - new - { - Id = 1794L, - FilterListId = 1734L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/Pro/hosts.txt" - }, - new - { - Id = 1795L, - FilterListId = 1735L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/Pro/domains.txt" - }, - new - { - Id = 1796L, - FilterListId = 1736L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AdGuard Home Compilation List/AdGuardHomeCompilationList.txt" - }, - new - { - Id = 1797L, - FilterListId = 1736L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AdGuard Home Compilation List/AdGuardHomeCompilationList.txt" - }, - new - { - Id = 1798L, - FilterListId = 1737L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Imperial Units Remover.txt" - }, - new - { - Id = 1799L, - FilterListId = 1737L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Imperial Units Remover.txt" - }, - new - { - Id = 1800L, - FilterListId = 1738L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareAdGuardHome.txt" - }, - new - { - Id = 1801L, - FilterListId = 1738L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwareAdGuardHome.txt" - }, - new - { - Id = 1802L, - FilterListId = 1739L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://warui.intaa.net/adhosts/local_zone.conf.txt" - }, - new - { - Id = 1803L, - FilterListId = 1740L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/social/formats/hosts.txt" - }, - new - { - Id = 1804L, - FilterListId = 1741L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/porn-lite/formats/hosts.txt" - }, - new - { - Id = 1805L, - FilterListId = 1742L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/regional/formats/hosts.txt" - }, - new - { - Id = 1806L, - FilterListId = 1743L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/spark/formats/domains.txt" - }, - new - { - Id = 1807L, - FilterListId = 1743L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://blokada.org/mirror/v5/energized/spark/hosts.txt" - }, - new - { - Id = 1808L, - FilterListId = 1744L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/bluGo/formats/domains.txt" - }, - new - { - Id = 1809L, - FilterListId = 1745L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/blu/formats/domains.txt" - }, - new - { - Id = 1810L, - FilterListId = 1745L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://blokada.org/mirror/v5/energized/blu/hosts.txt" - }, - new - { - Id = 1811L, - FilterListId = 1746L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/basic/formats/domains.txt" - }, - new - { - Id = 1812L, - FilterListId = 1746L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://blokada.org/mirror/v5/energized/basic/hosts.txt" - }, - new - { - Id = 1813L, - FilterListId = 1747L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/porn/formats/domains.txt" - }, - new - { - Id = 1814L, - FilterListId = 1748L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/ultimate/formats/domains.txt" - }, - new - { - Id = 1815L, - FilterListId = 1749L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/unified/formats/domains.txt" - }, - new - { - Id = 1816L, - FilterListId = 1750L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/xtreme/formats/domains.txt" - }, - new - { - Id = 1817L, - FilterListId = 1751L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/social/formats/domains.txt" - }, - new - { - Id = 1818L, - FilterListId = 1752L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/porn-lite/formats/domains.txt" - }, - new - { - Id = 1819L, - FilterListId = 1753L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/regional/formats/domains.txt" - }, - new - { - Id = 1820L, - FilterListId = 1753L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://blokada.org/mirror/v5/energized/regional/hosts.txt" - }, - new - { - Id = 1821L, - FilterListId = 1754L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/spark/formats/filter" - }, - new - { - Id = 1822L, - FilterListId = 1755L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/bluGo/formats/filter" - }, - new - { - Id = 1823L, - FilterListId = 1756L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/blu/formats/filter" - }, - new - { - Id = 1824L, - FilterListId = 1757L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/basic/formats/filter" - }, - new - { - Id = 1825L, - FilterListId = 1758L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/porn/formats/filter" - }, - new - { - Id = 1826L, - FilterListId = 1759L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/ultimate/formats/filter" - }, - new - { - Id = 1827L, - FilterListId = 1760L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/unified/formats/filter" - }, - new - { - Id = 1828L, - FilterListId = 1761L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/xtreme/formats/filter" - }, - new - { - Id = 1829L, - FilterListId = 1762L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/social/formats/filter" - }, - new - { - Id = 1830L, - FilterListId = 1763L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/porn-lite/formats/filter" - }, - new - { - Id = 1831L, - FilterListId = 1764L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/regional/formats/filter" - }, - new - { - Id = 1832L, - FilterListId = 1765L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/spark/formats/dnsmasq.conf" - }, - new - { - Id = 1833L, - FilterListId = 1766L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/bluGo/formats/dnsmasq.conf" - }, - new - { - Id = 1834L, - FilterListId = 1767L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/blu/formats/dnsmasq.conf" - }, - new - { - Id = 1835L, - FilterListId = 1768L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/basic/formats/dnsmasq.conf" - }, - new - { - Id = 1836L, - FilterListId = 1769L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/porn/formats/dnsmasq.conf" - }, - new - { - Id = 1837L, - FilterListId = 1770L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/ultimate/formats/dnsmasq.conf" - }, - new - { - Id = 1838L, - FilterListId = 1771L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/unified/formats/dnsmasq.conf" - }, - new - { - Id = 1839L, - FilterListId = 1772L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/xtreme/formats/dnsmasq.conf" - }, - new - { - Id = 1840L, - FilterListId = 1773L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/social/formats/dnsmasq.conf" - }, - new - { - Id = 1841L, - FilterListId = 1774L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/porn-lite/formats/dnsmasq.conf" - }, - new - { - Id = 1842L, - FilterListId = 1775L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/regional/formats/dnsmasq.conf" - }, - new - { - Id = 1843L, - FilterListId = 1776L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/spark/formats/unbound.conf" - }, - new - { - Id = 1844L, - FilterListId = 1777L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/bluGo/formats/unbound.conf" - }, - new - { - Id = 1845L, - FilterListId = 1778L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/blu/formats/unbound.conf" - }, - new - { - Id = 1846L, - FilterListId = 1779L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/basic/formats/unbound.conf" - }, - new - { - Id = 1847L, - FilterListId = 1780L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/porn/formats/unbound.conf" - }, - new - { - Id = 1848L, - FilterListId = 1781L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/ultimate/formats/unbound.conf" - }, - new - { - Id = 1849L, - FilterListId = 1782L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/unified/formats/unbound.conf" - }, - new - { - Id = 1850L, - FilterListId = 1783L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/xtreme/formats/unbound.conf" - }, - new - { - Id = 1851L, - FilterListId = 1784L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/social/formats/unbound.conf" - }, - new - { - Id = 1852L, - FilterListId = 1785L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/porn-lite/formats/unbound.conf" - }, - new - { - Id = 1853L, - FilterListId = 1786L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/regional/formats/unbound.conf" - }, - new - { - Id = 1854L, - FilterListId = 1787L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/spark/formats/rpz.txt" - }, - new - { - Id = 1855L, - FilterListId = 1788L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/bluGo/formats/rpz.txt" - }, - new - { - Id = 1856L, - FilterListId = 1789L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/blu/formats/rpz.txt" - }, - new - { - Id = 1857L, - FilterListId = 1790L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/basic/formats/rpz.txt" - }, - new - { - Id = 1858L, - FilterListId = 1791L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/porn/formats/rpz.txt" - }, - new - { - Id = 1859L, - FilterListId = 1792L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/ultimate/formats/rpz.txt" - }, - new - { - Id = 1860L, - FilterListId = 1793L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/unified/formats/rpz.txt" - }, - new - { - Id = 1861L, - FilterListId = 1794L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/xtreme/formats/rpz.txt" - }, - new - { - Id = 1862L, - FilterListId = 1795L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/social/formats/rpz.txt" - }, - new - { - Id = 1863L, - FilterListId = 1796L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/porn-lite/formats/rpz.txt" - }, - new - { - Id = 1864L, - FilterListId = 1797L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/regional/formats/rpz.txt" - }, - new - { - Id = 1865L, - FilterListId = 1798L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/ips/formats/list.txt" - }, - new - { - Id = 1866L, - FilterListId = 1799L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/arabic.txt" - }, - new - { - Id = 1867L, - FilterListId = 1800L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://cdn.rixcloud.io/Quantumult/Rules/Default.conf" - }, - new - { - Id = 1868L, - FilterListId = 1801L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/lhie1/Rules/master/Auto/REJECT.conf" - }, - new - { - Id = 1870L, - FilterListId = 1803L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/scomper/surge-list/master/reject.list" - }, - new - { - Id = 1873L, - FilterListId = 1806L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://lists.blocklist.de/lists/all.txt" - }, - new - { - Id = 1874L, - FilterListId = 1807L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://danger.rulez.sk/projects/bruteforceblocker/blist.php" - }, - new - { - Id = 1875L, - FilterListId = 1808L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://rules.emergingthreats.net/blockrules/compromised-ips.txt" - }, - new - { - Id = 1876L, - FilterListId = 1809L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://rules.emergingthreats.net/fwrules/emerging-Block-IPs.txt" - }, - new - { - Id = 1877L, - FilterListId = 1810L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://blocklist.greensnow.co/greensnow.txt" - }, - new - { - Id = 1878L, - FilterListId = 1811L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.binarydefense.com/banlist.txt" - }, - new - { - Id = 1879L, - FilterListId = 1813L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://cinsscore.com/list/ci-badguys.txt" - }, - new - { - Id = 1880L, - FilterListId = 1814L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/TabloidRemover.txt" - }, - new - { - Id = 1881L, - FilterListId = 1814L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/TabloidRemover.txt" - }, - new - { - Id = 1882L, - FilterListId = 1815L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiPCPriceHiderList.txt" - }, - new - { - Id = 1883L, - FilterListId = 1815L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiPCPriceHiderList.txt" - }, - new - { - Id = 1884L, - FilterListId = 1816L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/KADhosts/master/KADhole.txt" - }, - new - { - Id = 1885L, - FilterListId = 1817L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-pihole-filters/hostfile_regex.txt" - }, - new - { - Id = 1886L, - FilterListId = 1818L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mmotti/pihole-regex/master/regex.list" - }, - new - { - Id = 1887L, - FilterListId = 1819L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.github.developerdan.com/hosts/lists/facebook-extended.txt" - }, - new - { - Id = 1890L, - FilterListId = 1824L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://myip.ms/files/blacklist/general/latest_blacklist.txt" - }, - new - { - Id = 1891L, - FilterListId = 1825L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://iplists.firehol.org/files/hphosts_pha.ipset" - }, - new - { - Id = 1892L, - FilterListId = 1827L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://iplists.firehol.org/files/hphosts_fsa.ipset" - }, - new - { - Id = 1893L, - FilterListId = 1828L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://iplists.firehol.org/files/hphosts_grm.ipset" - }, - new - { - Id = 1894L, - FilterListId = 1829L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://iplists.firehol.org/files/hphosts_exp.ipset" - }, - new - { - Id = 1895L, - FilterListId = 1830L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://iplists.firehol.org/files/hphosts_emd.ipset" - }, - new - { - Id = 1896L, - FilterListId = 1831L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://iplists.firehol.org/files/hphosts_ats.ipset" - }, - new - { - Id = 1897L, - FilterListId = 1832L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiPepeList.txt" - }, - new - { - Id = 1898L, - FilterListId = 1832L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiPepeList.txt" - }, - new - { - Id = 1899L, - FilterListId = 1833L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/hawkeye116477/FilterListsDarkMode/master/DarkFilterLists.txt" - }, - new - { - Id = 1900L, - FilterListId = 1834L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/caffeinewriter/DontPushMe/master/filterlist.txt" - }, - new - { - Id = 1901L, - FilterListId = 1835L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Nebula-Mechanica/Anti-AutoTranslation-List/master/anti-autotranslation-list.txt" - }, - new - { - Id = 1902L, - FilterListId = 1835L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/Nebula-Mechanica/Anti-AutoTranslation-List/master/anti-autotranslation-list.txt" - }, - new - { - Id = 1903L, - FilterListId = 1835L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/Nebula-Mechanica/Anti-AutoTranslation-List/master/anti-autotranslation-list.txt" - }, - new - { - Id = 1904L, - FilterListId = 1836L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Hosts" - }, - new - { - Id = 1905L, - FilterListId = 1838L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Anti/Anti Social" - }, - new - { - Id = 1907L, - FilterListId = 1840L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersAdGuardHome.txt" - }, - new - { - Id = 1908L, - FilterListId = 1840L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersAdGuardHome.txt" - }, - new - { - Id = 1909L, - FilterListId = 1841L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersPiHole.txt" - }, - new - { - Id = 1910L, - FilterListId = 1841L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersPiHole.txt" - }, - new - { - Id = 1911L, - FilterListId = 1842L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersSocks5.list" - }, - new - { - Id = 1912L, - FilterListId = 1842L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersSocks5.list" - }, - new - { - Id = 1913L, - FilterListId = 1843L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/secretsnow/Ad-Filters/master/Ad Filters.txt" - }, - new - { - Id = 1914L, - FilterListId = 1844L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/some-username-here1/motd-adblock/master/motd-adblock" - }, - new - { - Id = 1915L, - FilterListId = 1845L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/T4Tea/ADPMobileFilter/master/ADPMobileFilter.txt" - }, - new - { - Id = 1916L, - FilterListId = 1846L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/RandomAdversary/Macedonian-adBlock-Filters/master/Filters" - }, - new - { - Id = 1917L, - FilterListId = 1847L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/dorjmi/nothingblock/master/filter.txt" - }, - new - { - Id = 1918L, - FilterListId = 1848L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Crystal-RainSlide/AdditionalFiltersCN/master/CN.txt" - }, - new - { - Id = 1919L, - FilterListId = 1849L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jiayiming/jCleanList/master/jCleanList_all.txt" - }, - new - { - Id = 1920L, - FilterListId = 1850L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://n2o.io/projects/quarklist/dist/quarklist.txt" - }, - new - { - Id = 1921L, - FilterListId = 1852L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://adblock-thai.github.io/thai-ads-filter/subscription.txt" - }, - new - { - Id = 1922L, - FilterListId = 1853L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://adblock-thai.github.io/thai-ads-filter/annoyance.txt" - }, - new - { - Id = 1923L, - FilterListId = 1854L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/masterinspire/Master-AdRules/master/Master-AdRules.txt" - }, - new - { - Id = 1924L, - FilterListId = 1856L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/lutoma/nocomments/master/abp.txt" - }, - new - { - Id = 1932L, - FilterListId = 1864L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Ayesh/Adblock-Sinhala/master/filters.txt" - }, - new - { - Id = 1933L, - FilterListId = 1865L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/zonprox/adblock/master/abpadv.txt" - }, - new - { - Id = 1934L, - FilterListId = 1866L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/LanikSJ/ubo-filters/main/filters/combined-filters.txt" - }, - new - { - Id = 1935L, - FilterListId = 1867L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/LanikSJ/ubo-filters/main/filters/ubo-filters.txt" - }, - new - { - Id = 1936L, - FilterListId = 1868L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://mkb2091.github.io/blockconvert/output/adblock.txt" - }, - new - { - Id = 1937L, - FilterListId = 1869L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://mkb2091.github.io/blockconvert/output/hosts.txt" - }, - new - { - Id = 1938L, - FilterListId = 1870L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://mkb2091.github.io/blockconvert/output/domains.txt" - }, - new - { - Id = 1939L, - FilterListId = 1871L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://mkb2091.github.io/blockconvert/output/ip_blocklist.txt" - }, - new - { - Id = 1940L, - FilterListId = 1872L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://mkb2091.github.io/blockconvert/output/domains.rpz" - }, - new - { - Id = 1941L, - FilterListId = 1873L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://mkb2091.github.io/blockconvert/output/whitelist_domains.txt" - }, - new - { - Id = 1942L, - FilterListId = 1876L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersRPZ.txt" - }, - new - { - Id = 1943L, - FilterListId = 1876L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersRPZ.txt" - }, - new - { - Id = 1944L, - FilterListId = 1877L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersUnbound.conf" - }, - new - { - Id = 1945L, - FilterListId = 1877L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersUnbound.conf" - }, - new - { - Id = 1946L, - FilterListId = 1878L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersForMinerBlock.txt" - }, - new - { - Id = 1947L, - FilterListId = 1878L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersForMinerBlock.txt" - }, - new - { - Id = 1951L, - FilterListId = 1880L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-domains-online.txt" - }, - new - { - Id = 1952L, - FilterListId = 1880L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-domains-online.txt" - }, - new - { - Id = 1953L, - FilterListId = 1880L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-domains-online.txt" - }, - new - { - Id = 1954L, - FilterListId = 1881L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/angelics/pfbng/master/ads/ads-domain-list.txt" - }, - new - { - Id = 1955L, - FilterListId = 1882L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/blocktastic/pihole/master/blocktastic.txt" - }, - new - { - Id = 1956L, - FilterListId = 1886L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cchevy/macedonian-pi-hole-blocklist/master/hosts.txt" - }, - new - { - Id = 1957L, - FilterListId = 1887L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/chrisjudk/hosts/master/hosts" - }, - new - { - Id = 1958L, - FilterListId = 1888L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://agh.lite.dcod.ml/hosts.php" - }, - new - { - Id = 1959L, - FilterListId = 1890L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deletescape/noads/master/lists/add-switzerland.txt" - }, - new - { - Id = 1960L, - FilterListId = 1891L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deletescape/noads/master/lists/fo-scumware.txt" - }, - new - { - Id = 1961L, - FilterListId = 1892L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://lists.noads.online/lists/compilation.txt" - }, - new - { - Id = 1962L, - FilterListId = 1893L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deletescape/noads/master/lists/unbreak.txt" - }, - new - { - Id = 1965L, - FilterListId = 1896L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DRSDavidSoft/additional-hosts/master/domains/blacklist/adservers-and-trackers.txt" - }, - new - { - Id = 1966L, - FilterListId = 1897L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DRSDavidSoft/additional-hosts/master/domains/blacklist/unwanted-iranian.txt" - }, - new - { - Id = 1967L, - FilterListId = 1898L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/herrbischoff/trackers/master/trackers.txt" - }, - new - { - Id = 1968L, - FilterListId = 1899L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/javabean/dnsmasq-antispy/master/dnsmasq.ghostery_bugs.conf" - }, - new - { - Id = 1969L, - FilterListId = 1900L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/javabean/dnsmasq-antispy/master/dnsmasq.zz-extra-servers-manual.conf" - }, - new - { - Id = 1970L, - FilterListId = 1901L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiCartoonHipsterList.txt" - }, - new - { - Id = 1971L, - FilterListId = 1901L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiCartoonHipsterList.txt" - }, - new - { - Id = 1972L, - FilterListId = 1902L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/meinhimmel/hosts/master/hosts" - }, - new - { - Id = 1973L, - FilterListId = 1903L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mhhakim/pihole-blocklist/master/custom-blocklist.txt" - }, - new - { - Id = 1974L, - FilterListId = 1904L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Phentora/AdguardPersonalList/master/blocklist.txt" - }, - new - { - Id = 1975L, - FilterListId = 1906L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Rhys-H/hosts-list/master/HostsList.txt" - }, - new - { - Id = 1976L, - FilterListId = 1907L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/smed79/blacklist/master/hosts.txt" - }, - new - { - Id = 1977L, - FilterListId = 1908L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/stamparm/maltrail/master/trails/static/suspicious/pua.txt" - }, - new - { - Id = 1978L, - FilterListId = 1909L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/svetlyobg/svet-custom-domains/master/ads-domains" - }, - new - { - Id = 1979L, - FilterListId = 1910L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/svetlyobg/svet-custom-domains/master/ads-IPs" - }, - new - { - Id = 1980L, - FilterListId = 1911L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tomzuu/blacklist-named/master/ad.sites.conf" - }, - new - { - Id = 1981L, - FilterListId = 1912L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tomzuu/blacklist-named/master/phishing.sites.conf" - }, - new - { - Id = 1982L, - FilterListId = 1913L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tomzuu/blacklist-named/master/pushing.sites.conf" - }, - new - { - Id = 1983L, - FilterListId = 1914L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/UnbendableStraw/samsungnosnooping/master/README.md" - }, - new - { - Id = 1984L, - FilterListId = 1915L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/unchartedsky/adguard-kr/master/adguard-kr.txt" - }, - new - { - Id = 1985L, - FilterListId = 1916L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/xlimit91/xlimit91-block-list/master/blacklist.txt" - }, - new - { - Id = 1986L, - FilterListId = 1917L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/xlimit91/xlimit91-block-list/master/regex.list" - }, - new - { - Id = 1987L, - FilterListId = 1918L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ZYX2019/host-block-list/master/Custom.txt" - }, - new - { - Id = 1988L, - FilterListId = 1919L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/zznidar/BAR/master/BAR-list" - }, - new - { - Id = 1989L, - FilterListId = 1920L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/zznidar/BAR/master/URLs_full" - }, - new - { - Id = 1990L, - FilterListId = 1921L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/infinitytec/blocklists/master/ads-and-trackers.txt" - }, - new - { - Id = 1991L, - FilterListId = 1922L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/infinitytec/blocklists/master/scams-and-phishing.txt" - }, - new - { - Id = 1995L, - FilterListId = 1926L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jackrabbit335/UsefulLinuxShellScripts/master/Hosts %26 sourcelist/blacklist.txt" - }, - new - { - Id = 1996L, - FilterListId = 1927L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Th3M3/blocklists/master/malware.list" - }, - new - { - Id = 1997L, - FilterListId = 1928L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Th3M3/blocklists/master/tracking%26ads.list" - }, - new - { - Id = 2000L, - FilterListId = 1930L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/GameConsoleAdblockList.txt" - }, - new - { - Id = 2001L, - FilterListId = 1930L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/GameConsoleAdblockList.txt" - }, - new - { - Id = 2002L, - FilterListId = 1931L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.thedumbterminal.co.uk/files/services/squidblockedsites/blocked.txt" - }, - new - { - Id = 2003L, - FilterListId = 1932L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://assets.windscribe.com/custom_blocklists/clickbait.txt" - }, - new - { - Id = 2004L, - FilterListId = 1933L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/dns-firewall/dns/matrix/matrix/raw/master/source/adware/domains.list" - }, - new - { - Id = 2005L, - FilterListId = 1934L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/dns-firewall/dns/matrix/matrix/raw/master/source/tracking/domains.list" - }, - new - { - Id = 2008L, - FilterListId = 1937L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://pastebin.com/raw/UP3s7pEB" - }, - new - { - Id = 2009L, - FilterListId = 1938L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/YanFung/Ads/master/Mobile" - }, - new - { - Id = 2010L, - FilterListId = 1939L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/yhonay/antipopads/master/hosts" - }, - new - { - Id = 2011L, - FilterListId = 1940L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://repo.andnixsh.com/adblocker/hosts" - }, - new - { - Id = 2012L, - FilterListId = 1941L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/huanz/surge-hosts/master/surge.conf" - }, - new - { - Id = 2013L, - FilterListId = 1942L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.bentasker.co.uk/adblock/autolist.txt" - }, - new - { - Id = 2014L, - FilterListId = 1943L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.bentasker.co.uk/adblock/adblock_compiled.txt" - }, - new - { - Id = 2015L, - FilterListId = 1944L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.bentasker.co.uk/adblock/blockeddomains.txt" - }, - new - { - Id = 2016L, - FilterListId = 1945L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/regex.list" - }, - new - { - Id = 2017L, - FilterListId = 1946L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://anonymousposter.gitlab.io/ublockorigin-rules/blockrules.txt" - }, - new - { - Id = 2019L, - FilterListId = 1948L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/fengyc/URLRedirector/master/tools/rules.json" - }, - new - { - Id = 2020L, - FilterListId = 1949L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/fengyc/URLRedirector/master/tools/rules_geekzu.json" - }, - new - { - Id = 2021L, - FilterListId = 1950L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=rpz&showintro=1&mimetype=plaintext" - }, - new - { - Id = 2022L, - FilterListId = 1951L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AdGuardHomeDisallowedIPs.txt" - }, - new - { - Id = 2023L, - FilterListId = 1951L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AdGuardHomeDisallowedIPs.txt" - }, - new - { - Id = 2024L, - FilterListId = 1952L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/TwitterPureReadingExperience.txt" - }, - new - { - Id = 2025L, - FilterListId = 1952L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/TwitterPureReadingExperience.txt" - }, - new - { - Id = 2026L, - FilterListId = 1953L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/complete/adblock.txt" - }, - new - { - Id = 2027L, - FilterListId = 1954L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/mini/adblock.txt" - }, - new - { - Id = 2028L, - FilterListId = 1955L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/Pro/adblock.txt" - }, - new - { - Id = 2029L, - FilterListId = 1956L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/durablenapkin/scamblocklist/master/hosts.txt" - }, - new - { - Id = 2030L, - FilterListId = 1957L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yumire/kiss-filters/master/filters.txt" - }, - new - { - Id = 2031L, - FilterListId = 1958L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/Sorrow-San/9anime-adblock-filters/raw/master/9Anime filter list" - }, - new - { - Id = 2032L, - FilterListId = 1959L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/RiiConnect24/DNS-Server/master/dns_zones-hosts.txt" - }, - new - { - Id = 2036L, - FilterListId = 1963L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/Sorrow-San/9anime-adblock-filters/raw/master_with_banners/9Anime filter list" - }, - new - { - Id = 2037L, - FilterListId = 1964L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAdventureTimeList.txt" - }, - new - { - Id = 2038L, - FilterListId = 1964L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAdventureTimeList.txt" - }, - new - { - Id = 2039L, - FilterListId = 1965L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/HaveIBeenPwnedPasteRemover.txt" - }, - new - { - Id = 2040L, - FilterListId = 1965L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/HaveIBeenPwnedPasteRemover.txt" - }, - new - { - Id = 2043L, - FilterListId = 1967L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AdRemovalListForUnusualAds.txt" - }, - new - { - Id = 2044L, - FilterListId = 1967L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AdRemovalListForUnusualAds.txt" - }, - new - { - Id = 2045L, - FilterListId = 1968L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/AdguardFilters/master/AnnoyancesFilter/sections/remains.txt" - }, - new - { - Id = 2046L, - FilterListId = 1969L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/AdguardFilters/master/AnnoyancesFilter/sections/push-notifications.txt" - }, - new - { - Id = 2047L, - FilterListId = 1970L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/AdguardFilters/master/AnnoyancesFilter/sections/mobile-app.txt" - }, - new - { - Id = 2048L, - FilterListId = 1971L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/AdguardFilters/master/AnnoyancesFilter/sections/antiadblock.txt" - }, - new - { - Id = 2049L, - FilterListId = 1972L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AdGuard Home Compilation List/AdGuardHomeCompilationListIPs.txt" - }, - new - { - Id = 2050L, - FilterListId = 1972L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AdGuard Home Compilation List/AdGuardHomeCompilationListIPs.txt" - }, - new - { - Id = 2051L, - FilterListId = 1973L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/AntiAmazonListForTwitchDomains.txt" - }, - new - { - Id = 2052L, - FilterListId = 1973L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/AntiAmazonListForTwitchDomains.txt" - }, - new - { - Id = 2053L, - FilterListId = 1974L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/AntiAmazonListForTwitchHosts.txt" - }, - new - { - Id = 2054L, - FilterListId = 1974L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/AntiAmazonListForTwitchHosts.txt" - }, - new - { - Id = 2055L, - FilterListId = 1975L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/AntiF%25D1%2596%25D0%259C%2520ListDomains.txt" - }, - new - { - Id = 2056L, - FilterListId = 1975L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/AntiF%25D1%2596%25D0%259C%2520ListDomains.txt" - }, - new - { - Id = 2057L, - FilterListId = 1976L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiHivemindCartoonTrashingList.txt" - }, - new - { - Id = 2058L, - FilterListId = 1976L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiHivemindCartoonTrashingList.txt" - }, - new - { - Id = 2059L, - FilterListId = 1977L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/AntiHivemindCartoonTrashingListDomains.txt" - }, - new - { - Id = 2060L, - FilterListId = 1977L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/AntiHivemindCartoonTrashingListDomains.txt" - }, - new - { - Id = 2061L, - FilterListId = 1978L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/AntiStevenUniverseListDomains.txt" - }, - new - { - Id = 2062L, - FilterListId = 1978L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/AntiStevenUniverseListDomains.txt" - }, - new - { - Id = 2063L, - FilterListId = 1979L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/BrowseWebsitesWithoutLoggingInAGH.txt" - }, - new - { - Id = 2064L, - FilterListId = 1979L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/BrowseWebsitesWithoutLoggingInAGH.txt" - }, - new - { - Id = 2065L, - FilterListId = 1980L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/BrowseWebsitesWithoutLoggingInDomains.txt" - }, - new - { - Id = 2066L, - FilterListId = 1980L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/BrowseWebsitesWithoutLoggingInDomains.txt" - }, - new - { - Id = 2067L, - FilterListId = 1981L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/WikiaPureBrowsingExperienceDomains.txt" - }, - new - { - Id = 2068L, - FilterListId = 1981L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/WikiaPureBrowsingExperienceDomains.txt" - }, - new - { - Id = 2069L, - FilterListId = 1983L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiSubmissiveEroticaList.txt" - }, - new - { - Id = 2070L, - FilterListId = 1983L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiSubmissiveEroticaList.txt" - }, - new - { - Id = 2071L, - FilterListId = 1984L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/ImgurPureImageryExperience.txt" - }, - new - { - Id = 2072L, - FilterListId = 1984L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/ImgurPureImageryExperience.txt" - }, - new - { - Id = 2073L, - FilterListId = 1985L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://dns.adguard.com/dns-query" - }, - new - { - Id = 2074L, - FilterListId = 1985L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "tls://dns.adguard.com/" - }, - new - { - Id = 2075L, - FilterListId = 1985L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "176.103.130.130" - }, - new - { - Id = 2076L, - FilterListId = 1986L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://dns-family.adguard.com/dns-query" - }, - new - { - Id = 2077L, - FilterListId = 1986L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "tls://dns-family.adguard.com/" - }, - new - { - Id = 2078L, - FilterListId = 1986L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "176.103.130.132" - }, - new - { - Id = 2079L, - FilterListId = 1987L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/SayNoToRacismOnTwitch.txt" - }, - new - { - Id = 2080L, - FilterListId = 1987L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/SayNoToRacismOnTwitch.txt" - }, - new - { - Id = 2081L, - FilterListId = 1988L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/MeWeHappyTimeFunClub.txt" - }, - new - { - Id = 2082L, - FilterListId = 1988L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/MeWeHappyTimeFunClub.txt" - }, - new - { - Id = 2083L, - FilterListId = 1989L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/PokémonNoGOZone.txt" - }, - new - { - Id = 2084L, - FilterListId = 1989L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/PokémonNoGOZone.txt" - }, - new - { - Id = 2085L, - FilterListId = 1990L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/EmptyPaddingRemover.txt" - }, - new - { - Id = 2086L, - FilterListId = 1990L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/EmptyPaddingRemover.txt" - }, - new - { - Id = 2087L, - FilterListId = 1991L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/JapaneseTextSoftener.txt" - }, - new - { - Id = 2088L, - FilterListId = 1991L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/JapaneseTextSoftener.txt" - }, - new - { - Id = 2089L, - FilterListId = 1992L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://dsi.ut-capitole.fr/blacklists/download/sect.tar.gz" - }, - new - { - Id = 2090L, - FilterListId = 1993L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://dsi.ut-capitole.fr/blacklists/download/astrology.tar.gz" - }, - new - { - Id = 2091L, - FilterListId = 1994L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://dsi.ut-capitole.fr/blacklists/download/shortener.tar.gz" - }, - new - { - Id = 2092L, - FilterListId = 1995L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/assets/mirror/ut1-gambling.txt" - }, - new - { - Id = 2093L, - FilterListId = 1996L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Extensions/Anti Obfuscation" - }, - new - { - Id = 2095L, - FilterListId = 1998L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Anti/Anti Location Tracking" - }, - new - { - Id = 2096L, - FilterListId = 2000L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://someonewhocares.org/hosts/ipv6/hosts" - }, - new - { - Id = 2097L, - FilterListId = 2001L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/complete/dnsmasq.conf" - }, - new - { - Id = 2098L, - FilterListId = 2002L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/mini/dnsmasq.conf" - }, - new - { - Id = 2099L, - FilterListId = 2003L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/Pro/dnsmasq.conf" - }, - new - { - Id = 2100L, - FilterListId = 2004L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://www.accs-net.com/hosts/Downloads/hosts127001.zip" - }, - new - { - Id = 2101L, - FilterListId = 2005L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/assets/mirror/ut1-cryptojacking.txt" - }, - new - { - Id = 2102L, - FilterListId = 2006L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/assets/mirror/ut1-adult.txt" - }, - new - { - Id = 2103L, - FilterListId = 2007L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/assets/mirror/ut1-social-networks.txt" - }, - new - { - Id = 2104L, - FilterListId = 2008L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/ads.txt" - }, - new - { - Id = 2105L, - FilterListId = 2009L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/crypto.txt" - }, - new - { - Id = 2106L, - FilterListId = 2010L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/ransomware.txt" - }, - new - { - Id = 2107L, - FilterListId = 2011L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/piracy.txt" - }, - new - { - Id = 2108L, - FilterListId = 2012L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/tracking.txt" - }, - new - { - Id = 2109L, - FilterListId = 2013L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/scam.txt" - }, - new - { - Id = 2110L, - FilterListId = 2014L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/gambling.txt" - }, - new - { - Id = 2113L, - FilterListId = 2017L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/porn.txt" - }, - new - { - Id = 2114L, - FilterListId = 2018L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/redirect.txt" - }, - new - { - Id = 2115L, - FilterListId = 2022L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://ipverse.net/ipblocks/data/countries/cn.zone" - }, - new - { - Id = 2116L, - FilterListId = 2023L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://ipverse.net/ipblocks/data/countries/ru.zone" - }, - new - { - Id = 2117L, - FilterListId = 2024L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://ipverse.net/ipblocks/data/countries/ua.zone" - }, - new - { - Id = 2118L, - FilterListId = 2025L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://ipverse.net/ipblocks/data/countries/ro.zone" - }, - new - { - Id = 2119L, - FilterListId = 2026L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hblock.molinero.dev/hosts_domains.txt" - }, - new - { - Id = 2120L, - FilterListId = 2027L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hblock.molinero.dev/hosts_adblock.txt" - }, - new - { - Id = 2121L, - FilterListId = 2028L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/malware.txt" - }, - new - { - Id = 2122L, - FilterListId = 2029L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://ipverse.net/ipblocks/data/countries/cn-ipv6.zone" - }, - new - { - Id = 2123L, - FilterListId = 2030L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://ipverse.net/ipblocks/data/countries/ru-ipv6.zone" - }, - new - { - Id = 2124L, - FilterListId = 2031L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://ipverse.net/ipblocks/data/countries/ua-ipv6.zone" - }, - new - { - Id = 2127L, - FilterListId = 2034L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/fanboy-notifications.txt" - }, - new - { - Id = 2128L, - FilterListId = 2035L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/fanboy-notifications.tpl" - }, - new - { - Id = 2129L, - FilterListId = 2036L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/notracking/hosts-blocklists/master/adblock/adblock.txt" - }, - new - { - Id = 2130L, - FilterListId = 2038L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/dnswarden/blocklist/master/blacklist-formats/hosts" - }, - new - { - Id = 2131L, - FilterListId = 2039L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/dnswarden/blocklist/master/blacklist-formats/hostnames" - }, - new - { - Id = 2132L, - FilterListId = 2040L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/dnswarden/blocklist/master/blacklist-formats/rpz" - }, - new - { - Id = 2133L, - FilterListId = 2041L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersHostsIPv6.txt" - }, - new - { - Id = 2134L, - FilterListId = 2041L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersHostsIPv6.txt" - }, - new - { - Id = 2137L, - FilterListId = 2043L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/privacy-protection-tools/anti-AD/master/anti-ad-easylist.txt" - }, - new - { - Id = 2138L, - FilterListId = 2043L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.jsdelivr.net/gh/privacy-protection-tools/anti-AD@master/anti-ad-easylist.txt" - }, - new - { - Id = 2139L, - FilterListId = 2043L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://anti-ad.net/easylist.txt" - }, - new - { - Id = 2140L, - FilterListId = 2044L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/privacy-protection-tools/anti-AD/master/anti-ad-domains.txt" - }, - new - { - Id = 2141L, - FilterListId = 2044L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.jsdelivr.net/gh/privacy-protection-tools/anti-AD@master/anti-ad-domains.txt" - }, - new - { - Id = 2142L, - FilterListId = 2044L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://anti-ad.net/domains.txt" - }, - new - { - Id = 2143L, - FilterListId = 2045L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/privacy-protection-tools/anti-AD/master/adblock-for-dnsmasq.conf" - }, - new - { - Id = 2144L, - FilterListId = 2045L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.jsdelivr.net/gh/privacy-protection-tools/anti-AD@master/adblock-for-dnsmasq.conf" - }, - new - { - Id = 2145L, - FilterListId = 2045L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://anti-ad.net/anti-ad-for-dnsmasq.conf" - }, - new - { - Id = 2146L, - FilterListId = 2046L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/privacy-protection-tools/anti-AD/master/anti-ad-surge.txt" - }, - new - { - Id = 2147L, - FilterListId = 2046L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.jsdelivr.net/gh/privacy-protection-tools/anti-AD@master/anti-ad-surge.txt" - }, - new - { - Id = 2148L, - FilterListId = 2046L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://anti-ad.net/surge.txt" - }, - new - { - Id = 2149L, - FilterListId = 2047L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/danielmiessler/SecLists/master/Discovery/Infrastructure/common-router-ips.txt" - }, - new - { - Id = 2150L, - FilterListId = 2048L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/danielmiessler/SecLists/master/IOCs/kaspersky-careto-domains.txt" - }, - new - { - Id = 2151L, - FilterListId = 2049L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/danielmiessler/SecLists/master/IOCs/kaspersky-careto-C2.txt" - }, - new - { - Id = 2152L, - FilterListId = 2050L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/danielmiessler/SecLists/master/Miscellaneous/dns-resolvers.txt" - }, - new - { - Id = 2153L, - FilterListId = 2051L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hostfiles.frogeye.fr/firstparty-trackers.txt" - }, - new - { - Id = 2154L, - FilterListId = 2052L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hostfiles.frogeye.fr/firstparty-trackers-hosts.txt" - }, - new - { - Id = 2155L, - FilterListId = 2053L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hostfiles.frogeye.fr/firstparty-only-trackers.txt" - }, - new - { - Id = 2156L, - FilterListId = 2054L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hostfiles.frogeye.fr/firstparty-only-trackers-hosts.txt" - }, - new - { - Id = 2157L, - FilterListId = 2055L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hostfiles.frogeye.fr/multiparty-only-trackers.txt" - }, - new - { - Id = 2158L, - FilterListId = 2056L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hostfiles.frogeye.fr/multiparty-only-trackers-hosts.txt" - }, - new - { - Id = 2159L, - FilterListId = 2057L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nextdns/cname-cloaking-blocklist/master/domains" - }, - new - { - Id = 2160L, - FilterListId = 2058L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nextdns/piracy-blocklists/master/torrent-websites" - }, - new - { - Id = 2161L, - FilterListId = 2059L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gist.githubusercontent.com/Marfjeh/97f2f049b41b3f09eabcc04004073ae3/raw/58fe3d12c4157b0bda1a2af313809597ea54bb08/torrent-trackers-host" - }, - new - { - Id = 2162L, - FilterListId = 2060L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Other Formats/Extra Format 1" - }, - new - { - Id = 2163L, - FilterListId = 2061L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Other Formats/Simplified Domains" - }, - new - { - Id = 2164L, - FilterListId = 2062L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deletescape/noads/master/lists/additional-rules.txt" - }, - new - { - Id = 2165L, - FilterListId = 2063L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://nixnet.services/hosts.txt" - }, - new - { - Id = 2166L, - FilterListId = 2064L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://adblock.any.dns.nixnet.xyz/dns-query" - }, - new - { - Id = 2167L, - FilterListId = 2064L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "tls://198.251.90.89:853/" - }, - new - { - Id = 2168L, - FilterListId = 2064L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "198.251.90.89" - }, - new - { - Id = 2169L, - FilterListId = 2065L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/troysjanda/MyBlockLists/master/yahoocomplete.txt" - }, - new - { - Id = 2170L, - FilterListId = 2067L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://ads-doh.securedns.eu/dns-query" - }, - new - { - Id = 2171L, - FilterListId = 2067L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "tls://ads-dot.securedns.eu/" - }, - new - { - Id = 2172L, - FilterListId = 2067L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "146.185.167.43:5443" - }, - new - { - Id = 2173L, - FilterListId = 2068L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.powershellgallery.com/packages/Manage-AdBlocksOnDNSServer/" - }, - new - { - Id = 2174L, - FilterListId = 2069L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "91.239.26.140" - }, - new - { - Id = 2175L, - FilterListId = 2070L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://dns.noads.online/dns-query" - }, - new - { - Id = 2176L, - FilterListId = 2070L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "tls://dns.noads.online:853/" - }, - new - { - Id = 2177L, - FilterListId = 2070L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "167.99.241.49" - }, - new - { - Id = 2178L, - FilterListId = 2071L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "46.101.91.123" - }, - new - { - Id = 2179L, - FilterListId = 2072L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://sebsauvage.net/hosts/hosts" - }, - new - { - Id = 2180L, - FilterListId = 2073L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://sebsauvage.net/hosts/hosts-adguard" - }, - new - { - Id = 2181L, - FilterListId = 2074L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://sebsauvage.net/hosts/raw" - }, - new - { - Id = 2182L, - FilterListId = 2075L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/SmartTV-AGH.txt" - }, - new - { - Id = 2184L, - FilterListId = 2077L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/durablenapkin/scamblocklist/master/adguard.txt" - }, - new - { - Id = 2185L, - FilterListId = 2078L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://ads-for-open-source.readthedocs.io/en/latest/_static/lists/readthedocs-ads.txt" - }, - new - { - Id = 2186L, - FilterListId = 2079L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/adguard/social-plus.txt" - }, - new - { - Id = 2187L, - FilterListId = 2080L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/adguard/tracking-plus.txt" - }, - new - { - Id = 2188L, - FilterListId = 2081L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/sabre-filters2.txt" - }, - new - { - Id = 2189L, - FilterListId = 2082L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/blog-parts.txt" - }, - new - { - Id = 2190L, - FilterListId = 2083L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/blog-parts-adult.txt" - }, - new - { - Id = 2191L, - FilterListId = 2084L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/medium_mode/anti-allowlist.txt" - }, - new - { - Id = 2192L, - FilterListId = 2085L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/medium_mode/dynamic-rules.txt" - }, - new - { - Id = 2193L, - FilterListId = 2086L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/medium_mode/static-rules.txt" - }, - new - { - Id = 2194L, - FilterListId = 2087L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/scafroglia93/blocklists/master/blocklists-main.txt" - }, - new - { - Id = 2195L, - FilterListId = 2088L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/medium_mode/dynamic-rules-mob.txt" - }, - new - { - Id = 2196L, - FilterListId = 2089L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/no_gen_cosm/phhider.txt" - }, - new - { - Id = 2197L, - FilterListId = 2090L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/no_gen_cosm/phhider-mob.txt" - }, - new - { - Id = 2198L, - FilterListId = 2091L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-filters.txt" - }, - new - { - Id = 2199L, - FilterListId = 2092L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-paranoid.txt" - }, - new - { - Id = 2200L, - FilterListId = 2093L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-social.txt" - }, - new - { - Id = 2201L, - FilterListId = 2094L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-annoyances.txt" - }, - new - { - Id = 2203L, - FilterListId = 2099L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "185.228.168.9" - }, - new - { - Id = 2204L, - FilterListId = 2099L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "185.228.169.9" - }, - new - { - Id = 2205L, - FilterListId = 2099L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "2a0d:2a00:1::2" - }, - new - { - Id = 2206L, - FilterListId = 2100L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Kees1958/WS3_annual_most_used_survey_blocklist/master/Top500" - }, - new - { - Id = 2207L, - FilterListId = 2101L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DavidTai780/AdGuard-Home-Private-Rules/master/hosts.txt" - }, - new - { - Id = 2208L, - FilterListId = 2102L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/loveqqzj/AdGuard/master/Mobile.txt" - }, - new - { - Id = 2209L, - FilterListId = 2103L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/crimsonphobia/etc/master/ips" - }, - new - { - Id = 2210L, - FilterListId = 2104L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/banbendalao/ADgk/master/ADgk.txt" - }, - new - { - Id = 2211L, - FilterListId = 2104L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.jsdelivr.net/gh/banbendalao/ADgk@latest/ADgk.txt" - }, - new - { - Id = 2212L, - FilterListId = 2104L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://banbendalao.coding.net/p/adgk/d/ADgk/git/raw/master/ADgk.txt" - }, - new - { - Id = 2213L, - FilterListId = 2105L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/banbendalao/ADgk/master/kill-baidu-ad.txt" - }, - new - { - Id = 2214L, - FilterListId = 2105L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.jsdelivr.net/gh/banbendalao/ADgk@latest/kill-baidu-ad.txt" - }, - new - { - Id = 2215L, - FilterListId = 2105L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://banbendalao.coding.net/p/adgk/d/ADgk/git/raw/master/kill-baidu-ad.txt" - }, - new - { - Id = 2216L, - FilterListId = 2106L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://dns.adgk.net:4433/dns-query" - }, - new - { - Id = 2217L, - FilterListId = 2106L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "tls://dns.adgk.net/" - }, - new - { - Id = 2218L, - FilterListId = 2106L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "47.98.48.196" - }, - new - { - Id = 2219L, - FilterListId = 2107L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "45.7.228.197" - }, - new - { - Id = 2220L, - FilterListId = 2108L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "198.91.86.63" - }, - new - { - Id = 2221L, - FilterListId = 2109L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitee.com/halflife/list/raw/master/ad.txt" - }, - new - { - Id = 2222L, - FilterListId = 2109L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/o0HalfLife0o/list/master/ad.txt" - }, - new - { - Id = 2223L, - FilterListId = 2110L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitee.com/anye1998/Adguard-List-of-personal-rules/raw/master/List-of-personal-rules.txt" - }, - new - { - Id = 2224L, - FilterListId = 2111L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cjx82630/cjxlist/master/cjx-ublock.txt" - }, - new - { - Id = 2225L, - FilterListId = 2111L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitee.com/cjx82630/cjxlist/raw/master/cjx-ublock.txt" - }, - new - { - Id = 2226L, - FilterListId = 2112L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/GDPR 451 List.txt" - }, - new - { - Id = 2227L, - FilterListId = 2112L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/GDPR 451 List.txt" - }, - new - { - Id = 2228L, - FilterListId = 2113L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/TorRedirectorList-URLRedirector.json" - }, - new - { - Id = 2229L, - FilterListId = 2113L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/TorRedirectorList-URLRedirector.json" - }, - new - { - Id = 2230L, - FilterListId = 2114L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/MediaPlayerGradientRemover.txt" - }, - new - { - Id = 2231L, - FilterListId = 2114L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/MediaPlayerGradientRemover.txt" - }, - new - { - Id = 2232L, - FilterListId = 2115L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/indianlist+easylist.txt" - }, - new - { - Id = 2233L, - FilterListId = 2117L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/indianlist+easylist.tpl" - }, - new - { - Id = 2234L, - FilterListId = 2118L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/koreanlist+easylist.txt" - }, - new - { - Id = 2235L, - FilterListId = 2119L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/koreanlist+easylist.tpl" - }, - new - { - Id = 2236L, - FilterListId = 2120L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistportuguese+easylist.txt" - }, - new - { - Id = 2237L, - FilterListId = 2121L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistportuguese+easylist.tpl" - }, - new - { - Id = 2238L, - FilterListId = 2122L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/abpvn+easylist.txt" - }, - new - { - Id = 2239L, - FilterListId = 2123L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/abpvn+easylist.tpl" - }, - new - { - Id = 2240L, - FilterListId = 2124L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/abpindo+easylist.tpl" - }, - new - { - Id = 2241L, - FilterListId = 2125L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/abp-filters-anti-cv.tpl" - }, - new - { - Id = 2242L, - FilterListId = 2126L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/bitblock.tpl" - }, - new - { - Id = 2243L, - FilterListId = 2127L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/bitblockext.txt" - }, - new - { - Id = 2244L, - FilterListId = 2128L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/bitblockext.tpl" - }, - new - { - Id = 2245L, - FilterListId = 2129L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/antinuha.txt" - }, - new - { - Id = 2246L, - FilterListId = 2130L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/antinuha.tpl" - }, - new - { - Id = 2247L, - FilterListId = 2131L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/cntblock.tpl" - }, - new - { - Id = 2248L, - FilterListId = 2132L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/hdd1013/AdBlockListSubKr/master/filter.txt" - }, - new - { - Id = 2249L, - FilterListId = 2133L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/dagoll/filters-list/master/dagoll-filters-list.txt" - }, - new - { - Id = 2250L, - FilterListId = 2134L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/TheCardinalSystem/Cruncyroll-Filter-List/master/english.txt" - }, - new - { - Id = 2251L, - FilterListId = 2135L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/radokristof/HunFakeNewsAdblockList/master/hosts" - }, - new - { - Id = 2252L, - FilterListId = 2136L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/dagoll/filters-list/master/dynamic-filtering-rules.txt" - }, - new - { - Id = 2253L, - FilterListId = 2137L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/AmazonFireTV.txt" - }, - new - { - Id = 2254L, - FilterListId = 2138L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DariusIurca/RFNBL-Romanian-Fake-News-Block-List/master/RFNBL.txt" - }, - new - { - Id = 2255L, - FilterListId = 2139L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DariusIurca/ROADBLK-EXTRA/master/ROADBLK-EXTRA.txt" - }, - new - { - Id = 2256L, - FilterListId = 2140L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/dnscrypt/spy.txt" - }, - new - { - Id = 2257L, - FilterListId = 2141L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/dnscrypt/update.txt" - }, - new - { - Id = 2258L, - FilterListId = 2142L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/dnscrypt/extra.txt" - }, - new - { - Id = 2259L, - FilterListId = 2143L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/openwrt/spy/dnsmasq.conf" - }, - new - { - Id = 2260L, - FilterListId = 2144L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/openwrt/update/dnsmasq.conf" - }, - new - { - Id = 2261L, - FilterListId = 2145L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/openwrt/extra/dnsmasq.conf" - }, - new - { - Id = 2262L, - FilterListId = 2146L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/firewall/spy.txt" - }, - new - { - Id = 2263L, - FilterListId = 2147L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/firewall/update.txt" - }, - new - { - Id = 2264L, - FilterListId = 2148L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/firewall/extra.txt" - }, - new - { - Id = 2265L, - FilterListId = 2149L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistpolish+easylist.txt" - }, - new - { - Id = 2266L, - FilterListId = 2150L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistpolish+easylist.tpl" - }, - new - { - Id = 2267L, - FilterListId = 2151L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/newhosts-final-IPv6.hosts" - }, - new - { - Id = 2268L, - FilterListId = 2152L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/newhosts-final-Dual.hosts" - }, - new - { - Id = 2269L, - FilterListId = 2153L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tomzuu/blacklist-named/master/malwaredomainlist.conf" - }, - new - { - Id = 2270L, - FilterListId = 2154L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tomzuu/blacklist-named/master/cedia_justdomains.conf" - }, - new - { - Id = 2271L, - FilterListId = 2155L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://abp.oisd.nl/" - }, - new - { - Id = 2272L, - FilterListId = 2155L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/abp.txt" - }, - new - { - Id = 2273L, - FilterListId = 2155L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/abp.txt" - }, - new - { - Id = 2274L, - FilterListId = 2156L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Special security lists/IDNHomographProtectionTotal.txt" - }, - new - { - Id = 2275L, - FilterListId = 2156L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Special security lists/IDNHomographProtectionTotal.txt" - }, - new - { - Id = 2276L, - FilterListId = 2157L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Special security lists/IDNHomographProtection-USLatinTLDsOnly.txt" - }, - new - { - Id = 2277L, - FilterListId = 2157L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Special security lists/IDNHomographProtection-USLatinTLDsOnly.txt" - }, - new - { - Id = 2278L, - FilterListId = 2158L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/EkstraBladetEroticContentRemover.txt" - }, - new - { - Id = 2279L, - FilterListId = 2158L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/EkstraBladetEroticContentRemover.txt" - }, - new - { - Id = 2280L, - FilterListId = 2159L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://orca.pet/notonmyshift/domains.txt" - }, - new - { - Id = 2281L, - FilterListId = 2160L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://bl.isx.fr/raw" - }, - new - { - Id = 2282L, - FilterListId = 2161L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/hg1978/AdGuard-Home-Whitelist/master/whitelist.txt" - }, - new - { - Id = 2283L, - FilterListId = 2162L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/MassMove/AttackVectors/master/LocalJournals/fake-local-journals-list.txt" - }, - new - { - Id = 2284L, - FilterListId = 2163L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/UndertaleRemoverForSoundCloud.txt" - }, - new - { - Id = 2285L, - FilterListId = 2163L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/UndertaleRemoverForSoundCloud.txt" - }, - new - { - Id = 2289L, - FilterListId = 2165L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-dnsmasq-online.conf" - }, - new - { - Id = 2290L, - FilterListId = 2165L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-dnsmasq-online.conf" - }, - new - { - Id = 2291L, - FilterListId = 2165L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-dnsmasq-online.conf" - }, - new - { - Id = 2295L, - FilterListId = 2167L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-hosts-online.txt" - }, - new - { - Id = 2296L, - FilterListId = 2167L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-hosts-online.txt" - }, - new - { - Id = 2297L, - FilterListId = 2167L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-hosts-online.txt" - }, - new - { - Id = 2301L, - FilterListId = 2169L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-bind-online.conf" - }, - new - { - Id = 2302L, - FilterListId = 2169L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-bind-online.conf" - }, - new - { - Id = 2303L, - FilterListId = 2169L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-bind-online.conf" - }, - new - { - Id = 2307L, - FilterListId = 2171L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-unbound-online.conf" - }, - new - { - Id = 2308L, - FilterListId = 2171L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-unbound-online.conf" - }, - new - { - Id = 2309L, - FilterListId = 2171L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-unbound-online.conf" - }, - new - { - Id = 2310L, - FilterListId = 2172L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/static/HPHosts/Hostsemd.txt" - }, - new - { - Id = 2311L, - FilterListId = 2173L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/static/HPHosts/Hostsexp.txt" - }, - new - { - Id = 2312L, - FilterListId = 2174L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/static/HPHosts/Hostsgrm.txt" - }, - new - { - Id = 2313L, - FilterListId = 2175L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/static/HPHosts/Hostsfsa.txt" - }, - new - { - Id = 2314L, - FilterListId = 2176L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/static/HPHosts/Hostsmmt.txt" - }, - new - { - Id = 2315L, - FilterListId = 2177L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/static/HPHosts/Hostspha.txt" - }, - new - { - Id = 2318L, - FilterListId = 2179L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://blocklist.palemoon.org/ABL/lunar-blocklist.txt" - }, - new - { - Id = 2319L, - FilterListId = 2180L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://mirai.security.gives/data/ip_list.txt" - }, - new - { - Id = 2320L, - FilterListId = 2181L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/stamparm/maltrail/master/trails/static/suspicious/crypto_mining.txt" - }, - new - { - Id = 2321L, - FilterListId = 2182L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/stamparm/maltrail/master/trails/static/suspicious/dynamic_domain.txt" - }, - new - { - Id = 2322L, - FilterListId = 2183L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/stamparm/maltrail/master/trails/static/suspicious/rogue_dns.txt" - }, - new - { - Id = 2323L, - FilterListId = 2184L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/stamparm/maltrail/master/trails/static/malicious/magentocore.txt" - }, - new - { - Id = 2324L, - FilterListId = 2185L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/1_optimized.txt" - }, - new - { - Id = 2325L, - FilterListId = 2186L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/4_optimized.txt" - }, - new - { - Id = 2326L, - FilterListId = 2187L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/113_optimized.txt" - }, - new - { - Id = 2327L, - FilterListId = 2188L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/104_optimized.txt" - }, - new - { - Id = 2328L, - FilterListId = 2189L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/115_optimized.txt" - }, - new - { - Id = 2329L, - FilterListId = 2190L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/118_optimized.txt" - }, - new - { - Id = 2330L, - FilterListId = 2191L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/14_optimized.txt" - }, - new - { - Id = 2331L, - FilterListId = 2192L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/122_optimized.txt" - }, - new - { - Id = 2332L, - FilterListId = 2193L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/123_optimized.txt" - }, - new - { - Id = 2333L, - FilterListId = 2194L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/213_optimized.txt" - }, - new - { - Id = 2334L, - FilterListId = 2195L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bambenek/block-doh/master/doh-hosts.txt" - }, - new - { - Id = 2335L, - FilterListId = 2196L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bambenek/block-doh/master/doh-ipv4.txt" - }, - new - { - Id = 2336L, - FilterListId = 2197L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bambenek/block-doh/master/doh-ipv6.txt" - }, - new - { - Id = 2337L, - FilterListId = 2198L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://azorult-tracker.net/api/list/domain?format=plain" - }, - new - { - Id = 2338L, - FilterListId = 2199L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/10.txt" - }, - new - { - Id = 2339L, - FilterListId = 2200L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/13.txt" - }, - new - { - Id = 2340L, - FilterListId = 2201L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/3.txt" - }, - new - { - Id = 2341L, - FilterListId = 2202L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/9.txt" - }, - new - { - Id = 2342L, - FilterListId = 2203L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/4.txt" - }, - new - { - Id = 2343L, - FilterListId = 2204L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/1.txt" - }, - new - { - Id = 2344L, - FilterListId = 2205L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/11.txt" - }, - new - { - Id = 2345L, - FilterListId = 2206L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/ios/filters/11.txt" - }, - new - { - Id = 2346L, - FilterListId = 2207L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/7.txt" - }, - new - { - Id = 2347L, - FilterListId = 2208L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/6.txt" - }, - new - { - Id = 2348L, - FilterListId = 2209L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/5.txt" - }, - new - { - Id = 2349L, - FilterListId = 2210L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/2.txt" - }, - new - { - Id = 2350L, - FilterListId = 2211L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/8.txt" - }, - new - { - Id = 2351L, - FilterListId = 2212L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/14.txt" - }, - new - { - Id = 2352L, - FilterListId = 2213L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/16.txt" - }, - new - { - Id = 2353L, - FilterListId = 2214L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/2_without_easylist.txt" - }, - new - { - Id = 2354L, - FilterListId = 2215L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/stamparm/aux/master/maltrail-malware-domains.txt" - }, - new - { - Id = 2355L, - FilterListId = 2216L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://infosharing.cybersaiyan.it/feeds/CS-PIHOLE" - }, - new - { - Id = 2356L, - FilterListId = 2217L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/stamparm/ipsum/master/levels/4.txt" - }, - new - { - Id = 2357L, - FilterListId = 2218L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/stamparm/ipsum/master/levels/5.txt" - }, - new - { - Id = 2358L, - FilterListId = 2219L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/stamparm/ipsum/master/levels/6.txt" - }, - new - { - Id = 2359L, - FilterListId = 2220L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAnthroCombatWaifuList.txt" - }, - new - { - Id = 2360L, - FilterListId = 2220L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAnthroCombatWaifuList.txt" - }, - new - { - Id = 2370L, - FilterListId = 2230L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/abpindo-minified.txt" - }, - new - { - Id = 2371L, - FilterListId = 2231L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/abpvn-minified.txt" - }, - new - { - Id = 2372L, - FilterListId = 2232L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/ruadlist-minified.txt" - }, - new - { - Id = 2373L, - FilterListId = 2233L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/bulgarian_list-minified.txt" - }, - new - { - Id = 2374L, - FilterListId = 2234L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylist-minified.txt" - }, - new - { - Id = 2375L, - FilterListId = 2235L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistchina-minified.txt" - }, - new - { - Id = 2376L, - FilterListId = 2236L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hg.adblockplus.org/customfilterlists/raw-file/default/easylistczechandslovak-minified.txt" - }, - new - { - Id = 2377L, - FilterListId = 2237L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistdutch-minified.txt" - }, - new - { - Id = 2378L, - FilterListId = 2238L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistgermany-minified.txt" - }, - new - { - Id = 2379L, - FilterListId = 2239L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistitaly-minified.txt" - }, - new - { - Id = 2380L, - FilterListId = 2240L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistlithuania-minified.txt" - }, - new - { - Id = 2381L, - FilterListId = 2241L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistpolish-minified.txt" - }, - new - { - Id = 2382L, - FilterListId = 2242L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistportuguese-minified.txt" - }, - new - { - Id = 2383L, - FilterListId = 2243L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistspanish-minified.txt" - }, - new - { - Id = 2384L, - FilterListId = 2244L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easyprivacy-minified.txt" - }, - new - { - Id = 2385L, - FilterListId = 2245L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/fanboy-social-minified.txt" - }, - new - { - Id = 2386L, - FilterListId = 2246L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/indianlist-minified.txt" - }, - new - { - Id = 2387L, - FilterListId = 2247L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/israellist-minified.txt" - }, - new - { - Id = 2388L, - FilterListId = 2248L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/latvianlist-minified.txt" - }, - new - { - Id = 2390L, - FilterListId = 2250L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/liste_fr-minified.txt" - }, - new - { - Id = 2391L, - FilterListId = 2251L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/rolist-minified.txt" - }, - new - { - Id = 2392L, - FilterListId = 2252L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistchina+easylistchina_compliance+easylist.txt" - }, - new - { - Id = 2393L, - FilterListId = 2253L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/abpindo-minified.tpl" - }, - new - { - Id = 2394L, - FilterListId = 2254L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/abpvn-minified.tpl" - }, - new - { - Id = 2395L, - FilterListId = 2255L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/ruadlist-minified.tpl" - }, - new - { - Id = 2396L, - FilterListId = 2256L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/bulgarian_list-minified.tpl" - }, - new - { - Id = 2397L, - FilterListId = 2257L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylist-minified.tpl" - }, - new - { - Id = 2398L, - FilterListId = 2258L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistchina-minified.tpl" - }, - new - { - Id = 2400L, - FilterListId = 2260L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistdutch-minified.tpl" - }, - new - { - Id = 2401L, - FilterListId = 2261L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistgermany-minified.tpl" - }, - new - { - Id = 2402L, - FilterListId = 2262L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistitaly-minified.tpl" - }, - new - { - Id = 2403L, - FilterListId = 2263L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistlithuania-minified.tpl" - }, - new - { - Id = 2404L, - FilterListId = 2264L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistpolish-minified.tpl" - }, - new - { - Id = 2405L, - FilterListId = 2265L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistportuguese-minified.tpl" - }, - new - { - Id = 2406L, - FilterListId = 2266L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistspanish-minified.tpl" - }, - new - { - Id = 2407L, - FilterListId = 2267L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easyprivacy-minified.tpl" - }, - new - { - Id = 2408L, - FilterListId = 2268L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/fanboy-social-minified.tpl" - }, - new - { - Id = 2409L, - FilterListId = 2269L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/indianlist-minified.tpl" - }, - new - { - Id = 2410L, - FilterListId = 2270L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/israellist-minified.tpl" - }, - new - { - Id = 2411L, - FilterListId = 2271L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/latvianlist-minified.tpl" - }, - new - { - Id = 2412L, - FilterListId = 2272L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/liste_ar-minified.tpl" - }, - new - { - Id = 2413L, - FilterListId = 2273L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/liste_fr-minified.tpl" - }, - new - { - Id = 2414L, - FilterListId = 2274L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/rolist-minified.tpl" - }, - new - { - Id = 2415L, - FilterListId = 2275L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistchina+easylistchina_compliance+easylist.tpl" - }, - new - { - Id = 2416L, - FilterListId = 2276L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://sub.adtchrome.com/adt-chinalist-easylist.txt" - }, - new - { - Id = 2417L, - FilterListId = 2277L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/TakoYachty/Gift-Card-Killer/master/Mega Untrusted Hosts Blocker.txt" - }, - new - { - Id = 2418L, - FilterListId = 2278L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/stonecrusher/filterlists-pihole/master/watchlist-internet-ph.txt" - }, - new - { - Id = 2419L, - FilterListId = 2279L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://badmojr.github.io/1Hosts/complete/wildcards.txt" - }, - new - { - Id = 2420L, - FilterListId = 2279L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/complete/wildcards.txt" - }, - new - { - Id = 2421L, - FilterListId = 2280L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://badmojr.github.io/1Hosts/mini/wildcards.txt" - }, - new - { - Id = 2422L, - FilterListId = 2280L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/mini/wildcards.txt" - }, - new - { - Id = 2423L, - FilterListId = 2281L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://badmojr.github.io/1Hosts/Pro/wildcards.txt" - }, - new - { - Id = 2424L, - FilterListId = 2281L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/Pro/wildcards.txt" - }, - new - { - Id = 2426L, - FilterListId = 2283L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jerryn70/GoodbyeAds/master/Formats/GoodbyeAds-AdBlock-Filter.txt" - }, - new - { - Id = 2427L, - FilterListId = 2284L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jerryn70/GoodbyeAds/master/Hosts/GoodbyeAds-Ultra.txt" - }, - new - { - Id = 2428L, - FilterListId = 2285L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jerryn70/GoodbyeAds/master/Formats/GoodbyeAds-Ultra-AdBlock-Filter.txt" - }, - new - { - Id = 2429L, - FilterListId = 2286L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersABP-Inclusion.txt" - }, - new - { - Id = 2430L, - FilterListId = 2286L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersABP-Inclusion.txt" - }, - new - { - Id = 2431L, - FilterListId = 2287L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiRacismList.txt" - }, - new - { - Id = 2432L, - FilterListId = 2287L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiRacismList.txt" - }, - new - { - Id = 2433L, - FilterListId = 2288L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/gwarser/filter-lists/master/lan-block.txt" - }, - new - { - Id = 2434L, - FilterListId = 2289L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/realodix/AdBlockID-Adult/master/AdBlockID_Adult.txt" - }, - new - { - Id = 2435L, - FilterListId = 2290L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/llacb47/miscfilters/master/antipaywall.txt" - }, - new - { - Id = 2436L, - FilterListId = 2291L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/llacb47/mischosts/master/blacklist" - }, - new - { - Id = 2437L, - FilterListId = 2292L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/master/accelerated-domains.china.conf" - }, - new - { - Id = 2438L, - FilterListId = 2293L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/intr0/zuckerblock/-/raw/master/uBlockOrigin-noMoreGiphy.txt" - }, - new - { - Id = 2439L, - FilterListId = 2294L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/intr0/zuckerblock/-/raw/master/AdGuard-noMoreGiphy.txt" - }, - new - { - Id = 2440L, - FilterListId = 2295L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/hl2guide/DNS-Sinkhole-Lists-A2/master/typosquatting_blocklist.txt" - }, - new - { - Id = 2442L, - FilterListId = 2297L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/BlackJack8/iOSAdblockList/master/Hosts.txt" - }, - new - { - Id = 2443L, - FilterListId = 2298L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/PebbleOG/pihole-regex/master/regex.list" - }, - new - { - Id = 2444L, - FilterListId = 2299L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/anthony-wang/PiHoleBlocklist/master/regex.list" - }, - new - { - Id = 2445L, - FilterListId = 2300L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/anthony-wang/PiHoleBlocklist/master/hosts1.txt" - }, - new - { - Id = 2446L, - FilterListId = 2301L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/revolveruk30/pihole_regex/master/regex.list" - }, - new - { - Id = 2447L, - FilterListId = 2302L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/d43m0nhLInt3r/socialblocklists/master/Skype/skypeblocklist.txt" - }, - new - { - Id = 2448L, - FilterListId = 2302L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/evpne/socialblocklists/master/Skype/skypeblocklist.txt" - }, - new - { - Id = 2449L, - FilterListId = 2303L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/stamparm/blackbook/master/blackbook.txt" - }, - new - { - Id = 2450L, - FilterListId = 2304L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://blocklist.cyberthreatcoalition.org/vetted/domain.txt" - }, - new - { - Id = 2451L, - FilterListId = 2305L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/sophoslabs/covid-iocs/master/malicious_domains.txt" - }, - new - { - Id = 2452L, - FilterListId = 2306L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/sophoslabs/covid-iocs/master/malware_domains.txt" - }, - new - { - Id = 2453L, - FilterListId = 2307L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://managedsentinel.com/downloads/covid19_domains.txt" - }, - new - { - Id = 2454L, - FilterListId = 2308L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://managedsentinel.com/downloads/covid19_ipaddresses.txt" - }, - new - { - Id = 2455L, - FilterListId = 2309L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://rescure.fruxlabs.com/rescure_domain_blacklist.txt" - }, - new - { - Id = 2456L, - FilterListId = 2310L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://rescure.fruxlabs.com/rescure_blacklist.txt" - }, - new - { - Id = 2457L, - FilterListId = 2311L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://rescure.fruxlabs.com/covid.txt" - }, - new - { - Id = 2458L, - FilterListId = 2311L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://kriskintel.com/feeds/ktip_covid_domains.txt" - }, - new - { - Id = 2460L, - FilterListId = 2313L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://kriskintel.com/feeds/ktip_malicious_domains.txt" - }, - new - { - Id = 2461L, - FilterListId = 2314L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://kriskintel.com/feeds/ktip_malicious_Ips.txt" - }, - new - { - Id = 2462L, - FilterListId = 2315L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/NoFormatting/optimized-win.hosts" - }, - new - { - Id = 2463L, - FilterListId = 2316L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/NoFormatting/optimized-win-Dual.hosts" - }, - new - { - Id = 2464L, - FilterListId = 2317L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/NoFormatting/combined-flat.cidr" - }, - new - { - Id = 2465L, - FilterListId = 2318L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://managedsentinel.com/downloads/covid19_url.txt" - }, - new - { - Id = 2466L, - FilterListId = 2319L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://ftpihole.s3.eu-west-2.amazonaws.com/blocklists/smartphone-ads-tracking.txt" - }, - new - { - Id = 2467L, - FilterListId = 2319L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ftpmorph/ftpihole/master/blocklists/smartphone-ads-tracking.txt" - }, - new - { - Id = 2468L, - FilterListId = 2320L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://ftpihole.s3.eu-west-2.amazonaws.com/blocklists/xiaomi-ads-tracking.txt" - }, - new - { - Id = 2469L, - FilterListId = 2320L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ftpmorph/ftpihole/master/blocklists/xiaomi-ads-tracking.txt" - }, - new - { - Id = 2470L, - FilterListId = 2321L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/chromium/filters/224.txt" - }, - new - { - Id = 2471L, - FilterListId = 2322L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/224.txt" - }, - new - { - Id = 2472L, - FilterListId = 2323L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/phishing-filter.txt" - }, - new - { - Id = 2473L, - FilterListId = 2323L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gl/curben/phishing-filter/master/dist/phishing-filter.txt" - }, - new - { - Id = 2474L, - FilterListId = 2323L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter.txt" - }, - new - { - Id = 2475L, - FilterListId = 2324L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/phishing-filter-domains.txt" - }, - new - { - Id = 2476L, - FilterListId = 2324L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gl/curben/phishing-filter/master/phishing-filter-domains.txt" - }, - new - { - Id = 2477L, - FilterListId = 2324L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter-domains.txt" - }, - new - { - Id = 2478L, - FilterListId = 2325L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/phishing-filter-dnsmasq.conf" - }, - new - { - Id = 2479L, - FilterListId = 2325L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gl/curben/phishing-filter/master/dist/phishing-filter-dnsmasq.conf" - }, - new - { - Id = 2480L, - FilterListId = 2325L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter-dnsmasq.conf" - }, - new - { - Id = 2481L, - FilterListId = 2326L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/phishing-filter-hosts.txt" - }, - new - { - Id = 2482L, - FilterListId = 2326L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gl/curben/phishing-filter/master/dist/phishing-filter-hosts.txt" - }, - new - { - Id = 2483L, - FilterListId = 2326L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter-hosts.txt" - }, - new - { - Id = 2484L, - FilterListId = 2327L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/phishing-filter-bind.conf" - }, - new - { - Id = 2485L, - FilterListId = 2327L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gl/curben/phishing-filter/master/dist/phishing-filter-bind.conf" - }, - new - { - Id = 2486L, - FilterListId = 2327L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter-bind.conf" - }, - new - { - Id = 2487L, - FilterListId = 2328L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/phishing-filter-unbound.conf" - }, - new - { - Id = 2488L, - FilterListId = 2328L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gl/curben/phishing-filter/master/dist/phishing-filter-unbound.conf" - }, - new - { - Id = 2489L, - FilterListId = 2328L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter-unbound.conf" - }, - new - { - Id = 2490L, - FilterListId = 2329L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/infinitytec/blocklists/master/adfilters.txt" - }, - new - { - Id = 2491L, - FilterListId = 2330L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://github.com/infinitytec/blocklists/raw/master/annoyances.txt" - }, - new - { - Id = 2492L, - FilterListId = 2331L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://github.com/infinitytec/blocklists/raw/master/medicalpseudoscience.txt" - }, - new - { - Id = 2493L, - FilterListId = 2332L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/Anifltrs.txt" - }, - new - { - Id = 2494L, - FilterListId = 2333L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/MAL-Sync UI.txt" - }, - new - { - Id = 2495L, - FilterListId = 2334L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/Anifiltrs Main/Anifiltrs extra-main.txt" - }, - new - { - Id = 2496L, - FilterListId = 2335L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/Anifiltrs Main/Anifiltrs main.txt" - }, - new - { - Id = 2497L, - FilterListId = 2336L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/Anifiltrs — skeletonise.txt" - }, - new - { - Id = 2498L, - FilterListId = 2337L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/Anifiltrs — skeletonise extra.txt" - }, - new - { - Id = 2499L, - FilterListId = 2338L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/L33Tech/uLists/master/Lists/L33TAIO.uBl" - }, - new - { - Id = 2500L, - FilterListId = 2339L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/L33Tech/uLists/master/Forks/StopModReposts.uBl" - }, - new - { - Id = 2501L, - FilterListId = 2340L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/privacy-protection-tools/anti-AD/master/anti-ad-smartdns.conf" - }, - new - { - Id = 2502L, - FilterListId = 2340L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.jsdelivr.net/gh/privacy-protection-tools/anti-AD@master/anti-ad-smartdns.conf" - }, - new - { - Id = 2503L, - FilterListId = 2340L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://anti-ad.net/anti-ad-for-smartdns.conf" - }, - new - { - Id = 2504L, - FilterListId = 2341L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "66.66.23.98" - }, - new - { - Id = 2505L, - FilterListId = 2342L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/AdGuardSDNSFilter/master/Filters/rules.txt" - }, - new - { - Id = 2506L, - FilterListId = 2343L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/AdGuardSDNSFilter/master/Filters/exceptions.txt" - }, - new - { - Id = 2507L, - FilterListId = 2344L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.eff.org/files/effdntlist.txt" - }, - new - { - Id = 2508L, - FilterListId = 2345L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/filter" - }, - new - { - Id = 2509L, - FilterListId = 2346L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/domains.txt" - }, - new - { - Id = 2510L, - FilterListId = 2347L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/dnsmasq.conf" - }, - new - { - Id = 2511L, - FilterListId = 2348L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/dnsmasq-ipv6.conf" - }, - new - { - Id = 2512L, - FilterListId = 2349L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/unbound.conf" - }, - new - { - Id = 2513L, - FilterListId = 2350L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/rpz.txt" - }, - new - { - Id = 2514L, - FilterListId = 2351L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/pdnsf.txt" - }, - new - { - Id = 2515L, - FilterListId = 2352L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.smartadblock.co.uk/filters/sabfilter.txt" - }, - new - { - Id = 2516L, - FilterListId = 2353L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jdlingyu/ad-wars/master/sha_ad_hosts" - }, - new - { - Id = 2517L, - FilterListId = 2354L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Ultimate-Hosts-Blacklist/whitelist/master/domains.list" - }, - new - { - Id = 2518L, - FilterListId = 2355L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/notracking/hosts-blocklists-scripts/master/hostnames.whitelist.txt" - }, - new - { - Id = 2519L, - FilterListId = 2356L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdBlock" - }, - new - { - Id = 2520L, - FilterListId = 2357L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdBlockLite" - }, - new - { - Id = 2521L, - FilterListId = 2358L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdList" - }, - new - { - Id = 2522L, - FilterListId = 2359L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdListLite" - }, - new - { - Id = 2523L, - FilterListId = 2360L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdBlock-dnsmasq" - }, - new - { - Id = 2524L, - FilterListId = 2361L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdBlockLite-dnsmasq" - }, - new - { - Id = 2525L, - FilterListId = 2362L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdAllowlist" - }, - new - { - Id = 2526L, - FilterListId = 2363L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/examplecode/ad-rules-for-xbrowser/master/core-rule-cn.txt" - }, - new - { - Id = 2527L, - FilterListId = 2364L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ilpl/ad-hosts/master/hosts" - }, - new - { - Id = 2529L, - FilterListId = 2366L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/FalukorvList.txt" - }, - new - { - Id = 2530L, - FilterListId = 2366L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/FalukorvList.txt" - }, - new - { - Id = 2531L, - FilterListId = 2367L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://blokada.org/blocklists/ddgtrackerradar/standard/hosts.txt" - }, - new - { - Id = 2532L, - FilterListId = 2368L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Loyalsoldier/v2ray-rules-dat/release/reject-list.txt" - }, - new - { - Id = 2533L, - FilterListId = 2369L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiKpopSpammersTwitter.txt" - }, - new - { - Id = 2534L, - FilterListId = 2369L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiKpopSpammersTwitter.txt" - }, - new - { - Id = 2535L, - FilterListId = 2370L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Goooler/1024_hosts/master/hosts" - }, - new - { - Id = 2536L, - FilterListId = 2371L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/adbyby/xwhyc-rules/master/lazy.txt" - }, - new - { - Id = 2537L, - FilterListId = 2372L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/privacy-protection-tools/dead-horse/master/anti-ad-white-list.txt" - }, - new - { - Id = 2538L, - FilterListId = 2373L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAdoptablesList.txt" - }, - new - { - Id = 2539L, - FilterListId = 2373L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAdoptablesList.txt" - }, - new - { - Id = 2540L, - FilterListId = 2374L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianCashbackAssistantReborn.txt" - }, - new - { - Id = 2541L, - FilterListId = 2374L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianCashbackAssistantReborn.txt" - }, - new - { - Id = 2542L, - FilterListId = 2375L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiNonNewsList.txt" - }, - new - { - Id = 2543L, - FilterListId = 2375L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiNonNewsList.txt" - }, - new - { - Id = 2544L, - FilterListId = 2376L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiBadCapitalismList.txt" - }, - new - { - Id = 2545L, - FilterListId = 2376L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiBadCapitalismList.txt" - }, - new - { - Id = 2546L, - FilterListId = 2377L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/dandelion_sprouts_nordic_filters+easylist.txt" - }, - new - { - Id = 2547L, - FilterListId = 2378L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/dandelion_sprouts_nordic_filters+easylist.tpl" - }, - new - { - Id = 2548L, - FilterListId = 2379L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://doh1.blahdns.com/dns-query" - }, - new - { - Id = 2549L, - FilterListId = 2379L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "tls://95.216.212.177:853/" - }, - new - { - Id = 2550L, - FilterListId = 2379L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "95.216.212.177" - }, - new - { - Id = 2551L, - FilterListId = 2380L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/googlehosts/hosts/master/hosts-files/surge.conf" - }, - new - { - Id = 2552L, - FilterListId = 2380L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://git.qvq.network/googlehosts/hosts/raw/master/hosts-files/surge.conf" - }, - new - { - Id = 2553L, - FilterListId = 2381L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/googlehosts/hosts/master/hosts-files/dnsmasq.conf" - }, - new - { - Id = 2554L, - FilterListId = 2381L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://git.qvq.network/googlehosts/hosts/raw/master/hosts-files/dnsmasq.conf" - }, - new - { - Id = 2555L, - FilterListId = 2382L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/abp_light.txt" - }, - new - { - Id = 2556L, - FilterListId = 2382L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/abp_light.txt" - }, - new - { - Id = 2557L, - FilterListId = 2383L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dblw.txt" - }, - new - { - Id = 2558L, - FilterListId = 2383L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dblw.txt" - }, - new - { - Id = 2559L, - FilterListId = 2384L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dblw_light.txt" - }, - new - { - Id = 2560L, - FilterListId = 2384L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dblw_light.txt" - }, - new - { - Id = 2561L, - FilterListId = 2385L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dnsmasq.txt" - }, - new - { - Id = 2562L, - FilterListId = 2385L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dnsmasq.txt" - }, - new - { - Id = 2563L, - FilterListId = 2386L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dnsmasq_light.txt" - }, - new - { - Id = 2564L, - FilterListId = 2386L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dnsmasq_light.txt" - }, - new - { - Id = 2565L, - FilterListId = 2387L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ryanbr/fanboy-adblock/master/fanboy-anticomments.txt" - }, - new - { - Id = 2566L, - FilterListId = 2388L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://blacklists.ntop.org/blacklist-hostnames.txt" - }, - new - { - Id = 2567L, - FilterListId = 2389L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://blacklists.ntop.org/adblocker-hostnames.txt" - }, - new - { - Id = 2570L, - FilterListId = 2392L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/hufilter/hufilter/master/hufilter-dns.txt" - }, - new - { - Id = 2571L, - FilterListId = 2393L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://security.cloudflare-dns.com/dns-query" - }, - new - { - Id = 2572L, - FilterListId = 2393L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "1.1.1.2" - }, - new - { - Id = 2573L, - FilterListId = 2393L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "1.0.0.2" - }, - new - { - Id = 2574L, - FilterListId = 2394L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://family.cloudflare-dns.com/dns-query" - }, - new - { - Id = 2575L, - FilterListId = 2394L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "1.1.1.3" - }, - new - { - Id = 2576L, - FilterListId = 2394L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "1.0.0.3" - }, - new - { - Id = 2577L, - FilterListId = 2395L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "156.154.70.2" - }, - new - { - Id = 2578L, - FilterListId = 2395L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "156.154.71.2" - }, - new - { - Id = 2579L, - FilterListId = 2395L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "2610:a1:1018::2" - }, - new - { - Id = 2580L, - FilterListId = 198L, - Primariness = (short)4, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ABPindo/indonesianadblockrules/raw/master/subscriptions/abpindo.txt" - }, - new - { - Id = 2581L, - FilterListId = 2396L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/banks.txt" - }, - new - { - Id = 2582L, - FilterListId = 2397L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/sensitive.txt" - }, - new - { - Id = 2583L, - FilterListId = 2398L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/issues.txt" - }, - new - { - Id = 2584L, - FilterListId = 2399L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/windows.txt" - }, - new - { - Id = 2585L, - FilterListId = 2400L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/mac.txt" - }, - new - { - Id = 2586L, - FilterListId = 2401L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/android.txt" - }, - new - { - Id = 2587L, - FilterListId = 2402L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/firefox.txt" - }, - new - { - Id = 2588L, - FilterListId = 2403L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersDomainsAllowlist.txt" - }, - new - { - Id = 2589L, - FilterListId = 2403L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersDomainsAllowlist.txt" - }, - new - { - Id = 2590L, - FilterListId = 2404L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiPorkMeatOnRestaurantMenusList.txt" - }, - new - { - Id = 2591L, - FilterListId = 2404L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiPorkMeatOnRestaurantMenusList.txt" - }, - new - { - Id = 2592L, - FilterListId = 2406L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Special security lists/DummyList.txt" - }, - new - { - Id = 2593L, - FilterListId = 2406L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Special security lists/DummyList.txt" - }, - new - { - Id = 2594L, - FilterListId = 2405L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/Swedish-List-for-Adblock-Plus/main/Swedish List for Adblock Plus.txt" - }, - new - { - Id = 2595L, - FilterListId = 214L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/antiadblockfilters.txt" - }, - new - { - Id = 2596L, - FilterListId = 566L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/abp-filters-anti-cv.txt" - }, - new - { - Id = 2597L, - FilterListId = 2407L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hg.adblockplus.org/antiadblockfilters/raw-file/tip/antiadblockfilters/antiadblock_english.txt" - }, - new - { - Id = 2598L, - FilterListId = 2408L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hg.adblockplus.org/antiadblockfilters/raw-file/tip/antiadblockfilters/antiadblock_french.txt" - }, - new - { - Id = 2599L, - FilterListId = 2409L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hg.adblockplus.org/antiadblockfilters/raw-file/tip/antiadblockfilters/antiadblock_russian.txt" - }, - new - { - Id = 2600L, - FilterListId = 2410L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiSnowMarketingList.txt" - }, - new - { - Id = 2601L, - FilterListId = 2411L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/pexcn/daily/gh-pages/adlist/adlist.txt" - }, - new - { - Id = 2602L, - FilterListId = 2412L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/pexcn/daily/gh-pages/adblock/adblock.conf" - }, - new - { - Id = 2603L, - FilterListId = 2413L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/pexcn/daily/gh-pages/shadowrocket/gfwlist.conf" - }, - new - { - Id = 2604L, - FilterListId = 2414L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/pexcn/daily/gh-pages/shadowrocket/whitelist.conf" - }, - new - { - Id = 2605L, - FilterListId = 2415L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/pexcn/daily/gh-pages/trackerlist/trackerlist.txt" - }, - new - { - Id = 2606L, - FilterListId = 2416L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/pexcn/daily/gh-pages/ublacklist/ublacklist.txt" - }, - new - { - Id = 2607L, - FilterListId = 2417L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/pexcn/daily/gh-pages/chnroute/chnroute.txt" - }, - new - { - Id = 2608L, - FilterListId = 2418L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/pexcn/daily/gh-pages/chnroute/chnroute-v6.txt" - }, - new - { - Id = 2609L, - FilterListId = 2419L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-agh-online.txt" - }, - new - { - Id = 2610L, - FilterListId = 2420L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-ag-online.txt" - }, - new - { - Id = 2611L, - FilterListId = 2421L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-vivaldi-online.txt" - }, - new - { - Id = 2612L, - FilterListId = 2422L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/phishing-filter-agh.txt" - }, - new - { - Id = 2613L, - FilterListId = 2423L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/phishing-filter-ag.txt" - }, - new - { - Id = 2614L, - FilterListId = 2424L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/phishing-filter-vivaldi.txt" - }, - new - { - Id = 2615L, - FilterListId = 1985L, - Primariness = (short)4, - SegmentNumber = (short)0, - Url = "176.103.130.131" - }, - new - { - Id = 2616L, - FilterListId = 1985L, - Primariness = (short)5, - SegmentNumber = (short)0, - Url = "2a00:5a60::ad1:0ff" - }, - new - { - Id = 2617L, - FilterListId = 1985L, - Primariness = (short)6, - SegmentNumber = (short)0, - Url = "2a00:5a60::ad2:0ff" - }, - new - { - Id = 2618L, - FilterListId = 1986L, - Primariness = (short)4, - SegmentNumber = (short)0, - Url = "176.103.130.134" - }, - new - { - Id = 2619L, - FilterListId = 1986L, - Primariness = (short)5, - SegmentNumber = (short)0, - Url = "2a00:5a60::bad1:0ff" - }, - new - { - Id = 2620L, - FilterListId = 1986L, - Primariness = (short)6, - SegmentNumber = (short)0, - Url = "2a00:5a60::bad2:0ff" - }, - new - { - Id = 2621L, - FilterListId = 2425L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AdGuard Home Compilation List/AdGuardHomeCompilationList-Notifications.txt" - }, - new - { - Id = 2622L, - FilterListId = 2425L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/AdGuard Home Compilation List/AdGuardHomeCompilationList-Notifications.txt" - }, - new - { - Id = 2623L, - FilterListId = 2427L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/AdGuardSDNSFilter/master/Filters/exclusions.txt" - }, - new - { - Id = 2624L, - FilterListId = 2428L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiGachaAndKnockoffGamesList.txt" - }, - new - { - Id = 2625L, - FilterListId = 2428L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/AntiGachaAndKnockoffGamesList.txt" - }, - new - { - Id = 2626L, - FilterListId = 2426L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/rimu/no-qanon/master/etc_hosts.txt" - }, - new - { - Id = 2627L, - FilterListId = 2429L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/rimu/no-qanon/master/etc_hosts.txt.ipv6" - }, - new - { - Id = 2628L, - FilterListId = 2430L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.team-cymru.org/Services/Bogons/bogon-bn-agg.txt" - }, - new - { - Id = 2629L, - FilterListId = 2431L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.team-cymru.org/Services/Bogons/fullbogons-ipv4.txt" - }, - new - { - Id = 2630L, - FilterListId = 2432L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.team-cymru.org/Services/Bogons/fullbogons-ipv6.txt" - }, - new - { - Id = 2631L, - FilterListId = 2433L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFilters-uMatrixSupplement.txt" - }, - new - { - Id = 2632L, - FilterListId = 2433L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/NorwegianExperimentalList alternate versions/NordicFilters-uMatrixSupplement.txt" - }, - new - { - Id = 2633L, - FilterListId = 2434L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/LegitimateURLShortener.txt" - }, - new - { - Id = 2634L, - FilterListId = 2434L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/LegitimateURLShortener.txt" - }, - new - { - Id = 2635L, - FilterListId = 2435L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/SerboCroatianList.txt" - }, - new - { - Id = 2636L, - FilterListId = 2435L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/SerboCroatianList.txt" - }, - new - { - Id = 2637L, - FilterListId = 2436L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/AntiWeebBoobGamesList.txt" - }, - new - { - Id = 2638L, - FilterListId = 2436L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/Sensitive lists/AntiWeebBoobGamesList.txt" - }, - new - { - Id = 2639L, - FilterListId = 2437L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-online.tpl" - }, - new - { - Id = 2640L, - FilterListId = 2438L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/phishing-filter.tpl" - }, - new - { - Id = 2641L, - FilterListId = 2439L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://github.com/arapurayil/aBL/raw/master/lists/general/filter_list.txt" - }, - new - { - Id = 2642L, - FilterListId = 2440L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/arapurayil/aBL/master/lists/social/filter_list.txt" - }, - new - { - Id = 2643L, - FilterListId = 2441L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/arapurayil/aBL/master/lists/porn_gambling_snuff/filter_list.txt" - }, - new - { - Id = 2644L, - FilterListId = 2442L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/arapurayil/aBL/master/lists/regional/filter_list.txt" - }, - new - { - Id = 2645L, - FilterListId = 2443L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Special security lists/AntiFaviconList.txt" - }, - new - { - Id = 2646L, - FilterListId = 2443L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/Special security lists/AntiFaviconList.txt" - }, - new - { - Id = 2647L, - FilterListId = 2444L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareDomains.txt" - }, - new - { - Id = 2648L, - FilterListId = 2444L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/Alternate versions Anti-Malware List/AntiMalwareDomains.txt" - }, - new - { - Id = 2649L, - FilterListId = 2445L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/acnapyx/paywall-remover/master/paywall-remover-list.txt" - }, - new - { - Id = 2650L, - FilterListId = 2446L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://dns.hostux.net/ads" - }, - new - { - Id = 2651L, - FilterListId = 2447L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/arman68/noappleads/main/adguard-blocklist.txt" - }, - new - { - Id = 2652L, - FilterListId = 2448L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/vavavr00m/lists/main/hosts/googletranslate" - }, - new - { - Id = 2653L, - FilterListId = 2449L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/vavavr00m/lists/main/hosts/phorm" - }, - new - { - Id = 2654L, - FilterListId = 2450L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jmhenrique/adblock/master/etc/adblock_hosts" - }, - new - { - Id = 2656L, - FilterListId = 2452L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jbunner/adblock/master/a-roblox.txt" - }, - new - { - Id = 2657L, - FilterListId = 2453L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jbunner/adblock/master/a-msteams.txt" - }, - new - { - Id = 2658L, - FilterListId = 2454L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jbunner/adblock/master/a-scratch.txt" - }, - new - { - Id = 2659L, - FilterListId = 2455L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://dandelionsprout.asuscomm.com:2501/dns-query" - }, - new - { - Id = 2660L, - FilterListId = 2455L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "tls://dandelionsprout.asuscomm.com:853/" - }, - new - { - Id = 2661L, - FilterListId = 2456L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/pafnuty/onlineConsultantBlocker/master/online-consultant.txt" - }, - new - { - Id = 2662L, - FilterListId = 2457L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/catsxp/adblock-lists/master/catsxp-unbreak.txt" - }, - new - { - Id = 2663L, - FilterListId = 2458L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/RedDragonWebDesign/block-everything/master/block-everything.txt" - }, - new - { - Id = 2664L, - FilterListId = 2459L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/cname-trackers/master/combined_disguised_trackers.txt" - }, - new - { - Id = 2665L, - FilterListId = 2460L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/cname-trackers/master/combined_disguised_trackers_justdomains.txt" - }, - new - { - Id = 2666L, - FilterListId = 2461L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/cname-trackers/master/combined_original_trackers.txt" - }, - new - { - Id = 2667L, - FilterListId = 2462L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/WhyIsEvery4thYearAlwaysBad/anti-cancer-filter-lists/master/anti_trash_youtube.txt" - }, - new - { - Id = 2668L, - FilterListId = 2463L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/WhyIsEvery4thYearAlwaysBad/anti-cancer-filter-lists/master/anti_trash_new_reddit.txt" - }, - new - { - Id = 2669L, - FilterListId = 2464L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/WhyIsEvery4thYearAlwaysBad/anti-cancer-filter-lists/master/anti_trash_old_reddit.txt" - }, - new - { - Id = 2670L, - FilterListId = 2465L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/WhyIsEvery4thYearAlwaysBad/anti-cancer-filter-lists/master/anti_scam_internet.txt" - }, - new - { - Id = 2671L, - FilterListId = 2466L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filter.futa.gg/filter.txt" - }, - new - { - Id = 2672L, - FilterListId = 2466L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://filter.futa.app/filter.txt" - }, - new - { - Id = 2673L, - FilterListId = 2467L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filter.futa.gg/hosts.txt" - }, - new - { - Id = 2674L, - FilterListId = 2467L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://filter.futa.app/hosts.txt" - }, - new - { - Id = 2675L, - FilterListId = 2468L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filter.futa.gg/nofarm_hosts.txt" - }, - new - { - Id = 2676L, - FilterListId = 2468L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://filter.futa.app/nofarm_hosts.txt" - }, - new - { - Id = 2677L, - FilterListId = 2469L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FutaGuard/FutaFilter/master/removeparam.txt" - }, - new - { - Id = 2678L, - FilterListId = 2470L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/twcau/AdblockRules/master/MurdochList" - }, - new - { - Id = 2679L, - FilterListId = 2471L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/BPower0036/AdBlockFilters/main/easydutch.txt" - }, - new - { - Id = 2680L, - FilterListId = 2472L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-rpz-online.conf" - }, - new - { - Id = 2681L, - FilterListId = 2473L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/phishing-filter-rpz.conf" - }, - new - { - Id = 2683L, - FilterListId = 2096L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/blogroll.txt" - }, - new - { - Id = 2684L, - FilterListId = 2475L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/hirorpt/filters/main/fix.txt" - }, - new - { - Id = 2685L, - FilterListId = 2476L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/pup-filter.txt" - }, - new - { - Id = 2686L, - FilterListId = 2477L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/pup-filter-domains.txt" - }, - new - { - Id = 2687L, - FilterListId = 2478L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/pup-filter-dnsmasq.conf" - }, - new - { - Id = 2688L, - FilterListId = 2479L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/pup-filter-hosts.txt" - }, - new - { - Id = 2689L, - FilterListId = 2480L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/pup-filter-bind.conf" - }, - new - { - Id = 2690L, - FilterListId = 2481L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/pup-filter-unbound.conf" - }, - new - { - Id = 2691L, - FilterListId = 2482L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/pup-filter-agh.txt" - }, - new - { - Id = 2692L, - FilterListId = 2483L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/pup-filter-ag.txt" - }, - new - { - Id = 2693L, - FilterListId = 2484L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/pup-filter-vivaldi.txt" - }, - new - { - Id = 2694L, - FilterListId = 2485L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/pup-filter.tpl" - }, - new - { - Id = 2695L, - FilterListId = 2486L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/pup-filter-rpz.conf" - }, - new - { - Id = 2696L, - FilterListId = 2487L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/pup-filter-snort2.rules" - }, - new - { - Id = 2697L, - FilterListId = 2488L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/pup-filter-snort3.rules" - }, - new - { - Id = 2698L, - FilterListId = 2489L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/pup-filter-suricata.conf" - }, - new - { - Id = 2699L, - FilterListId = 2490L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-snort2-online.rules" - }, - new - { - Id = 2700L, - FilterListId = 2491L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-snort3-online.rules" - }, - new - { - Id = 2701L, - FilterListId = 2492L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-suricata-online.rules" - }, - new - { - Id = 2702L, - FilterListId = 2493L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/phishing-filter-snort2.rules" - }, - new - { - Id = 2703L, - FilterListId = 2494L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/phishing-filter-snort3.rules" - }, - new - { - Id = 2704L, - FilterListId = 2495L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/phishing-filter-suricata.rules" - }, - new - { - Id = 2705L, - FilterListId = 2496L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/troysjanda/MyBlockLists/master/UBOXPI" - }, - new - { - Id = 2706L, - FilterListId = 2097L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-annoyances-plus.txt" - }, - new - { - Id = 2707L, - FilterListId = 2098L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/adguard/anti-antiadb.txt" - }, - new - { - Id = 2708L, - FilterListId = 2497L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/windows/filters/17.txt" - }, - new - { - Id = 2709L, - FilterListId = 2498L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.joinhoney.com/whitelist/honey-smart-shopping.txt" - }, - new - { - Id = 2710L, - FilterListId = 2499L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/furkun/Anti-IP-Grabber-Hosts/main/hosts" - }, - new - { - Id = 2711L, - FilterListId = 2500L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Cinnamon-Unltd/Anti-Kpop-Spammers-Filterlist-for-Twitter/main/AntiKPopSpammersFilterlistTwitter.txt" - }, - new - { - Id = 2712L, - FilterListId = 2501L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/clarketm/proxy-list/master/proxy-list-raw.txt" - }, - new - { - Id = 2713L, - FilterListId = 2502L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/no-cmyk/Search-Engine-Spam-Domains-Blocklist/master/blocklist.txt" - }, - new - { - Id = 2714L, - FilterListId = 2503L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/SecOps-Institute/Tor-IP-Addresses/master/tor-nodes.lst" - }, - new - { - Id = 2715L, - FilterListId = 2504L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/SecOps-Institute/Tor-IP-Addresses/master/tor-exit-nodes.lst" - }, - new - { - Id = 2716L, - FilterListId = 2505L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/SecOps-Institute/SpamhausIPLists/master/drop.txt" - }, - new - { - Id = 2717L, - FilterListId = 2506L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/SecOps-Institute/SpamhausIPLists/master/drop_ipv6.txt" - }, - new - { - Id = 2718L, - FilterListId = 2507L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/SecOps-Institute/SpamhausIPLists/master/edrop.txt" - }, - new - { - Id = 2719L, - FilterListId = 2508L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://ipverse.net/ipblocks/data/countries/nl.zone" - }, - new - { - Id = 2720L, - FilterListId = 2509L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://ipverse.net/ipblocks/data/countries/nl-ipv6.zone" - }, - new - { - Id = 2721L, - FilterListId = 2510L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/autinerd/anti-axelspringer-hosts/master/ios-adguard.txt" - }, - new - { - Id = 2722L, - FilterListId = 2511L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/autinerd/anti-axelspringer-hosts/master/axelspringer-hosts" - }, - new - { - Id = 2723L, - FilterListId = 2512L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/LegitimateURLShortener-AffiliateTagAllowlist.txt" - }, - new - { - Id = 2724L, - FilterListId = 2512L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/LegitimateURLShortener-AffiliateTagAllowlist.txt" - }, - new - { - Id = 2725L, - FilterListId = 2513L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DRSDavidSoft/additional-hosts/master/domains/blacklist/fake-domains.txt" - }, - new - { - Id = 2726L, - FilterListId = 2514L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-dnscrypt-blocked-names-online.txt" - }, - new - { - Id = 2727L, - FilterListId = 2515L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-dnscrypt-blocked-ips-online.txt" - }, - new - { - Id = 2728L, - FilterListId = 2516L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/phishing-filter-dnscrypt-blocked-names.txt" - }, - new - { - Id = 2729L, - FilterListId = 2517L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/phishing-filter-dnscrypt-blocked-ips.txt" - }, - new - { - Id = 2730L, - FilterListId = 2518L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/pup-filter-dnscrypt-blocked-names.txt" - }, - new - { - Id = 2731L, - FilterListId = 2519L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/JohnyP36/Personal-List/main/Personal List (uBo).txt" - }, - new - { - Id = 2732L, - FilterListId = 2471L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/BPower0036/AdBlockFilters/-/raw/main/easydutch.txt" - }, - new - { - Id = 2733L, - FilterListId = 2520L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/BPower0036/AdBlockFilters/main/dynamic rules" - }, - new - { - Id = 2734L, - FilterListId = 2521L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/BPower0036/AdBlockFilters/main/my filters" - }, - new - { - Id = 2735L, - FilterListId = 2522L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://git.bubblev.org/bubblev/bubble-filter-lists/raw/branch/master/ads_and_trackers1.txt" - }, - new - { - Id = 2736L, - FilterListId = 2523L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://git.bubblev.org/bubblev/bubble-filter-lists/raw/branch/master/sites_us_news.txt" - }, - new - { - Id = 2737L, - FilterListId = 2524L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jamiemansfield/minecraft-hosts/master/lists/tracking.txt" - }, - new - { - Id = 2738L, - FilterListId = 2525L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://orca.pet/notonmyshift/hosts.txt" - }, - new - { - Id = 2739L, - FilterListId = 2526L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://orca.pet/notonmyshift/abp.txt" - }, - new - { - Id = 2740L, - FilterListId = 2527L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gist.githubusercontent.com/opus-x/3e673a9d5db2a214df05929a4eee6a57/raw" - }, - new - { - Id = 2741L, - FilterListId = 2528L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/dibdot/DoH-IP-blocklists/master/doh-domains.txt" - }, - new - { - Id = 2742L, - FilterListId = 2529L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AmnestyTech/investigations/master/2021-07-18_nso/domains.txt" - }, - new - { - Id = 2743L, - FilterListId = 2530L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://wp.owenthe.dev/fortnite.txt" - }, - new - { - Id = 2744L, - FilterListId = 2531L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://wp.owenthe.dev/redshell.txt" - }, - new - { - Id = 2745L, - FilterListId = 2532L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/allendema/noplaylist/main/NoPlayList.txt" - }, - new - { - Id = 2746L, - FilterListId = 2533L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiOwlHouseList.txt" - }, - new - { - Id = 2747L, - FilterListId = 2533L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/AntiOwlHouseList.txt" - }, - new - { - Id = 2748L, - FilterListId = 2534L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/Dandelion Sprout's and other adblocker lists' IPs.ipset" - }, - new - { - Id = 2749L, - FilterListId = 2534L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/Alternate versions Anti-Malware List/Dandelion Sprout's and other adblocker lists' IPs.ipset" - }, - new - { - Id = 2750L, - FilterListId = 301L, - Primariness = (short)4, - SegmentNumber = (short)0, - Url = "https://downloads.vivaldi.com/easylist/easylist-current.txt" - }, - new - { - Id = 2751L, - FilterListId = 2535L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/hadig/Focus-for-Youtube/master/focus4yt.txt" - }, - new - { - Id = 2752L, - FilterListId = 2537L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/iam-py-test/my_filters_001/main/antimalware.txt" - }, - new - { - Id = 2753L, - FilterListId = 2538L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/iam-py-test/my_filters_001/main/Alternative list formats/antimalware_hosts.txt" - }, - new - { - Id = 2754L, - FilterListId = 2536L, - Primariness = (short)0, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Arctic-Circle-System/Sketchy-Extension-and-Search-List/main/list.txt" - }, - new - { - Id = 2755L, - FilterListId = 2434L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://iam-py-test.github.io/mirrors/LegitimateURLShortener.txt" - }, - new - { - Id = 2756L, - FilterListId = 2537L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://iam-py-test.github.io/my_filters_001/antimalware.txt" - }, - new - { - Id = 2757L, - FilterListId = 2538L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://iam-py-test.github.io/my_filters_001/Alternative list formats/antimalware_hosts.txt" - }, - new - { - Id = 2758L, - FilterListId = 2539L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://ammnt.app/filter.txt" - }, - new - { - Id = 2759L, - FilterListId = 2540L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AmmoniteFilter/TrilobiteFilter/main/filter.txt" - }, - new - { - Id = 2760L, - FilterListId = 2541L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/iam-py-test/my_filters_001/main/Alternative list formats/antimalware_domains.txt" - }, - new - { - Id = 2761L, - FilterListId = 2541L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://iam-py-test.github.io/my_filters_001/Alternative list formats/antimalware_domains.txt" - }, - new - { - Id = 2762L, - FilterListId = 2542L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/AdguardFilters/master/AnnoyancesFilter/sections/subscriptions.txt" - }, - new - { - Id = 2763L, - FilterListId = 2543L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://pfblockerlists.smallbusinesstech.net/hackerlist.txt" - }, - new - { - Id = 2764L, - FilterListId = 2544L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://pfblockerlists.smallbusinesstech.net/spamlist.txt" - }, - new - { - Id = 2765L, - FilterListId = 2545L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nextdns/metadata/master/privacy/affiliate-tracking-domains" - }, - new - { - Id = 2766L, - FilterListId = 2546L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deep-bhatt/huawei-block-list/master/huawei-block-host.txt" - }, - new - { - Id = 2767L, - FilterListId = 2547L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/wesbos/burner-email-providers/master/emails.txt" - }, - new - { - Id = 2768L, - FilterListId = 2548L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://kriskintel.com/feeds/ktip_ransomware_feeds.txt" - }, - new - { - Id = 2769L, - FilterListId = 2549L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/brijrajparmar27/host-sources/master/Porn/hosts" - }, - new - { - Id = 2770L, - FilterListId = 2550L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Zelo72/adguard/main/whitelist.referral.adguard" - }, - new - { - Id = 2771L, - FilterListId = 2551L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://github.com/stamparm/maltrail/blob/master/trails/static/suspicious/i2p.txt" - }, - new - { - Id = 2772L, - FilterListId = 2552L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://github.com/stamparm/maltrail/blob/master/trails/static/suspicious/ipinfo.txt" - }, - new - { - Id = 2773L, - FilterListId = 2553L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://github.com/stamparm/maltrail/blob/master/trails/static/suspicious/parking_site.txt" - }, - new - { - Id = 2774L, - FilterListId = 2554L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/DeadServerGamePingList.txt" - }, - new - { - Id = 2775L, - FilterListId = 2554L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/DeadServerGamePingList.txt" - }, - new - { - Id = 2776L, - FilterListId = 2555L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/TabloidRemover-MastodonCategoryForImports.csv" - }, - new - { - Id = 2777L, - FilterListId = 2555L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/Sensitive lists/TabloidRemover-MastodonCategoryForImports.csv" - }, - new - { - Id = 2778L, - FilterListId = 2556L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/ClearURLs for uBo/clear_urls_uboified.txt" - }, - new - { - Id = 2779L, - FilterListId = 2556L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/ClearURLs for uBo/clear_urls_uboified.txt" - }, - new - { - Id = 2780L, - FilterListId = 2557L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/scafroglia93/blocklists/master/blocklists-malware-traffic.txt" - }, - new - { - Id = 2781L, - FilterListId = 2558L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Knuschberkeks/Knuschberblock/main/Knuschberblock.txt" - }, - new - { - Id = 2782L, - FilterListId = 2559L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/huzunluartemis/TurkishAdblockList/main/src/HostsList.txt" - }, - new - { - Id = 2783L, - FilterListId = 2560L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/huzunluartemis/TurkishAdblockList/main/src/ElementalList.txt" - }, - new - { - Id = 2784L, - FilterListId = 2561L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/huzunluartemis/TurkishAdblockList/main/src/BadIpList.txt" - }, - new - { - Id = 2785L, - FilterListId = 2562L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/furkun/AndroidSecurityHosts/main/hosts" - }, - new - { - Id = 2786L, - FilterListId = 2563L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/furkun/AndroidSecurityHosts/main/domains.txt" - }, - new - { - Id = 2787L, - FilterListId = 2556L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://codeberg.org/rusty-snake/firefox-config/src/branch/main/assets/uBlockOrigin:queryprune.txt" - }, - new - { - Id = 2788L, - FilterListId = 2564L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/PCCassets/main/plCDB.txt" - }, - new - { - Id = 2789L, - FilterListId = 2564L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.jsdelivr.net/gh/FiltersHeroes/PCCassets@main/plCDB.txt" - }, - new - { - Id = 2790L, - FilterListId = 2564L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://combinatronics.io/FiltersHeroes/PCCassets/main/plCDB.txt" - }, - new - { - Id = 2791L, - FilterListId = 2564L, - Primariness = (short)4, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gh/FiltersHeroes/PCCassets/main/plCDB.txt" - }, - new - { - Id = 2792L, - FilterListId = 2564L, - Primariness = (short)5, - SegmentNumber = (short)0, - Url = "https://filtersheroes.gitlab.io/AssetsMirror/plCDB.txt" - }, - new - { - Id = 2793L, - FilterListId = 2565L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/PCCassets/main/euCDB.txt" - }, - new - { - Id = 2794L, - FilterListId = 2565L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.jsdelivr.net/gh/FiltersHeroes/PCCassets@main/euCDB.txt" - }, - new - { - Id = 2795L, - FilterListId = 2565L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://combinatronics.io/FiltersHeroes/PCCassets/main/euCDB.txt" - }, - new - { - Id = 2796L, - FilterListId = 2565L, - Primariness = (short)4, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gh/FiltersHeroes/PCCassets/main/euCDB.txt" - }, - new - { - Id = 2797L, - FilterListId = 2565L, - Primariness = (short)5, - SegmentNumber = (short)0, - Url = "https://filtersheroes.gitlab.io/AssetsMirror/euCDB.txt" - }, - new - { - Id = 2798L, - FilterListId = 2471L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://combinatronics.io/BPower0036/AdBlockFilters/main/easydutch.txt" - }, - new - { - Id = 2799L, - FilterListId = 2471L, - Primariness = (short)4, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gh/BPower0036/AdBlockFilters/main/easydutch.txt" - }, - new - { - Id = 2800L, - FilterListId = 2471L, - Primariness = (short)5, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gl/BPower0036/AdBlockFilters/main/easydutch.txt" - }, - new - { - Id = 2801L, - FilterListId = 2471L, - Primariness = (short)6, - SegmentNumber = (short)0, - Url = "https://cdn.jsdelivr.net/gh/BPower0036/AdBlockFilters@main/easydutch.txt" - }, - new - { - Id = 2802L, - FilterListId = 2520L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/BPower0036/AdBlockFilters/-/raw/main/dynamic rules" - }, - new - { - Id = 2803L, - FilterListId = 2520L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://combinatronics.io/BPower0036/AdBlockfilters/main/dynamic rules" - }, - new - { - Id = 2804L, - FilterListId = 2520L, - Primariness = (short)4, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gh/BPower0036/AdBlockfilters/main/dynamic rules" - }, - new - { - Id = 2805L, - FilterListId = 2520L, - Primariness = (short)5, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gl/BPower0036/AdBlockFilters/main/dynamic rules" - }, - new - { - Id = 2806L, - FilterListId = 2520L, - Primariness = (short)6, - SegmentNumber = (short)0, - Url = "https://cdn.jsdelivr.net/gh/BPower0036/AdBlockfilters@main/dynamic rules" - }, - new - { - Id = 2807L, - FilterListId = 2521L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/BPower0036/AdBlockFilters/-/raw/main/my filters" - }, - new - { - Id = 2808L, - FilterListId = 2521L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://combinatronics.io/BPower0036/AdBlockfilters/main/my filters" - }, - new - { - Id = 2809L, - FilterListId = 2521L, - Primariness = (short)4, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gh/BPower0036/AdBlockfilters/main/my filters" - }, - new - { - Id = 2810L, - FilterListId = 2521L, - Primariness = (short)5, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gl/BPower0036/AdBlockFilters/main/my filters" - }, - new - { - Id = 2811L, - FilterListId = 2521L, - Primariness = (short)6, - SegmentNumber = (short)0, - Url = "https://cdn.jsdelivr.net/gh/BPower0036/AdBlockfilters@main/my filters" - }); - }); - modelBuilder.Entity("FilterLists.Directory.Infrastructure.Persistence.Queries.Entities.Fork", b => { b.Property("UpstreamFilterListId") @@ -87497,7 +66039,21473 @@ protected override void BuildTargetModel(ModelBuilder modelBuilder) .IsRequired() .HasConstraintName("fk_filter_lists_licenses_license_id"); + b.OwnsMany("FilterLists.Directory.Infrastructure.Persistence.Queries.Entities.FilterListViewUrl", "ViewUrls", b1 => + { + b1.Property("FilterListId") + .HasColumnType("bigint") + .HasColumnName("filter_list_id"); + + b1.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("bigint") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b1.Property("Id")); + + b1.Property("Primariness") + .ValueGeneratedOnAdd() + .HasColumnType("smallint") + .HasDefaultValue((short)1) + .HasColumnName("primariness"); + + b1.Property("SegmentNumber") + .ValueGeneratedOnAdd() + .HasColumnType("smallint") + .HasDefaultValue((short)1) + .HasColumnName("segment_number"); + + b1.Property("Url") + .IsRequired() + .HasColumnType("text") + .HasColumnName("url"); + + b1.HasKey("FilterListId", "Id") + .HasName("pk_filter_list_view_urls"); + + b1.HasIndex("FilterListId", "SegmentNumber", "Primariness") + .IsUnique() + .HasDatabaseName("ix_filter_list_view_urls_filter_list_id_segment_number_primari"); + + b1.ToTable("filter_list_view_urls", (string)null); + + b1.WithOwner("FilterList") + .HasForeignKey("FilterListId") + .HasConstraintName("fk_filter_list_view_urls_filter_lists_filter_list_id"); + + b1.Navigation("FilterList"); + + b1.HasData( + new + { + FilterListId = 1L, + Id = 1L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-mob.txt" + }, + new + { + FilterListId = 2L, + Id = 2L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/B-Con/mute/master/mute.txt" + }, + new + { + FilterListId = 3L, + Id = 3L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://adblock.mahakala.is/" + }, + new + { + FilterListId = 4L, + Id = 4L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/michaeltrimm/hosts-blocking/master/_hosts.txt" + }, + new + { + FilterListId = 4L, + Id = 5L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/michaeltrimm/hosts-blocking/master/_hosts.txt" + }, + new + { + FilterListId = 4L, + Id = 6L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/michaeltrimm/hosts-blocking/master/_hosts.txt" + }, + new + { + FilterListId = 5L, + Id = 7L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hg.adblockplus.org/facebookfilters/file/tip/message_seen_remover_for_facebook.txt" + }, + new + { + FilterListId = 6L, + Id = 8L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mayve/private-adblock-filters/master/Adblock_List.txt" + }, + new + { + FilterListId = 6L, + Id = 9L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/mayve/private-adblock-filters/master/Adblock_List.txt" + }, + new + { + FilterListId = 6L, + Id = 10L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/mayve/private-adblock-filters/master/Adblock_List.txt" + }, + new + { + FilterListId = 10L, + Id = 11L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.malwaredomainlist.com/hostslist/hosts.txt" + }, + new + { + FilterListId = 11L, + Id = 12L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/liste_fr+easylist.txt" + }, + new + { + FilterListId = 12L, + Id = 13L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/liste_fr.txt" + }, + new + { + FilterListId = 13L, + Id = 14L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/liste_ar+liste_fr+easylist.txt" + }, + new + { + FilterListId = 14L, + Id = 15L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/Liste_AR.txt" + }, + new + { + FilterListId = 16L, + Id = 16L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/List-KR/List-KR/master/filter.txt" + }, + new + { + FilterListId = 17L, + Id = 17L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://winhelp2002.mvps.org/hosts.txt" + }, + new + { + FilterListId = 17L, + Id = 18L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/data/mvps.org/hosts" + }, + new + { + FilterListId = 17L, + Id = 19L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/data/mvps.org/hosts" + }, + new + { + FilterListId = 18L, + Id = 20L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/taylr/linkedinsanity/master/linkedinsanity.txt" + }, + new + { + FilterListId = 18L, + Id = 21L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/taylr/linkedinsanity/master/linkedinsanity.txt" + }, + new + { + FilterListId = 18L, + Id = 22L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/taylr/linkedinsanity/master/linkedinsanity.txt" + }, + new + { + FilterListId = 19L, + Id = 23L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/hoshsadiq/adblock-nocoin-list/master/nocoin.txt" + }, + new + { + FilterListId = 19L, + Id = 24L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/hoshsadiq/adblock-nocoin-list/master/nocoin.txt" + }, + new + { + FilterListId = 19L, + Id = 25L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/hoshsadiq/adblock-nocoin-list/master/nocoin.txt" + }, + new + { + FilterListId = 20L, + Id = 26L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianList.txt" + }, + new + { + FilterListId = 20L, + Id = 27L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianList.txt" + }, + new + { + FilterListId = 27L, + Id = 28L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/metaphoricgiraffe/tracking-filters/master/trackingfilters.txt" + }, + new + { + FilterListId = 27L, + Id = 29L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/metaphoricgiraffe/tracking-filters/master/trackingfilters.txt" + }, + new + { + FilterListId = 27L, + Id = 30L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/metaphoricgiraffe/tracking-filters/master/trackingfilters.txt" + }, + new + { + FilterListId = 28L, + Id = 31L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/liamja/Prebake/master/quiet.txt" + }, + new + { + FilterListId = 28L, + Id = 32L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/liamja/Prebake/master/quiet.txt" + }, + new + { + FilterListId = 28L, + Id = 33L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/liamja/Prebake/master/quiet.txt" + }, + new + { + FilterListId = 29L, + Id = 34L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/liamja/Prebake/master/obtrusive.txt" + }, + new + { + FilterListId = 29L, + Id = 35L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/liamja/Prebake/master/obtrusive.txt" + }, + new + { + FilterListId = 29L, + Id = 36L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/liamja/Prebake/master/obtrusive.txt" + }, + new + { + FilterListId = 30L, + Id = 37L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PPB.txt" + }, + new + { + FilterListId = 30L, + Id = 38L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/FiltersHeroes/PolishAnnoyanceFilters/master/PPB.txt" + }, + new + { + FilterListId = 30L, + Id = 39L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/FiltersHeroes/PolishAnnoyanceFilters/master/PPB.txt" + }, + new + { + FilterListId = 31L, + Id = 40L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.niecko.pl/adblock/adblock.txt" + }, + new + { + FilterListId = 32L, + Id = 41L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=adblockplus&showintro=1&mimetype=plaintext" + }, + new + { + FilterListId = 33L, + Id = 42L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/LordBadmintonofYorkshire/Overlay-Blocker/master/blocklist.txt" + }, + new + { + FilterListId = 33L, + Id = 43L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/LordBadmintonofYorkshire/Overlay-Blocker/master/blocklist.txt" + }, + new + { + FilterListId = 33L, + Id = 44L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/LordBadmintonofYorkshire/Overlay-Blocker/master/blocklist.txt" + }, + new + { + FilterListId = 34L, + Id = 45L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://openphish.com/feed.txt" + }, + new + { + FilterListId = 36L, + Id = 46L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/genediazjr/nopelist/master/nopelist.txt" + }, + new + { + FilterListId = 36L, + Id = 47L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/genediazjr/nopelist/master/nopelist.txt" + }, + new + { + FilterListId = 36L, + Id = 48L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/genediazjr/nopelist/master/nopelist.txt" + }, + new + { + FilterListId = 38L, + Id = 49L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Rpsl/adblock-leadgenerator-list/master/list/list.txt" + }, + new + { + FilterListId = 38L, + Id = 50L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/Rpsl/adblock-leadgenerator-list/master/list/list.txt" + }, + new + { + FilterListId = 38L, + Id = 51L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/Rpsl/adblock-leadgenerator-list/master/list/list.txt" + }, + new + { + FilterListId = 39L, + Id = 52L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://notabug.org/latvian-list/adblock-latvian/raw/master/lists/latvian-list.txt" + }, + new + { + FilterListId = 47L, + Id = 53L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/NanoMeow/UltimateMirror/master/archive/hphosts.txt" + }, + new + { + FilterListId = 47L, + Id = 54L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/static/HPHosts/HostsAdServers.txt" + }, + new + { + FilterListId = 49L, + Id = 55L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://sites.google.com/site/hosts2ch/ja?attredirects=0" + }, + new + { + FilterListId = 50L, + Id = 56L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/HexxiumCreations/threat-list/gh-pages/hexxiumthreatlist.txt" + }, + new + { + FilterListId = 50L, + Id = 57L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/HexxiumCreations/threat-list/gh-pages/hexxiumthreatlist.txt" + }, + new + { + FilterListId = 50L, + Id = 58L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/HexxiumCreations/threat-list/gh-pages/hexxiumthreatlist.txt" + }, + new + { + FilterListId = 51L, + Id = 59L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kargig/greek-adblockplus-filter/master/void-gr-filters.txt" + }, + new + { + FilterListId = 51L, + Id = 60L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/kargig/greek-adblockplus-filter/master/void-gr-filters.txt" + }, + new + { + FilterListId = 51L, + Id = 61L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/kargig/greek-adblockplus-filter/master/void-gr-filters.txt" + }, + new + { + FilterListId = 52L, + Id = 62L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gnuzilla.gnu.org/filters/blacklist.txt" + }, + new + { + FilterListId = 53L, + Id = 63L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/gmbkslist (Hosts).txt" + }, + new + { + FilterListId = 53L, + Id = 64L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/DandelionSprout/adfilt/master/AncientLibrary/gmbkslist (Hosts).txt" + }, + new + { + FilterListId = 54L, + Id = 65L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://web.archive.org/web/20160221140034if_/http://adblock.gjtech.net/?format=unix-hosts" + }, + new + { + FilterListId = 56L, + Id = 66L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/latvianlist+easylist.txt" + }, + new + { + FilterListId = 59L, + Id = 67L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/gfmaster/adblock-korea-contrib/master/filter.txt" + }, + new + { + FilterListId = 59L, + Id = 68L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/gfmaster/adblock-korea-contrib/master/filter.txt" + }, + new + { + FilterListId = 59L, + Id = 69L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/gfmaster/adblock-korea-contrib/master/filter.txt" + }, + new + { + FilterListId = 60L, + Id = 70L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/KADhosts/master/KADhosts.txt" + }, + new + { + FilterListId = 60L, + Id = 71L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/FiltersHeroes/KADhosts/master/KADhosts.txt" + }, + new + { + FilterListId = 60L, + Id = 72L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/FiltersHeroes/KADhosts/master/KADhosts.txt" + }, + new + { + FilterListId = 61L, + Id = 73L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/KAD/master/KAD.txt" + }, + new + { + FilterListId = 61L, + Id = 74L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/FiltersHeroes/KAD/master/KAD.txt" + }, + new + { + FilterListId = 61L, + Id = 75L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/FiltersHeroes/KAD/master/KAD.txt" + }, + new + { + FilterListId = 62L, + Id = 76L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://qme.mydns.jp/data/AdblockV2.txt" + }, + new + { + FilterListId = 63L, + Id = 77L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://qme.mydns.jp/data/Adblock.txt" + }, + new + { + FilterListId = 64L, + Id = 78L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/lewisje/jansal/master/adblock/hostslt" + }, + new + { + FilterListId = 64L, + Id = 79L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/lewisje/jansal/master/adblock/hostslt" + }, + new + { + FilterListId = 64L, + Id = 80L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitcdn.link/repo/lewisje/jansal/master/adblock/hostslt" + }, + new + { + FilterListId = 65L, + Id = 81L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/lewisje/jansal/master/adblock/hosts" + }, + new + { + FilterListId = 65L, + Id = 82L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/lewisje/jansal/master/adblock/hosts" + }, + new + { + FilterListId = 65L, + Id = 83L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitcdn.link/repo/lewisje/jansal/master/adblock/hosts" + }, + new + { + FilterListId = 66L, + Id = 84L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.jabcreations.com/downloads/adblock-filters.php" + }, + new + { + FilterListId = 67L, + Id = 85L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/piperun/iploggerfilter/master/filterlist" + }, + new + { + FilterListId = 67L, + Id = 86L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/piperun/iploggerfilter/master/filterlist" + }, + new + { + FilterListId = 67L, + Id = 87L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitcdn.link/repo/piperun/iploggerfilter/master/filterlist" + }, + new + { + FilterListId = 68L, + Id = 88L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ilyakatz/adblock_filters/master/inpage_popups.txt" + }, + new + { + FilterListId = 68L, + Id = 89L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/ilyakatz/adblock_filters/master/inpage_popups.txt" + }, + new + { + FilterListId = 68L, + Id = 90L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/ilyakatz/adblock_filters/master/inpage_popups.txt" + }, + new + { + FilterListId = 69L, + Id = 91L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://adblock.gardar.net/is.abp.txt" + }, + new + { + FilterListId = 70L, + Id = 92L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Rudloff/adblock-imokwithcookies/master/filters.txt" + }, + new + { + FilterListId = 70L, + Id = 93L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/Rudloff/adblock-imokwithcookies/master/filters.txt" + }, + new + { + FilterListId = 70L, + Id = 94L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/Rudloff/adblock-imokwithcookies/master/filters.txt" + }, + new + { + FilterListId = 71L, + Id = 95L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.i-dont-care-about-cookies.eu/abp/" + }, + new + { + FilterListId = 72L, + Id = 96L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/hufilter/hufilter/master/hufilter.txt" + }, + new + { + FilterListId = 72L, + Id = 97L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://repo.or.cz/Adblock-list-backups-hufilter.git/blob_plain/refs/heads/master:/hufilter.txt" + }, + new + { + FilterListId = 72L, + Id = 98L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/hufilter/hufilter/master/hufilter.txt" + }, + new + { + FilterListId = 78L, + Id = 99L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts" + }, + new + { + FilterListId = 78L, + Id = 100L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://sbc.io/hosts/alternates/gambling-porn/hosts" + }, + new + { + FilterListId = 78L, + Id = 101L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/gambling-porn/hosts" + }, + new + { + FilterListId = 79L, + Id = 102L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts" + }, + new + { + FilterListId = 79L, + Id = 103L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://sbc.io/hosts/alternates/gambling/hosts" + }, + new + { + FilterListId = 79L, + Id = 104L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/gambling/hosts" + }, + new + { + FilterListId = 80L, + Id = 105L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts" + }, + new + { + FilterListId = 80L, + Id = 106L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://sbc.io/hosts/hosts" + }, + new + { + FilterListId = 80L, + Id = 107L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/hosts" + }, + new + { + FilterListId = 81L, + Id = 108L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/UncheckyAds/hosts" + }, + new + { + FilterListId = 81L, + Id = 109L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/data/UncheckyAds/hosts" + }, + new + { + FilterListId = 81L, + Id = 110L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/data/UncheckyAds/hosts" + }, + new + { + FilterListId = 82L, + Id = 111L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/uBlock-user/uBO-Personal-Filters/master/uPF.txt" + }, + new + { + FilterListId = 82L, + Id = 112L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/uBlock-user/uBO-Personal-Filters/master/uPF.txt" + }, + new + { + FilterListId = 82L, + Id = 113L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/uBlock-user/uBO-Personal-Filters/master/uPF.txt" + }, + new + { + FilterListId = 83L, + Id = 114L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/NanoAdblocker/NanoFilters/master/NanoMirror/NanoDefender.txt" + }, + new + { + FilterListId = 83L, + Id = 115L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/NanoAdblocker/NanoFilters/master/NanoMirror/NanoDefender.txt" + }, + new + { + FilterListId = 84L, + Id = 116L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock_ublock.txt" + }, + new + { + FilterListId = 84L, + Id = 117L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock_ublock.txt" + }, + new + { + FilterListId = 84L, + Id = 118L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock_ublock.txt" + }, + new + { + FilterListId = 85L, + Id = 119L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/IDKwhattoputhere/uBlock-Filters-Plus/master/uBlock-Filters-Plus.txt" + }, + new + { + FilterListId = 85L, + Id = 120L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/IDKwhattoputhere/uBlock-Filters-Plus/master/uBlock-Filters-Plus.txt" + }, + new + { + FilterListId = 85L, + Id = 121L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/IDKwhattoputhere/uBlock-Filters-Plus/master/uBlock-Filters-Plus.txt" + }, + new + { + FilterListId = 86L, + Id = 122L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/byaka/ublock-antiskimming-list/master/build/data.txt" + }, + new + { + FilterListId = 86L, + Id = 123L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/byaka/ublock-antiskimming-list/master/build/data.txt" + }, + new + { + FilterListId = 86L, + Id = 124L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/byaka/ublock-antiskimming-list/master/build/data.txt" + }, + new + { + FilterListId = 87L, + Id = 125L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/unbreak.txt" + }, + new + { + FilterListId = 87L, + Id = 126L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/uBlockOrigin/uAssets/master/filters/unbreak.txt" + }, + new + { + FilterListId = 87L, + Id = 127L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/uBlockOrigin/uAssets/master/filters/unbreak.txt" + }, + new + { + FilterListId = 88L, + Id = 128L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/privacy.txt" + }, + new + { + FilterListId = 88L, + Id = 129L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/uBlockOrigin/uAssets/master/filters/privacy.txt" + }, + new + { + FilterListId = 88L, + Id = 130L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/uBlockOrigin/uAssets/master/filters/privacy.txt" + }, + new + { + FilterListId = 89L, + Id = 131L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/filters.txt" + }, + new + { + FilterListId = 89L, + Id = 132L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/uBlockOrigin/uAssets/master/filters/filters.txt" + }, + new + { + FilterListId = 89L, + Id = 133L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/uBlockOrigin/uAssets/master/filters/filters.txt" + }, + new + { + FilterListId = 91L, + Id = 137L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/badware.txt" + }, + new + { + FilterListId = 91L, + Id = 138L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/uBlockOrigin/uAssets/master/filters/badware.txt" + }, + new + { + FilterListId = 91L, + Id = 139L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/uBlockOrigin/uAssets/master/filters/badware.txt" + }, + new + { + FilterListId = 93L, + Id = 140L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts" + }, + new + { + FilterListId = 93L, + Id = 141L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://sbc.io/hosts/alternates/gambling-porn-social/hosts" + }, + new + { + FilterListId = 93L, + Id = 142L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/gambling-porn-social/hosts" + }, + new + { + FilterListId = 94L, + Id = 143L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.topcashback.com/Misc/AdBlockWhiteList.aspx" + }, + new + { + FilterListId = 95L, + Id = 144L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts" + }, + new + { + FilterListId = 95L, + Id = 145L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://sbc.io/hosts/alternates/gambling-social/hosts" + }, + new + { + FilterListId = 95L, + Id = 146L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/gambling-social/hosts" + }, + new + { + FilterListId = 96L, + Id = 147L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts" + }, + new + { + FilterListId = 96L, + Id = 148L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://sbc.io/hosts/alternates/porn-social/hosts" + }, + new + { + FilterListId = 96L, + Id = 149L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/porn-social/hosts" + }, + new + { + FilterListId = 97L, + Id = 151L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hg.adblockplus.org/youtubefilters/raw-file/default/yt_annoyances_full.txt" + }, + new + { + FilterListId = 98L, + Id = 153L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hg.adblockplus.org/youtubefilters/raw-file/default/yt_annoyances_other.txt" + }, + new + { + FilterListId = 99L, + Id = 154L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/yous/YousList/master/youslist.txt" + }, + new + { + FilterListId = 99L, + Id = 155L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/yous/YousList/master/youslist.txt" + }, + new + { + FilterListId = 99L, + Id = 156L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/yous/YousList/master/youslist.txt" + }, + new + { + FilterListId = 100L, + Id = 157L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/wiltteri/subscriptions/master/wiltteri-reborn.txt" + }, + new + { + FilterListId = 100L, + Id = 158L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/wiltteri/subscriptions/master/wiltteri-reborn.txt" + }, + new + { + FilterListId = 100L, + Id = 159L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/wiltteri/subscriptions/master/wiltteri-reborn.txt" + }, + new + { + FilterListId = 101L, + Id = 160L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/wiltteri/subscriptions/master/wiltteri.txt" + }, + new + { + FilterListId = 101L, + Id = 161L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/wiltteri/subscriptions/master/wiltteri.txt" + }, + new + { + FilterListId = 101L, + Id = 162L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/wiltteri/subscriptions/master/wiltteri.txt" + }, + new + { + FilterListId = 102L, + Id = 163L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/ultralist.txt" + }, + new + { + FilterListId = 102L, + Id = 164L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/yourduskquibbles/webannoyances/master/ultralist.txt" + }, + new + { + FilterListId = 102L, + Id = 165L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/yourduskquibbles/webannoyances/master/ultralist.txt" + }, + new + { + FilterListId = 103L, + Id = 166L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts" + }, + new + { + FilterListId = 103L, + Id = 167L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts" + }, + new + { + FilterListId = 103L, + Id = 168L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-gambling-porn-social/hosts" + }, + new + { + FilterListId = 104L, + Id = 169L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts" + }, + new + { + FilterListId = 104L, + Id = 170L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://sbc.io/hosts/alternates/fakenews-porn-social/hosts" + }, + new + { + FilterListId = 104L, + Id = 171L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-porn-social/hosts" + }, + new + { + FilterListId = 105L, + Id = 172L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts" + }, + new + { + FilterListId = 105L, + Id = 173L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts" + }, + new + { + FilterListId = 105L, + Id = 174L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-gambling-social/hosts" + }, + new + { + FilterListId = 106L, + Id = 175L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts" + }, + new + { + FilterListId = 106L, + Id = 176L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts" + }, + new + { + FilterListId = 106L, + Id = 177L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-gambling-porn/hosts" + }, + new + { + FilterListId = 107L, + Id = 178L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts" + }, + new + { + FilterListId = 107L, + Id = 179L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://sbc.io/hosts/alternates/fakenews-social/hosts" + }, + new + { + FilterListId = 107L, + Id = 180L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-social/hosts" + }, + new + { + FilterListId = 108L, + Id = 181L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts" + }, + new + { + FilterListId = 108L, + Id = 182L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://sbc.io/hosts/alternates/fakenews-porn/hosts" + }, + new + { + FilterListId = 108L, + Id = 183L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-porn/hosts" + }, + new + { + FilterListId = 109L, + Id = 184L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts" + }, + new + { + FilterListId = 109L, + Id = 185L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://sbc.io/hosts/alternates/fakenews-gambling/hosts" + }, + new + { + FilterListId = 109L, + Id = 186L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-gambling/hosts" + }, + new + { + FilterListId = 110L, + Id = 187L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts" + }, + new + { + FilterListId = 110L, + Id = 188L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://sbc.io/hosts/alternates/fakenews/hosts" + }, + new + { + FilterListId = 110L, + Id = 189L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews/hosts" + }, + new + { + FilterListId = 111L, + Id = 190L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts" + }, + new + { + FilterListId = 111L, + Id = 191L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://sbc.io/hosts/alternates/social/hosts" + }, + new + { + FilterListId = 111L, + Id = 192L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/social/hosts" + }, + new + { + FilterListId = 112L, + Id = 193L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts" + }, + new + { + FilterListId = 112L, + Id = 194L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://sbc.io/hosts/alternates/porn/hosts" + }, + new + { + FilterListId = 112L, + Id = 195L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/porn/hosts" + }, + new + { + FilterListId = 113L, + Id = 196L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tofukko/filter/master/Adblock_Plus_list.txt" + }, + new + { + FilterListId = 114L, + Id = 197L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/thoughtconverge/abf/master/abf.txt" + }, + new + { + FilterListId = 114L, + Id = 198L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/thoughtconverge/abf/master/abf.txt" + }, + new + { + FilterListId = 114L, + Id = 199L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/thoughtconverge/abf/master/abf.txt" + }, + new + { + FilterListId = 115L, + Id = 200L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hostsfile.mine.nu/hosts0.txt" + }, + new + { + FilterListId = 116L, + Id = 201L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.zoso.ro/pages/rolist2.txt" + }, + new + { + FilterListId = 117L, + Id = 202L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/rolist+easylist.txt" + }, + new + { + FilterListId = 118L, + Id = 203L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.zoso.ro/pages/rolist.txt" + }, + new + { + FilterListId = 119L, + Id = 204L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://road.adblock.ro/lista.txt" + }, + new + { + FilterListId = 119L, + Id = 205L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tcptomato/ROad-Block/master/road-block-filters-light.txt" + }, + new + { + FilterListId = 119L, + Id = 206L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/tcptomato/ROad-Block/master/road-block-filters-light.txt" + }, + new + { + FilterListId = 131L, + Id = 207L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/advblock.txt" + }, + new + { + FilterListId = 132L, + Id = 208L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://denis-ovs.narod.ru/adblock.txt" + }, + new + { + FilterListId = 133L, + Id = 209L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/ruadlist+easylist.txt" + }, + new + { + FilterListId = 134L, + Id = 210L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/bitblock.txt" + }, + new + { + FilterListId = 135L, + Id = 211L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hostsfile.mine.nu/downloads/adblock.txt" + }, + new + { + FilterListId = 136L, + Id = 212L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/betterwebleon/slovenian-list/master/filters.txt" + }, + new + { + FilterListId = 136L, + Id = 213L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/betterwebleon/slovenian-list/master/filters.txt" + }, + new + { + FilterListId = 136L, + Id = 214L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/betterwebleon/slovenian-list/master/filters.txt" + }, + new + { + FilterListId = 137L, + Id = 215L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/data/StevenBlack/hosts" + }, + new + { + FilterListId = 137L, + Id = 216L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/StevenBlack/hosts/master/data/StevenBlack/hosts" + }, + new + { + FilterListId = 137L, + Id = 217L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/data/StevenBlack/hosts" + }, + new + { + FilterListId = 139L, + Id = 221L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Spam404/lists/master/main-blacklist.txt" + }, + new + { + FilterListId = 139L, + Id = 222L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/Spam404/lists/master/main-blacklist.txt" + }, + new + { + FilterListId = 139L, + Id = 223L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/Spam404/lists/master/main-blacklist.txt" + }, + new + { + FilterListId = 140L, + Id = 224L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Spam404/lists/master/adblock-list.txt" + }, + new + { + FilterListId = 140L, + Id = 225L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/Spam404/lists/master/adblock-list.txt" + }, + new + { + FilterListId = 140L, + Id = 226L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/Spam404/lists/master/adblock-list.txt" + }, + new + { + FilterListId = 141L, + Id = 227L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://shopping.mileageplus.com/adBlockWhitelist.php" + }, + new + { + FilterListId = 142L, + Id = 228L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://web.archive.org/web/20160221140104if_/http://adblock.gjtech.net/?format=adblock-plus" + }, + new + { + FilterListId = 143L, + Id = 229L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://rapidrewardsshopping.southwest.com/adBlockWhitelist.php" + }, + new + { + FilterListId = 144L, + Id = 230L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.aadvantageeshopping.com/adBlockWhitelist.php" + }, + new + { + FilterListId = 145L, + Id = 231L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.mileageplanshopping.com/adBlockWhitelist.php" + }, + new + { + FilterListId = 146L, + Id = 232L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://web.archive.org/web/20121106002043if_/http://www.schuzak.jp:80/other/abp.conf" + }, + new + { + FilterListId = 147L, + Id = 233L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://adblock.dk/block.csv" + }, + new + { + FilterListId = 147L, + Id = 234L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://adblock.schack.dk/block.txt" + }, + new + { + FilterListId = 150L, + Id = 235L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/cntblock.txt" + }, + new + { + FilterListId = 151L, + Id = 236L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.barclaycardrewardsboost.com/adBlockWhitelist.php" + }, + new + { + FilterListId = 152L, + Id = 237L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://pastebin.com/raw/r9a5WrZa" + }, + new + { + FilterListId = 155L, + Id = 238L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/chromium/filters/10.txt" + }, + new + { + FilterListId = 156L, + Id = 239L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/chromium/filters/13.txt" + }, + new + { + FilterListId = 157L, + Id = 240L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/chromium/filters/3.txt" + }, + new + { + FilterListId = 158L, + Id = 241L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/chromium/filters/9.txt" + }, + new + { + FilterListId = 159L, + Id = 242L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/chromium/filters/4.txt" + }, + new + { + FilterListId = 160L, + Id = 243L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/mac/filters/12.txt" + }, + new + { + FilterListId = 161L, + Id = 244L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/chromium/filters/1.txt" + }, + new + { + FilterListId = 162L, + Id = 245L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/android/filters/11.txt" + }, + new + { + FilterListId = 163L, + Id = 246L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/chromium/filters/7.txt" + }, + new + { + FilterListId = 164L, + Id = 247L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/chromium/filters/6.txt" + }, + new + { + FilterListId = 165L, + Id = 248L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/chromium/filters/5.txt" + }, + new + { + FilterListId = 166L, + Id = 249L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/chromium/filters/2.txt" + }, + new + { + FilterListId = 167L, + Id = 250L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/chromium/filters/8.txt" + }, + new + { + FilterListId = 168L, + Id = 251L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/windows/filters/15.txt" + }, + new + { + FilterListId = 169L, + Id = 252L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/chromium/filters/14.txt" + }, + new + { + FilterListId = 170L, + Id = 253L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hg.adblockplus.org/adwarefilters/raw-file/tip/adwarefilters.txt" + }, + new + { + FilterListId = 171L, + Id = 254L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://dl.dropboxusercontent.com/s/1ybzw9lb7m1qiyl/AAs.txt" + }, + new + { + FilterListId = 173L, + Id = 255L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://rlwpx.free.fr/WPFF/hmis.7z" + }, + new + { + FilterListId = 175L, + Id = 256L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/r4vi/block-the-eu-cookie-shit-list/master/filterlist.txt" + }, + new + { + FilterListId = 175L, + Id = 257L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/r4vi/block-the-eu-cookie-shit-list/master/filterlist.txt" + }, + new + { + FilterListId = 175L, + Id = 258L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/r4vi/block-the-eu-cookie-shit-list/master/filterlist.txt" + }, + new + { + FilterListId = 176L, + Id = 259L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/anarki999/Adblock-List-Archive/master/Better.fyiTrackersBlocklist.txt" + }, + new + { + FilterListId = 176L, + Id = 260L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/anarki999/Adblock-List-Archive/master/Better.fyiTrackersBlocklist.txt" + }, + new + { + FilterListId = 176L, + Id = 261L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/anarki999/Adblock-List-Archive/master/Better.fyiTrackersBlocklist.txt" + }, + new + { + FilterListId = 177L, + Id = 262L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://paulgb.github.io/BarbBlock/blacklists/hosts-file.txt" + }, + new + { + FilterListId = 178L, + Id = 263L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/rebelion76/bankiru_plus_adblock_list/master/bankiru_plus.txt" + }, + new + { + FilterListId = 178L, + Id = 264L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/rebelion76/bankiru_plus_adblock_list/master/bankiru_plus.txt" + }, + new + { + FilterListId = 178L, + Id = 265L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/rebelion76/bankiru_plus_adblock_list/master/bankiru_plus.txt" + }, + new + { + FilterListId = 179L, + Id = 266L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.hostsfile.org/Downloads/hosts.txt" + }, + new + { + FilterListId = 181L, + Id = 267L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://git.sourceforge.jp/view?p=ayucat-list/ayucat-list.git;a=blob_plain;f=ayucat-list.txt;hb=b254c74c132832a3ade7b9d42c2ef8d3dd59fdb9" + }, + new + { + FilterListId = 181L, + Id = 268L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Ayucat Powerful List.txt" + }, + new + { + FilterListId = 183L, + Id = 269L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yhonay/antipopads/master/popads.txt" + }, + new + { + FilterListId = 183L, + Id = 270L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/Yhonay/antipopads/master/popads.txt" + }, + new + { + FilterListId = 183L, + Id = 271L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/Yhonay/antipopads/master/popads.txt" + }, + new + { + FilterListId = 184L, + Id = 272L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/fanboy-antifacebook.txt" + }, + new + { + FilterListId = 185L, + Id = 273L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://rlwpx.free.fr/WPFF/hblc.7z" + }, + new + { + FilterListId = 186L, + Id = 274L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://rlwpx.free.fr/WPFF/hrsk.7z" + }, + new + { + FilterListId = 186L, + Id = 275L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/Airelle-hrsk.txt" + }, + new + { + FilterListId = 187L, + Id = 276L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://rlwpx.free.fr/WPFF/htrc.7z" + }, + new + { + FilterListId = 187L, + Id = 277L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/Airelle-trc.txt" + }, + new + { + FilterListId = 188L, + Id = 278L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://rlwpx.free.fr/WPFF/hsex.7z" + }, + new + { + FilterListId = 189L, + Id = 279L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://rlwpx.free.fr/WPFF/hpub.7z" + }, + new + { + FilterListId = 190L, + Id = 280L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.Spam/hosts" + }, + new + { + FilterListId = 190L, + Id = 281L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/FadeMind/hosts.extras/master/add.Spam/hosts" + }, + new + { + FilterListId = 190L, + Id = 282L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitcdn.link/repo/FadeMind/hosts.extras/master/add.Spam/hosts" + }, + new + { + FilterListId = 191L, + Id = 283L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.Risk/hosts" + }, + new + { + FilterListId = 191L, + Id = 284L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/FadeMind/hosts.extras/master/add.Risk/hosts" + }, + new + { + FilterListId = 191L, + Id = 285L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitcdn.link/repo/FadeMind/hosts.extras/master/add.Risk/hosts" + }, + new + { + FilterListId = 192L, + Id = 286L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.Dead/hosts" + }, + new + { + FilterListId = 192L, + Id = 287L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/FadeMind/hosts.extras/master/add.Dead/hosts" + }, + new + { + FilterListId = 192L, + Id = 288L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitcdn.link/repo/FadeMind/hosts.extras/master/add.Dead/hosts" + }, + new + { + FilterListId = 197L, + Id = 289L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/abpindo+easylist.txt" + }, + new + { + FilterListId = 198L, + Id = 290L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ABPindo/indonesianadblockrules/master/subscriptions/abpindo.txt" + }, + new + { + FilterListId = 198L, + Id = 291L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/heradhis/indonesianadblockrules/master/subscriptions/abpindo.txt" + }, + new + { + FilterListId = 198L, + Id = 292L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/ABPindo/indonesianadblockrules/master/subscriptions/abpindo.txt" + }, + new + { + FilterListId = 199L, + Id = 293L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/gioxx/xfiles/master/facebook.txt" + }, + new + { + FilterListId = 199L, + Id = 294L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/gioxx/xfiles/master/facebook.txt" + }, + new + { + FilterListId = 199L, + Id = 295L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/gioxx/xfiles/master/facebook.txt" + }, + new + { + FilterListId = 200L, + Id = 296L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/gioxx/xfiles/master/siteblock.txt" + }, + new + { + FilterListId = 200L, + Id = 297L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/gioxx/xfiles/master/siteblock.txt" + }, + new + { + FilterListId = 200L, + Id = 298L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/gioxx/xfiles/master/siteblock.txt" + }, + new + { + FilterListId = 201L, + Id = 299L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/gioxx/xfiles/master/filtri.txt" + }, + new + { + FilterListId = 201L, + Id = 300L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/gioxx/xfiles/master/filtri.txt" + }, + new + { + FilterListId = 201L, + Id = 301L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/gioxx/xfiles/master/filtri.txt" + }, + new + { + FilterListId = 202L, + Id = 302L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/k2jp/abp-japanese-filters/master/abpjf_paranoid.txt" + }, + new + { + FilterListId = 202L, + Id = 303L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/k2jp/abp-japanese-filters/master/abpjf_paranoid.txt" + }, + new + { + FilterListId = 202L, + Id = 304L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/k2jp/abp-japanese-filters/master/abpjf_paranoid.txt" + }, + new + { + FilterListId = 203L, + Id = 305L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/k2jp/abp-japanese-filters/master/abpjf.txt" + }, + new + { + FilterListId = 203L, + Id = 306L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/k2jp/abp-japanese-filters/master/abpjf.txt" + }, + new + { + FilterListId = 203L, + Id = 307L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/k2jp/abp-japanese-filters/master/abpjf.txt" + }, + new + { + FilterListId = 204L, + Id = 308L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/k2jp/abp-japanese-filters/master/abpjf_element_hiding.txt" + }, + new + { + FilterListId = 204L, + Id = 309L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/k2jp/abp-japanese-filters/master/abpjf_element_hiding.txt" + }, + new + { + FilterListId = 204L, + Id = 310L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/k2jp/abp-japanese-filters/master/abpjf_element_hiding.txt" + }, + new + { + FilterListId = 205L, + Id = 311L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/k2jp/abp-japanese-filters/master/abpjf_3rd_party_sns.txt" + }, + new + { + FilterListId = 205L, + Id = 312L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/k2jp/abp-japanese-filters/master/abpjf_3rd_party_sns.txt" + }, + new + { + FilterListId = 205L, + Id = 313L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/k2jp/abp-japanese-filters/master/abpjf_3rd_party_sns.txt" + }, + new + { + FilterListId = 206L, + Id = 314L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/abpvn/abpvn/master/filter/abpvn.txt" + }, + new + { + FilterListId = 206L, + Id = 315L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/abpvn/abpvn/master/filter/abpvn.txt" + }, + new + { + FilterListId = 206L, + Id = 316L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/abpvn/abpvn/master/filter/abpvn.txt" + }, + new + { + FilterListId = 207L, + Id = 317L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/reek/anti-adblock-killer/master/anti-adblock-killer-filters.txt" + }, + new + { + FilterListId = 207L, + Id = 318L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/reek/anti-adblock-killer/master/anti-adblock-killer-filters.txt" + }, + new + { + FilterListId = 207L, + Id = 319L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/reek/anti-adblock-killer/master/anti-adblock-killer-filters.txt" + }, + new + { + FilterListId = 212L, + Id = 320L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.2o7Net/hosts" + }, + new + { + FilterListId = 212L, + Id = 321L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/FadeMind/hosts.extras/master/add.2o7Net/hosts" + }, + new + { + FilterListId = 212L, + Id = 322L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitcdn.link/repo/FadeMind/hosts.extras/master/add.2o7Net/hosts" + }, + new + { + FilterListId = 213L, + Id = 323L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kbinani/adblock-youtube-ads/master/signed.txt" + }, + new + { + FilterListId = 213L, + Id = 324L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/kbinani/adblock-youtube-ads/master/signed.txt" + }, + new + { + FilterListId = 213L, + Id = 325L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/kbinani/adblock-youtube-ads/master/signed.txt" + }, + new + { + FilterListId = 214L, + Id = 326L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/antiadblockfilters.txt" + }, + new + { + FilterListId = 215L, + Id = 327L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/adblockpolska/Adblock_PL_List/master/adblock_polska.txt" + }, + new + { + FilterListId = 215L, + Id = 328L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/adblockpolska/Adblock_PL_List/master/adblock_polska.txt" + }, + new + { + FilterListId = 215L, + Id = 329L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/adblockpolska/Adblock_PL_List/master/adblock_polska.txt" + }, + new + { + FilterListId = 216L, + Id = 330L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/adblock_social_filters/adblock_social_list.txt" + }, + new + { + FilterListId = 216L, + Id = 331L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/MajkiIT/polish-ads-filter/master/adblock_social_filters/adblock_social_list.txt" + }, + new + { + FilterListId = 216L, + Id = 332L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/MajkiIT/polish-ads-filter/master/adblock_social_filters/adblock_social_list.txt" + }, + new + { + FilterListId = 217L, + Id = 333L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://ideone.com/plain/K452p" + }, + new + { + FilterListId = 220L, + Id = 334L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://web.archive.org/web/20160411115130if_/http://adblock-korea.googlecode.com:80/git/adblock-korea.txt" + }, + new + { + FilterListId = 221L, + Id = 335L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gurud.ee/ab.txt" + }, + new + { + FilterListId = 222L, + Id = 336L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/SlashArash/adblockfa/master/adblockfa.txt" + }, + new + { + FilterListId = 222L, + Id = 337L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/SlashArash/adblockfa/master/adblockfa.txt" + }, + new + { + FilterListId = 222L, + Id = 338L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/SlashArash/adblockfa/master/adblockfa.txt" + }, + new + { + FilterListId = 223L, + Id = 339L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock.txt" + }, + new + { + FilterListId = 223L, + Id = 340L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock.txt" + }, + new + { + FilterListId = 223L, + Id = 341L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock.txt" + }, + new + { + FilterListId = 224L, + Id = 342L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/cookies_filters/adblock_cookies.txt" + }, + new + { + FilterListId = 224L, + Id = 343L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/MajkiIT/polish-ads-filter/master/cookies_filters/adblock_cookies.txt" + }, + new + { + FilterListId = 224L, + Id = 344L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/MajkiIT/polish-ads-filter/master/cookies_filters/adblock_cookies.txt" + }, + new + { + FilterListId = 225L, + Id = 345L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://sites.google.com/site/logroid/files/hosts.txt?attredirects=0" + }, + new + { + FilterListId = 226L, + Id = 346L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://adaway.org/hosts.txt" + }, + new + { + FilterListId = 227L, + Id = 347L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/exceptionrules.txt" + }, + new + { + FilterListId = 228L, + Id = 348L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/farrokhi/adblock-iran/master/filter.txt" + }, + new + { + FilterListId = 228L, + Id = 349L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/farrokhi/adblock-iran/master/filter.txt" + }, + new + { + FilterListId = 229L, + Id = 351L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hg.adblockplus.org/youtubefilters/raw-file/default/yt_annoyances_comments.txt" + }, + new + { + FilterListId = 232L, + Id = 352L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ryanbr/fanboy-adblock/master/fake-news.txt" + }, + new + { + FilterListId = 233L, + Id = 354L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hg.adblockplus.org/facebookfilters/raw-file/default/fb_annoyances_sidebar.txt" + }, + new + { + FilterListId = 234L, + Id = 355L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://www.squirrelconspiracy.net/abp/facebook-privacy-list.txt" + }, + new + { + FilterListId = 234L, + Id = 356L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Facebook Privacy List.txt" + }, + new + { + FilterListId = 235L, + Id = 358L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hg.adblockplus.org/facebookfilters/raw-file/default/fb_annoyances_newsfeed.txt" + }, + new + { + FilterListId = 236L, + Id = 360L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hg.adblockplus.org/facebookfilters/raw-file/default/fb_annoyances_full.txt" + }, + new + { + FilterListId = 237L, + Id = 361L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://adblock.ee/list.php" + }, + new + { + FilterListId = 238L, + Id = 362L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.ebates.com/whitelist/ebates-cash-back-shopping.txt" + }, + new + { + FilterListId = 239L, + Id = 363L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easytest.txt" + }, + new + { + FilterListId = 240L, + Id = 364L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easyprivacy_nointernational.txt" + }, + new + { + FilterListId = 241L, + Id = 365L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easyprivacy+easylist.txt" + }, + new + { + FilterListId = 242L, + Id = 366L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist.to/easylist/easyprivacy.txt" + }, + new + { + FilterListId = 242L, + Id = 367L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/easyprivacy.txt" + }, + new + { + FilterListId = 242L, + Id = 368L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easyprivacy.txt" + }, + new + { + FilterListId = 243L, + Id = 369L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylist_noadult.txt" + }, + new + { + FilterListId = 244L, + Id = 370L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylist_noelemhide.txt" + }, + new + { + FilterListId = 245L, + Id = 371L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/easylist-thailand/easylist-thailand/master/subscription/easylist-thailand.txt" + }, + new + { + FilterListId = 246L, + Id = 372L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistspanish.txt" + }, + new + { + FilterListId = 247L, + Id = 373L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/fanboy-annoyance.txt" + }, + new + { + FilterListId = 247L, + Id = 374L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/fanboy-annoyance.txt" + }, + new + { + FilterListId = 247L, + Id = 375L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://easylist.to/easylist/fanboy-annoyance.txt" + }, + new + { + FilterListId = 248L, + Id = 376L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistlithuania+easylist.txt" + }, + new + { + FilterListId = 249L, + Id = 377L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/fanboy-antifonts.txt" + }, + new + { + FilterListId = 250L, + Id = 378L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylist-cookie.txt" + }, + new + { + FilterListId = 251L, + Id = 380L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mozillahispano/nauscopio-filtros/master/filtros.txt" + }, + new + { + FilterListId = 252L, + Id = 381L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filtri-dns.ga/filtri.txt" + }, + new + { + FilterListId = 253L, + Id = 382L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/hant0508/uBlock-filters/master/filters.txt" + }, + new + { + FilterListId = 254L, + Id = 383L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/fanboy-vietnam.txt" + }, + new + { + FilterListId = 255L, + Id = 384L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/r/fanboy-ultimate.txt" + }, + new + { + FilterListId = 256L, + Id = 385L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/fanboy-turkish.txt" + }, + new + { + FilterListId = 257L, + Id = 386L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/fanboy-swedish.txt" + }, + new + { + FilterListId = 258L, + Id = 387L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/fanboy-espanol.txt" + }, + new + { + FilterListId = 259L, + Id = 388L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/fanboy-social.txt" + }, + new + { + FilterListId = 259L, + Id = 389L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/fanboy-social.txt" + }, + new + { + FilterListId = 260L, + Id = 390L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/fanboy-polish.txt" + }, + new + { + FilterListId = 261L, + Id = 391L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/fanboy-korean.txt" + }, + new + { + FilterListId = 262L, + Id = 392L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/fanboy-japanese.txt" + }, + new + { + FilterListId = 263L, + Id = 393L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/israelilist/IsraelList.txt" + }, + new + { + FilterListId = 264L, + Id = 394L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/fanboy-indian.txt" + }, + new + { + FilterListId = 265L, + Id = 395L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/enhancedstats.txt" + }, + new + { + FilterListId = 266L, + Id = 396L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/r/fanboy-complete.txt" + }, + new + { + FilterListId = 267L, + Id = 397L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/EasyList-Lithuania/easylist_lithuania/master/easylistlithuania.txt" + }, + new + { + FilterListId = 268L, + Id = 398L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cjx82630/cjxlist/master/cjxlist.txt" + }, + new + { + FilterListId = 268L, + Id = 399L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitee.com/cjx82630/cjxlist/raw/master/cjxlist.txt" + }, + new + { + FilterListId = 269L, + Id = 400L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistitaly+easylist.txt" + }, + new + { + FilterListId = 272L, + Id = 403L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://s3.amazonaws.com/lists.disconnect.me/simple_tracking.txt" + }, + new + { + FilterListId = 274L, + Id = 404L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://s3.amazonaws.com/lists.disconnect.me/simple_malvertising.txt" + }, + new + { + FilterListId = 275L, + Id = 405L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://s3.amazonaws.com/lists.disconnect.me/simple_ad.txt" + }, + new + { + FilterListId = 276L, + Id = 406L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://someonewhocares.org/hosts/zero/hosts" + }, + new + { + FilterListId = 276L, + Id = 407L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/data/someonewhocares.org/hosts" + }, + new + { + FilterListId = 277L, + Id = 408L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Czech Filters for Adblock Plus" + }, + new + { + FilterListId = 278L, + Id = 409L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nicedirector/ADBlock/master/Adblock_Filter.txt" + }, + new + { + FilterListId = 279L, + Id = 410L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.eff.org/files/cookieblocklist.txt" + }, + new + { + FilterListId = 280L, + Id = 411L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cpeterso/clickbait-blocklist/master/clickbait-blocklist.txt" + }, + new + { + FilterListId = 281L, + Id = 412L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cjx82630/cjxlist/master/cjx-annoyance.txt" + }, + new + { + FilterListId = 281L, + Id = 413L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitee.com/cjx82630/cjxlist/raw/master/cjx-annoyance.txt" + }, + new + { + FilterListId = 282L, + Id = 414L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://sysctl.org/cameleon/hosts" + }, + new + { + FilterListId = 283L, + Id = 415L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/bulgarian_list+easylist.txt" + }, + new + { + FilterListId = 284L, + Id = 416L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://stanev.org/abp/adblock_bg.txt" + }, + new + { + FilterListId = 285L, + Id = 417L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://malwaredomains.lehigh.edu/files/dynamic_dns.txt" + }, + new + { + FilterListId = 288L, + Id = 422L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://malwaredomains.lehigh.edu/files/immortal_domains.txt" + }, + new + { + FilterListId = 289L, + Id = 424L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistitaly.txt" + }, + new + { + FilterListId = 290L, + Id = 425L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/israellist+easylist.txt" + }, + new + { + FilterListId = 291L, + Id = 426L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/easylist/EasyListHebrew/master/EasyListHebrew.txt" + }, + new + { + FilterListId = 292L, + Id = 427L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistgermany+easylist.txt" + }, + new + { + FilterListId = 293L, + Id = 428L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistgermany.txt" + }, + new + { + FilterListId = 293L, + Id = 429L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://easylist.to/easylistgermany/easylistgermany.txt" + }, + new + { + FilterListId = 294L, + Id = 430L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistdutch+easylist.txt" + }, + new + { + FilterListId = 295L, + Id = 431L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistdutch.txt" + }, + new + { + FilterListId = 297L, + Id = 432L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistczechslovak+easylist.txt" + }, + new + { + FilterListId = 298L, + Id = 433L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nfer/easylistchina_it/master/easylistchina_it.txt" + }, + new + { + FilterListId = 299L, + Id = 434L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistchina+easylist.txt" + }, + new + { + FilterListId = 300L, + Id = 435L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistchina.txt" + }, + new + { + FilterListId = 301L, + Id = 436L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist.to/easylist/easylist.txt" + }, + new + { + FilterListId = 301L, + Id = 437L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/easylist.txt" + }, + new + { + FilterListId = 301L, + Id = 438L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylist.txt" + }, + new + { + FilterListId = 302L, + Id = 439L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://feeds.dshield.org/block.txt" + }, + new + { + FilterListId = 305L, + Id = 442L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tomasko126/easylistczechandslovak/master/filters.txt" + }, + new + { + FilterListId = 306L, + Id = 444L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hg.adblockplus.org/youtubefilters/raw-file/default/yt_annoyances_suggestions.txt" + }, + new + { + FilterListId = 307L, + Id = 445L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/taylr/linkedinsanity/master/spies-dislike-us.txt" + }, + new + { + FilterListId = 308L, + Id = 446L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/hoshsadiq/adblock-nocoin-list/master/hosts.txt" + }, + new + { + FilterListId = 309L, + Id = 447L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/complete/hosts.txt" + }, + new + { + FilterListId = 311L, + Id = 448L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/elypter/generic_annoying_stickybar_filter/master/generic_header_list.txt" + }, + new + { + FilterListId = 312L, + Id = 449L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/elypter/filter_processor/master/generated_filterlists/blockhead(decoy_generic_extraction).txt" + }, + new + { + FilterListId = 313L, + Id = 450L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/elypter/filter_processor/master/generated_filterlists/blockhead(decoy_generic_selection).txt" + }, + new + { + FilterListId = 315L, + Id = 451L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://alleblock.pl/alleblock/alleblock.txt" + }, + new + { + FilterListId = 316L, + Id = 452L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bkrucarci/turk-adlist/master/hosts" + }, + new + { + FilterListId = 317L, + Id = 453L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/anudeepND/blacklist/master/adservers.txt" + }, + new + { + FilterListId = 318L, + Id = 454L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/anudeepND/blacklist/master/CoinMiner.txt" + }, + new + { + FilterListId = 319L, + Id = 455L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/anudeepND/youtubeadsblacklist/master/domainlist.txt" + }, + new + { + FilterListId = 320L, + Id = 456L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/anudeepND/youtubeadsblacklist/master/hosts.txt" + }, + new + { + FilterListId = 321L, + Id = 457L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/anudeepND/whitelist/master/domains/whitelist.txt" + }, + new + { + FilterListId = 322L, + Id = 458L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/anudeepND/whitelist/master/domains/referral-sites.txt" + }, + new + { + FilterListId = 323L, + Id = 459L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/anudeepND/whitelist/master/domains/optional-list.txt" + }, + new + { + FilterListId = 324L, + Id = 460L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/arcetera/Minimal-Hosts-Blocker/master/etc/MinimalHostsBlocker/minimalhosts" + }, + new + { + FilterListId = 325L, + Id = 461L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bjornstar/hosts/master/hosts" + }, + new + { + FilterListId = 327L, + Id = 462L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/stayingonbrowser/Staying On The Phone Browser" + }, + new + { + FilterListId = 327L, + Id = 463L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/stayingonbrowser/Staying On The Phone Browser" + }, + new + { + FilterListId = 329L, + Id = 464L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/VeleSila/yhosts/master/hosts.txt" + }, + new + { + FilterListId = 330L, + Id = 465L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/ThaiConsentHosts/master/ThaiConsentHosts.txt" + }, + new + { + FilterListId = 330L, + Id = 466L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/ThaiConsentHosts/raw/master/ThaiConsentHosts.txt" + }, + new + { + FilterListId = 331L, + Id = 467L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/ThaiParanoidBlock/master/ThaiParanoid.txt" + }, + new + { + FilterListId = 331L, + Id = 468L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/ThaiParanoidBlock/raw/master/ThaiParanoid.txt" + }, + new + { + FilterListId = 332L, + Id = 469L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/ThaiAntiForceLike/master/AntiForceLike.txt" + }, + new + { + FilterListId = 333L, + Id = 470L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/pureexe/LeeCh-List/master/anime.txt" + }, + new + { + FilterListId = 334L, + Id = 471L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://warui.intaa.net/adhosts/hosts.txt" + }, + new + { + FilterListId = 335L, + Id = 472L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/multiverse2011/adawaylist-jp/master/hosts" + }, + new + { + FilterListId = 336L, + Id = 473L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://sites.google.com/site/cosmonoteshosts/hosts_for_Windows8.txt" + }, + new + { + FilterListId = 337L, + Id = 474L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://sites.google.com/site/cosmonoteshosts/hosts_for_Adaway.txt" + }, + new + { + FilterListId = 338L, + Id = 475L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://sites.google.com/site/cosmonoteshosts/hosts_Ultimate.txt" + }, + new + { + FilterListId = 339L, + Id = 476L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Lerist/Go-Hosts/master/hosts-ad" + }, + new + { + FilterListId = 340L, + Id = 477L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Lerist/Go-Hosts/master/hosts" + }, + new + { + FilterListId = 341L, + Id = 478L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/adblock_social_filters/social_filters_uB_AG.txt" + }, + new + { + FilterListId = 343L, + Id = 480L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/cookies_filters/cookies_uB_AG.txt" + }, + new + { + FilterListId = 345L, + Id = 482L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock_adguard.txt" + }, + new + { + FilterListId = 346L, + Id = 483L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock_test.txt" + }, + new + { + FilterListId = 347L, + Id = 484L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-pihole-filters/hostfile.txt" + }, + new + { + FilterListId = 348L, + Id = 485L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://vxvault.net/URL_List.php" + }, + new + { + FilterListId = 349L, + Id = 486L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/KADhosts/master/KADhosts_without_controversies.txt" + }, + new + { + FilterListId = 349L, + Id = 487L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/FiltersHeroes/KADhosts/master/KADhosts_without_controversies.txt" + }, + new + { + FilterListId = 349L, + Id = 488L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/FiltersHeroes/KADhosts/master/KADhosts_without_controversies.txt" + }, + new + { + FilterListId = 350L, + Id = 489L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/chromium/filters/16.txt" + }, + new + { + FilterListId = 352L, + Id = 490L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eladkarako/hosts/master/build/hosts_adblock.txt" + }, + new + { + FilterListId = 353L, + Id = 491L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eladkarako/hosts/master/build/hosts_adblock_anti_annoyances_block.txt" + }, + new + { + FilterListId = 354L, + Id = 492L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eladkarako/hosts/master/build/hosts_adblock_anti_annoyances_block_inline_script.txt" + }, + new + { + FilterListId = 355L, + Id = 493L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eladkarako/hosts/master/build/hosts_adblock_anti_annoyances_hide.txt" + }, + new + { + FilterListId = 356L, + Id = 494L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eladkarako/hosts/master/build/hosts_adblock_anti_annoyances_style_inject.txt" + }, + new + { + FilterListId = 357L, + Id = 495L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/list.txt" + }, + new + { + FilterListId = 358L, + Id = 496L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/list_optional.txt" + }, + new + { + FilterListId = 359L, + Id = 497L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/list_browser.txt" + }, + new + { + FilterListId = 360L, + Id = 498L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/hosts" + }, + new + { + FilterListId = 361L, + Id = 499L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/hosts_optional" + }, + new + { + FilterListId = 362L, + Id = 500L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/hosts_browser" + }, + new + { + FilterListId = 363L, + Id = 501L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/list_browser_UBO.txt" + }, + new + { + FilterListId = 367L, + Id = 502L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/uMatrix-Rules/uMatrix-Rules-Domain/master/rules.txt" + }, + new + { + FilterListId = 368L, + Id = 503L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/uMatrix-Rules/uMatrix-Rules-Site/master/rules.txt" + }, + new + { + FilterListId = 369L, + Id = 504L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tomasko126/easylistczechandslovak/master/filters_ublock.txt" + }, + new + { + FilterListId = 370L, + Id = 505L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easylistczechslovak+easylist.tpl" + }, + new + { + FilterListId = 371L, + Id = 506L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AFNIL-AntiFakeNewsInternationalList/AFNIL/master/AFNIL-ABP-uBO.txt" + }, + new + { + FilterListId = 372L, + Id = 507L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Hubird-au/Adversity/master/Adversity.txt" + }, + new + { + FilterListId = 373L, + Id = 508L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Hubird-au/Adversity/master/Antisocial.txt" + }, + new + { + FilterListId = 374L, + Id = 509L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Hubird-au/Adversity/master/Extreme-Measures.txt" + }, + new + { + FilterListId = 375L, + Id = 510L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/hl2guide/All-in-One-Customized-Adblock-List/master/aio.txt" + }, + new + { + FilterListId = 376L, + Id = 511L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/haykam821/Blocklists/master/mmo.txt" + }, + new + { + FilterListId = 377L, + Id = 512L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cb-software/CB-Malicious-Domains/master/block_lists/adblock_plus.txt" + }, + new + { + FilterListId = 378L, + Id = 513L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cb-software/CB-Malicious-Domains/master/block_lists/hosts" + }, + new + { + FilterListId = 379L, + Id = 514L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gist.githubusercontent.com/gorhill/ef1b62d606473c68d524/raw/f8181faac18cb5172c7c9bca8e5a3b22f0c925d0/gistfile1.txt" + }, + new + { + FilterListId = 380L, + Id = 515L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/toshiya44/myAssets/master/filters-exp.txt" + }, + new + { + FilterListId = 381L, + Id = 516L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://rickrolldb.com/ricklist.txt" + }, + new + { + FilterListId = 383L, + Id = 517L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://austinhuang.me/0131-block-list/list.txt" + }, + new + { + FilterListId = 385L, + Id = 518L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Username Hider for Compilation Creators.txt" + }, + new + { + FilterListId = 385L, + Id = 519L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Username Hider for Compilation Creators.txt" + }, + new + { + FilterListId = 388L, + Id = 520L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/DandelionSproutsNorskeFiltre.tpl" + }, + new + { + FilterListId = 388L, + Id = 521L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/DandelionSproutsNorskeFiltre.tpl" + }, + new + { + FilterListId = 390L, + Id = 522L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAntiAnnoyingSpecialSupplement/master/polish_rss_filters.txt" + }, + new + { + FilterListId = 391L, + Id = 523L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/IHateOverpromotedGames.txt" + }, + new + { + FilterListId = 391L, + Id = 524L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/IHateOverpromotedGames.txt" + }, + new + { + FilterListId = 392L, + Id = 525L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/BrowseWebsitesWithoutLoggingIn.txt" + }, + new + { + FilterListId = 392L, + Id = 526L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/BrowseWebsitesWithoutLoggingIn.txt" + }, + new + { + FilterListId = 393L, + Id = 527L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Dandelion Sprout-s Redirector Assistant List/DandelionSproutRedirectorList.json" + }, + new + { + FilterListId = 393L, + Id = 528L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Dandelion Sprout-s Redirector Assistant List/DandelionSproutRedirectorList.json" + }, + new + { + FilterListId = 395L, + Id = 529L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/raghavdua1995/DNSlock-PiHole-whitelist/master/whitelist.list" + }, + new + { + FilterListId = 396L, + Id = 530L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/NanoAdblocker/NanoFilters/master/NanoFilters/NanoBase.txt" + }, + new + { + FilterListId = 397L, + Id = 531L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/NanoAdblocker/NanoFilters/master/NanoFilters/NanoWhitelist.txt" + }, + new + { + FilterListId = 398L, + Id = 532L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/NanoAdblocker/NanoFilters/master/NanoFilters/NanoAnnoyance.txt" + }, + new + { + FilterListId = 399L, + Id = 533L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/lassekongo83/Frellwits-filter-lists/master/Frellwits-Swedish-Filter.txt" + }, + new + { + FilterListId = 399L, + Id = 534L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://repo.or.cz/Adblock-list-backups-Frellwits-filter-lists.git/blob_plain/refs/heads/master:/Frellwits-Swedish-Filter.txt" + }, + new + { + FilterListId = 400L, + Id = 535L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/notracking/hosts-blocklists/master/domains.txt" + }, + new + { + FilterListId = 401L, + Id = 536L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/notracking/hosts-blocklists/master/hostnames.txt" + }, + new + { + FilterListId = 403L, + Id = 537L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/lassekongo83/Frellwits-filter-lists/master/emoji-filter.txt" + }, + new + { + FilterListId = 403L, + Id = 538L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://repo.or.cz/Adblock-list-backups-Frellwits-filter-lists.git/blob_plain/refs/heads/master:/emoji-filter.txt" + }, + new + { + FilterListId = 405L, + Id = 539L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/annoyances.txt" + }, + new + { + FilterListId = 410L, + Id = 540L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/resource-abuse.txt" + }, + new + { + FilterListId = 412L, + Id = 541L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gist.githubusercontent.com/BBcan177/d7105c242f17f4498f81/raw/201968fa11b1f409d408a129a0774ffedb1560e2/MS-3" + }, + new + { + FilterListId = 413L, + Id = 542L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gist.githubusercontent.com/BBcan177/b6df57cef74e28d90acf1eec93d62d3b/raw/f0996cf5248657ada2adb396f3636be8716b99eb/MS-4" + }, + new + { + FilterListId = 414L, + Id = 543L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gist.githubusercontent.com/BBcan177/4a8bf37c131be4803cb2/raw/343ff780e15205b4dd0de37c86af34cfb26b2fbe/MS-2" + }, + new + { + FilterListId = 415L, + Id = 544L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gist.githubusercontent.com/BBcan177/bf29d47ea04391cb3eb0/raw/7290e0681bcd07415420b5c80a253652fd13f840/MS-1" + }, + new + { + FilterListId = 416L, + Id = 545L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gist.githubusercontent.com/BBcan177/2a9fc2548c3c5a5e2dc86e580b5795d2/raw/2f5c90ffb3bd02199ace1b16a0bd9f53b29f0879/EasyList_DE" + }, + new + { + FilterListId = 417L, + Id = 546L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/matomo-org/referrer-spam-blacklist/master/spammers.txt" + }, + new + { + FilterListId = 418L, + Id = 547L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/desbma/referer-spam-domains-blacklist/master/spammers.txt" + }, + new + { + FilterListId = 419L, + Id = 548L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.joewein.net/dl/bl/dom-bl-base.txt" + }, + new + { + FilterListId = 420L, + Id = 549L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.joewein.net/dl/bl/from-bl.txt" + }, + new + { + FilterListId = 421L, + Id = 550L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/Kurobeats/phishing_hosts/raw/master/hosts" + }, + new + { + FilterListId = 422L, + Id = 551L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ligyxy/Blocklist/master/BLOCKLIST" + }, + new + { + FilterListId = 424L, + Id = 552L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gist.githubusercontent.com/MOxFIVE/4730cac715ef406bd8eac7b29335be4a/raw/d21fa08e97963edde372d0d3e50703c783c9c32e/Personal%2520Blocklist.txt" + }, + new + { + FilterListId = 425L, + Id = 553L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nabble/semalt-blocker/master/domains/blocked" + }, + new + { + FilterListId = 426L, + Id = 554L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://osint.bambenekconsulting.com/feeds/c2-ipmasterlist.txt" + }, + new + { + FilterListId = 427L, + Id = 555L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://phishing.mailscanner.info/phishing.bad.sites.conf" + }, + new + { + FilterListId = 428L, + Id = 556L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.threatcrowd.org/feeds/domains.txt" + }, + new + { + FilterListId = 429L, + Id = 557L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/betterwebleon/international-list/master/filters.txt" + }, + new + { + FilterListId = 430L, + Id = 558L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/AdawayHosts" + }, + new + { + FilterListId = 430L, + Id = 559L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/AdawayHosts" + }, + new + { + FilterListId = 431L, + Id = 560L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Dandelion Sprout's Website Stretcher.txt" + }, + new + { + FilterListId = 431L, + Id = 561L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Dandelion Sprout%27s Website Stretcher.txt" + }, + new + { + FilterListId = 432L, + Id = 562L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-FіМ List.txt" + }, + new + { + FilterListId = 432L, + Id = 563L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-FіМ List.txt" + }, + new + { + FilterListId = 433L, + Id = 564L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-IMDB List.txt" + }, + new + { + FilterListId = 433L, + Id = 565L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-IMDB List.txt" + }, + new + { + FilterListId = 434L, + Id = 566L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/StopAutoplayOnYouTube.txt" + }, + new + { + FilterListId = 434L, + Id = 567L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/StopAutoplayOnYouTube.txt" + }, + new + { + FilterListId = 435L, + Id = 568L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/googlehosts/hosts/master/hosts-files/hosts" + }, + new + { + FilterListId = 435L, + Id = 569L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://git.qvq.network/googlehosts/hosts/raw/master/hosts-files/hosts" + }, + new + { + FilterListId = 436L, + Id = 570L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/lassekongo83/Frellwits-filter-lists/master/i-dont-want-your-app.txt" + }, + new + { + FilterListId = 436L, + Id = 571L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://repo.or.cz/Adblock-list-backups-Frellwits-filter-lists.git/blob_plain/refs/heads/master:/i-dont-want-your-app.txt" + }, + new + { + FilterListId = 437L, + Id = 572L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/easylistbrasil/easylistbrasil/filtro/easylistbrasil.txt" + }, + new + { + FilterListId = 438L, + Id = 573L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/SessionReplay.txt" + }, + new + { + FilterListId = 439L, + Id = 574L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/SmartTV.txt" + }, + new + { + FilterListId = 440L, + Id = 575L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/android-tracking.txt" + }, + new + { + FilterListId = 441L, + Id = 576L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/static/w3kbl.txt" + }, + new + { + FilterListId = 442L, + Id = 577L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/BillStearns.txt" + }, + new + { + FilterListId = 445L, + Id = 578L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/Easyprivacy.txt" + }, + new + { + FilterListId = 446L, + Id = 579L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/Prigent-Ads.txt" + }, + new + { + FilterListId = 447L, + Id = 580L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/quidsup/notrack-blocklists/raw/master/notrack-blocklist.txt" + }, + new + { + FilterListId = 448L, + Id = 581L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/quidsup/notrack-blocklists/raw/master/notrack-malware.txt" + }, + new + { + FilterListId = 449L, + Id = 582L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/hosts/spy.txt" + }, + new + { + FilterListId = 450L, + Id = 583L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/hosts/update.txt" + }, + new + { + FilterListId = 451L, + Id = 584L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/hosts/extra.txt" + }, + new + { + FilterListId = 465L, + Id = 585L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/Shalla-mal.txt" + }, + new + { + FilterListId = 465L, + Id = 586L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Shalla-Malicious.txt" + }, + new + { + FilterListId = 467L, + Id = 587L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kano1/I/master/badway.txt" + }, + new + { + FilterListId = 468L, + Id = 588L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kano1/I/master/adware.txt" + }, + new + { + FilterListId = 469L, + Id = 589L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kano1/Kano/master/Spyware.txt" + }, + new + { + FilterListId = 470L, + Id = 590L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/firehol_level1.netset" + }, + new + { + FilterListId = 471L, + Id = 591L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/firehol_level2.netset" + }, + new + { + FilterListId = 472L, + Id = 592L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/pinterest/all" + }, + new + { + FilterListId = 473L, + Id = 593L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/cloudflare/all" + }, + new + { + FilterListId = 474L, + Id = 594L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/facebook/all" + }, + new + { + FilterListId = 475L, + Id = 595L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/mozilla/all" + }, + new + { + FilterListId = 476L, + Id = 596L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/microsoft/all" + }, + new + { + FilterListId = 477L, + Id = 597L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/google/non_localized" + }, + new + { + FilterListId = 478L, + Id = 598L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/google/localized" + }, + new + { + FilterListId = 479L, + Id = 599L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistpolish.txt" + }, + new + { + FilterListId = 480L, + Id = 600L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/yecarrillo/adblock-colombia/master/adblock_co.txt" + }, + new + { + FilterListId = 481L, + Id = 601L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/spark/formats/hosts.txt" + }, + new + { + FilterListId = 482L, + Id = 602L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/bluGo/formats/hosts.txt" + }, + new + { + FilterListId = 482L, + Id = 603L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/bluGo/formats/hosts.txt" + }, + new + { + FilterListId = 483L, + Id = 604L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/blu/formats/hosts.txt" + }, + new + { + FilterListId = 484L, + Id = 605L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/basic/formats/hosts.txt" + }, + new + { + FilterListId = 485L, + Id = 606L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/porn/formats/hosts.txt" + }, + new + { + FilterListId = 486L, + Id = 607L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/ultimate/formats/hosts.txt" + }, + new + { + FilterListId = 487L, + Id = 608L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/unified/formats/hosts.txt" + }, + new + { + FilterListId = 490L, + Id = 609L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/CyanideBrother/anti-pr0n/master/hosts" + }, + new + { + FilterListId = 491L, + Id = 610L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/extensions/porn/clefspeare13/hosts" + }, + new + { + FilterListId = 492L, + Id = 611L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mhxion/pornaway/master/hosts/porn_sites.txt" + }, + new + { + FilterListId = 493L, + Id = 612L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mhxion/pornaway/master/hosts/porn_ads.txt" + }, + new + { + FilterListId = 494L, + Id = 613L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mitchellkrogza/Badd-Boyz-Hosts/master/hosts" + }, + new + { + FilterListId = 495L, + Id = 614L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/MetaMask/eth-phishing-detect/master/src/hosts.txt" + }, + new + { + FilterListId = 496L, + Id = 615L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/MrThreat/Confirmed-Phish/master/phish.txt" + }, + new + { + FilterListId = 504L, + Id = 616L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Adblock list templates/Adblock list template -Beginner-.txt" + }, + new + { + FilterListId = 504L, + Id = 617L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Adblock list templates/Adblock list template -Beginner-.txt" + }, + new + { + FilterListId = 505L, + Id = 618L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Adblock list templates/Adblock list template -Novice-.txt" + }, + new + { + FilterListId = 505L, + Id = 619L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Adblock list templates/Adblock list template -Novice-.txt" + }, + new + { + FilterListId = 506L, + Id = 620L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/exceptionrules-privacy-friendly.txt" + }, + new + { + FilterListId = 507L, + Id = 621L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easylist.tpl" + }, + new + { + FilterListId = 509L, + Id = 623L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/endolith/clickbait/master/clickbait.txt" + }, + new + { + FilterListId = 510L, + Id = 624L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/UnluckyLuke/BlockUnderRadarJunk/master/blockunderradarjunk-list.txt" + }, + new + { + FilterListId = 512L, + Id = 625L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/xd4rker/MinerBlock/master/assets/filters.txt" + }, + new + { + FilterListId = 513L, + Id = 626L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/hit3shjain/Andromeda-ublock-list/master/hosts.txt" + }, + new + { + FilterListId = 515L, + Id = 628L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://paulgb.github.io/BarbBlock/blacklists/ublock-origin.txt" + }, + new + { + FilterListId = 516L, + Id = 629L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://paulgb.github.io/BarbBlock/blacklists/domain-list.txt" + }, + new + { + FilterListId = 517L, + Id = 630L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://paulgb.github.io/BarbBlock/blacklists/adblock-plus.txt" + }, + new + { + FilterListId = 518L, + Id = 631L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.dshield.org/feeds/suspiciousdomains_Low.txt" + }, + new + { + FilterListId = 519L, + Id = 632L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.dshield.org/feeds/suspiciousdomains_Medium.txt" + }, + new + { + FilterListId = 519L, + Id = 633L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://isc.sans.edu/feeds/suspiciousdomains_Medium.txt" + }, + new + { + FilterListId = 520L, + Id = 634L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.dshield.org/feeds/suspiciousdomains_High.txt" + }, + new + { + FilterListId = 521L, + Id = 635L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://list.kwbt.de/kwbtlist.txt" + }, + new + { + FilterListId = 522L, + Id = 636L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://list.kwbt.de/kwbtlist.txt" + }, + new + { + FilterListId = 525L, + Id = 637L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/chadmayfield/my-pihole-blocklists/master/lists/pi_blocklist_porn_top1m.list" + }, + new + { + FilterListId = 525L, + Id = 638L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Chad-Mayfield-Porn-Blocklist-Light.txt" + }, + new + { + FilterListId = 526L, + Id = 639L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/chadmayfield/my-pihole-blocklists/master/lists/pi_blocklist_porn_all.list" + }, + new + { + FilterListId = 526L, + Id = 640L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Chad-Mayfield-Porn-Blocklist-Heavy.txt" + }, + new + { + FilterListId = 562L, + Id = 641L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/xinggsf/Adblock-Plus-Rule/master/ABP-FX.txt" + }, + new + { + FilterListId = 563L, + Id = 642L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/andromedarabbit/List-KR/master/filter.txt" + }, + new + { + FilterListId = 564L, + Id = 643L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/fanboy-problematic-sites.txt" + }, + new + { + FilterListId = 565L, + Id = 644L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://cdn.adblockcdn.com/filters/easylist_lite.txt" + }, + new + { + FilterListId = 566L, + Id = 645L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/abp-filters-anti-cv.txt" + }, + new + { + FilterListId = 569L, + Id = 646L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/chinese.txt" + }, + new + { + FilterListId = 570L, + Id = 647L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/czech.txt" + }, + new + { + FilterListId = 573L, + Id = 648L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/english.txt" + }, + new + { + FilterListId = 574L, + Id = 649L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/french.txt" + }, + new + { + FilterListId = 575L, + Id = 650L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/german.txt" + }, + new + { + FilterListId = 583L, + Id = 651L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/portuguese.txt" + }, + new + { + FilterListId = 585L, + Id = 652L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/russian.txt" + }, + new + { + FilterListId = 586L, + Id = 653L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/spanish.txt" + }, + new + { + FilterListId = 589L, + Id = 654L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Sinfonietta/hostfiles/master/gambling-hosts" + }, + new + { + FilterListId = 590L, + Id = 655L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Sinfonietta/hostfiles/master/pornography-hosts" + }, + new + { + FilterListId = 591L, + Id = 656L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Sinfonietta/hostfiles/master/snuff-hosts" + }, + new + { + FilterListId = 592L, + Id = 657L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Sinfonietta/hostfiles/master/social-hosts" + }, + new + { + FilterListId = 593L, + Id = 658L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/marktron/fakenews/master/fakenews" + }, + new + { + FilterListId = 595L, + Id = 659L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.github.developerdan.com/hosts/lists/ads-and-tracking-extended.txt" + }, + new + { + FilterListId = 596L, + Id = 660L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.github.developerdan.com/hosts/lists/tracking-aggressive-extended.txt" + }, + new + { + FilterListId = 598L, + Id = 661L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bigdargon/hostsVN/master/hosts" + }, + new + { + FilterListId = 599L, + Id = 662L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://abpvn.com/android/abpvn.txt" + }, + new + { + FilterListId = 600L, + Id = 663L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/abpvn/abpvn/master/filter/abpvn_noelemhide.txt" + }, + new + { + FilterListId = 601L, + Id = 664L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/ThaiAntiTokenSites/master/AntiPumpSites.txt" + }, + new + { + FilterListId = 601L, + Id = 665L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/ThaiAntiTokenSites/raw/master/AntiPumpSites.txt" + }, + new + { + FilterListId = 602L, + Id = 666L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/ThaiAntiTokenSites/master/AntiPumpSites_hosts.txt" + }, + new + { + FilterListId = 602L, + Id = 667L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/ThaiAntiTokenSites/raw/master/AntiPumpSites_hosts.txt" + }, + new + { + FilterListId = 603L, + Id = 668L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-Elsagate List.txt" + }, + new + { + FilterListId = 603L, + Id = 669L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-Elsagate List.txt" + }, + new + { + FilterListId = 604L, + Id = 670L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/stopforumspam_30d.ipset" + }, + new + { + FilterListId = 605L, + Id = 671L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/firehol_level3.netset" + }, + new + { + FilterListId = 606L, + Id = 672L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jerryn70/GoodbyeAds/master/Hosts/GoodbyeAds.txt" + }, + new + { + FilterListId = 607L, + Id = 673L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_newsletters.txt" + }, + new + { + FilterListId = 608L, + Id = 674L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_arrows.txt" + }, + new + { + FilterListId = 609L, + Id = 675L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_push.txt" + }, + new + { + FilterListId = 610L, + Id = 676L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_scrolling_videos.txt" + }, + new + { + FilterListId = 611L, + Id = 677L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_backgrounds_self-advertising.txt" + }, + new + { + FilterListId = 612L, + Id = 678L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_pop-ups.txt" + }, + new + { + FilterListId = 613L, + Id = 679L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_contact_feedback_widgets.txt" + }, + new + { + FilterListId = 614L, + Id = 680L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_tagged_internal_links.txt" + }, + new + { + FilterListId = 616L, + Id = 681L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_other_widgets.txt" + }, + new + { + FilterListId = 617L, + Id = 682L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=hosts&showintro=1&mimetype=plaintext" + }, + new + { + FilterListId = 617L, + Id = 683L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/data/yoyo.org/hosts" + }, + new + { + FilterListId = 618L, + Id = 684L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://bitbucket.org/ethanr/dns-blacklists/raw/8575c9f96e5b4a1308f2f12394abd86d0927a4a0/bad_lists/Mandiant_APT1_Report_Appendix_D.txt" + }, + new + { + FilterListId = 618L, + Id = 685L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Mandiant-APT1-Report.txt" + }, + new + { + FilterListId = 619L, + Id = 686L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/HenningVanRaumle/pihole-ytadblock/master/ytadblock.txt" + }, + new + { + FilterListId = 625L, + Id = 687L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nathanaccidentally/SystemHostsBlocker/master/hosts" + }, + new + { + FilterListId = 626L, + Id = 688L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tyzbit/hosts/master/data/tyzbit/hosts" + }, + new + { + FilterListId = 628L, + Id = 689L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/TakoYachty/Gift-Card-Killer/master/Untrusted Hosts Blocker.txt" + }, + new + { + FilterListId = 630L, + Id = 690L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/AdguardDNS.txt" + }, + new + { + FilterListId = 631L, + Id = 691L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/Prigent-Phishing.txt" + }, + new + { + FilterListId = 631L, + Id = 692L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Prigent-Phishing.txt" + }, + new + { + FilterListId = 632L, + Id = 693L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/static/SamsungSmart.txt" + }, + new + { + FilterListId = 658L, + Id = 694L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/filters/generic_filters.txt" + }, + new + { + FilterListId = 659L, + Id = 695L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/filters/modal_filters.txt" + }, + new + { + FilterListId = 660L, + Id = 696L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/filters/newsletter_filters.txt" + }, + new + { + FilterListId = 661L, + Id = 697L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/filters/social_filters.txt" + }, + new + { + FilterListId = 663L, + Id = 698L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nmtrung/FMSF-2.0/master/fmsf_2.0.txt" + }, + new + { + FilterListId = 664L, + Id = 699L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/AdguardMobileAds.txt" + }, + new + { + FilterListId = 665L, + Id = 700L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/AdguardMobileSpyware.txt" + }, + new + { + FilterListId = 666L, + Id = 701L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/AdguardApps.txt" + }, + new + { + FilterListId = 667L, + Id = 702L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/AdguardDNS.txt" + }, + new + { + FilterListId = 668L, + Id = 703L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://tgc.cloud/downloads/iOSAds.txt" + }, + new + { + FilterListId = 669L, + Id = 704L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://tgc.cloud/downloads/hosts.txt" + }, + new + { + FilterListId = 670L, + Id = 705L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/LittleSnitchNorwegianList.lsrules" + }, + new + { + FilterListId = 670L, + Id = 706L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/LittleSnitchNorwegianList.lsrules" + }, + new + { + FilterListId = 671L, + Id = 707L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://obdev.at/resources/littlesnitch/blocklist-example.lsrules" + }, + new + { + FilterListId = 672L, + Id = 708L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=littlesnitch-rule-group-subscriptions;showintro=1&mimetype=plaintext" + }, + new + { + FilterListId = 673L, + Id = 709L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=msfilter&showintro=1&mimetype=plaintext" + }, + new + { + FilterListId = 674L, + Id = 710L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=nohtml&showintro=1&mimetype=plaintext" + }, + new + { + FilterListId = 675L, + Id = 711L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://pgl.yoyo.org/adservers/iplist.php?ipformat=plain&showintro=1&mimetype=plaintext" + }, + new + { + FilterListId = 676L, + Id = 712L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://pgl.yoyo.org/as/serverlist.php?hostformat=junkbuster;showintro=1&mimetype=plaintext" + }, + new + { + FilterListId = 677L, + Id = 713L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://pgl.yoyo.org/as/serverlist.php?hostformat=adblock;showintro=1&mimetype=plaintext" + }, + new + { + FilterListId = 678L, + Id = 714L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gist.githubusercontent.com/sx2008/2766874/raw/c12a305decef3332663d1e04efa80b881211cfac/user.action" + }, + new + { + FilterListId = 679L, + Id = 715L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/fdb/privoxy-config/master/block-trackers.action" + }, + new + { + FilterListId = 680L, + Id = 716L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/DandelionSproutsNorskeFiltreDomains.txt" + }, + new + { + FilterListId = 680L, + Id = 717L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/DandelionSproutsNorskeFiltreDomains.txt" + }, + new + { + FilterListId = 681L, + Id = 718L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.malwaredomainlist.com/hostslist/ip.txt" + }, + new + { + FilterListId = 682L, + Id = 719L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://malc0de.com/bl/IP_Blacklist.txt" + }, + new + { + FilterListId = 683L, + Id = 720L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://www.urlvir.com/export-ip-addresses/" + }, + new + { + FilterListId = 684L, + Id = 721L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://www.urlvir.com/export-hosts/" + }, + new + { + FilterListId = 686L, + Id = 724L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://cdn.adblockcdn.com/filters/adblock_custom.txt" + }, + new + { + FilterListId = 687L, + Id = 725L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://www.quero.at/download/adblock-hosts.zip" + }, + new + { + FilterListId = 689L, + Id = 726L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/xxcriticxx/.pl-host-file/master/hosts.txt" + }, + new + { + FilterListId = 690L, + Id = 727L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mitchellkrogza/Suspicious.Snooping.Sniffing.Hacking.IP.Addresses/master/ips.list" + }, + new + { + FilterListId = 691L, + Id = 728L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mitchellkrogza/Top-Attacking-IP-Addresses-Against-Wordpress-Sites/master/wordpress-attacking-ips.txt" + }, + new + { + FilterListId = 692L, + Id = 729L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mitchellkrogza/The-Big-List-of-Hacked-Malware-Web-Sites/master/hacked-domains.list" + }, + new + { + FilterListId = 693L, + Id = 730L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hosts.ubuntu101.co.za/hosts" + }, + new + { + FilterListId = 694L, + Id = 731L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hosts.ubuntu101.co.za/domains.list" + }, + new + { + FilterListId = 696L, + Id = 732L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/dan-pollock-someonewhocares-org.txt" + }, + new + { + FilterListId = 697L, + Id = 733L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/mvps-hosts-file.txt" + }, + new + { + FilterListId = 698L, + Id = 734L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/malware-domain-list.txt" + }, + new + { + FilterListId = 699L, + Id = 735L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/nocoin.txt" + }, + new + { + FilterListId = 700L, + Id = 736L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/easylist.txt" + }, + new + { + FilterListId = 703L, + Id = 737L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/KADhosts/master/KADomains.txt" + }, + new + { + FilterListId = 704L, + Id = 738L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/steven-blacks-ad-hoc-list.txt" + }, + new + { + FilterListId = 705L, + Id = 739L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/coinblocker.txt" + }, + new + { + FilterListId = 706L, + Id = 740L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/add-2o7net.txt" + }, + new + { + FilterListId = 707L, + Id = 741L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/add-dead.txt" + }, + new + { + FilterListId = 708L, + Id = 742L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/add-risk.txt" + }, + new + { + FilterListId = 709L, + Id = 743L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/add-spam.txt" + }, + new + { + FilterListId = 710L, + Id = 744L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/tyzbit.txt" + }, + new + { + FilterListId = 710L, + Id = 745L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Tyzbit.txt" + }, + new + { + FilterListId = 711L, + Id = 746L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/uncheckyads.txt" + }, + new + { + FilterListId = 712L, + Id = 747L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/spotifyads.txt" + }, + new + { + FilterListId = 715L, + Id = 748L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/highsea/Hosts/master/host-include-appale/hosts" + }, + new + { + FilterListId = 717L, + Id = 750L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/superliaoyong/hosts/master/hosts" + }, + new + { + FilterListId = 718L, + Id = 751L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/popcorner/cernet-ipv6-hosts/hosts/hosts" + }, + new + { + FilterListId = 719L, + Id = 752L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://ads-for-open-source.readthedocs.io/en/latest/_static/lists/opensource-ads.txt" + }, + new + { + FilterListId = 720L, + Id = 753L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://nonio.pt/antinonio.txt" + }, + new + { + FilterListId = 721L, + Id = 754L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/brunomiguel/antinonio/master/antinonio.txt" + }, + new + { + FilterListId = 722L, + Id = 755L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gist.githubusercontent.com/balupton/6960605/raw/16bfeff88761b16296ed3ee15fbacf6840f1701a/filter-twitterdrama.txt" + }, + new + { + FilterListId = 723L, + Id = 756L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gist.githubusercontent.com/balupton/6960605/raw/16bfeff88761b16296ed3ee15fbacf6840f1701a/filter-feedlyads.txt" + }, + new + { + FilterListId = 724L, + Id = 757L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gist.githubusercontent.com/balupton/6960605/raw/16bfeff88761b16296ed3ee15fbacf6840f1701a/filter-facebookdrama.txt" + }, + new + { + FilterListId = 726L, + Id = 758L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/whtsky/abp-rules/master/rules.txt" + }, + new + { + FilterListId = 726L, + Id = 759L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://abp.tt.codes/rules.txt" + }, + new + { + FilterListId = 728L, + Id = 760L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/realodix/AdBlockID/master/output/adblockid.txt" + }, + new + { + FilterListId = 729L, + Id = 761L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/theel0ja/CrapBlock/master/crapblock-annoyances.txt" + }, + new + { + FilterListId = 729L, + Id = 762L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://crapblock.theel0ja.info/crapblock-annoyances.txt" + }, + new + { + FilterListId = 729L, + Id = 763L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/theel0ja/crapblock/raw/master/crapblock-annoyances.txt" + }, + new + { + FilterListId = 730L, + Id = 764L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/theel0ja/CrapBlock/master/block-googlefonts.txt" + }, + new + { + FilterListId = 730L, + Id = 765L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://crapblock.theel0ja.info/block-googlefonts.txt" + }, + new + { + FilterListId = 730L, + Id = 766L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/theel0ja/crapblock/raw/master/block-googlefonts.txt" + }, + new + { + FilterListId = 731L, + Id = 767L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/NeeEoo/AdBlockNeeEoo/master/List.txt" + }, + new + { + FilterListId = 734L, + Id = 769L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/imageboard/GelboLube.txt" + }, + new + { + FilterListId = 734L, + Id = 770L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/imageboard/GelboLube.txt" + }, + new + { + FilterListId = 735L, + Id = 771L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/specific/AntiAPKMirrorCountdown.txt" + }, + new + { + FilterListId = 735L, + Id = 772L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/specific/AntiAPKMirrorCountdown.txt" + }, + new + { + FilterListId = 736L, + Id = 773L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/OsborneSystems/Columbia/master/Columbia.txt" + }, + new + { + FilterListId = 743L, + Id = 774L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/akopachov/uBlock-AK-filter-rules/master/entertainment" + }, + new + { + FilterListId = 744L, + Id = 775L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Hunter-Github/the-best-stack-overflow/master/se_filters.txt" + }, + new + { + FilterListId = 746L, + Id = 776L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Hakame-kun/uBlock-Filters-Indonesia/master/uBlock Indo/ubindo.txt" + }, + new + { + FilterListId = 747L, + Id = 777L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nimasaj/uBOPa/master/uBOPa.txt" + }, + new + { + FilterListId = 747L, + Id = 778L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://mynext.pro/uBOPa.txt" + }, + new + { + FilterListId = 748L, + Id = 779L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.microsoft.com/cms/api/am/binary/RWilsQ" + }, + new + { + FilterListId = 749L, + Id = 780L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/malwaredomains_full.tpl" + }, + new + { + FilterListId = 750L, + Id = 781L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easy-tracking-protection.truste.com/easy.tpl" + }, + new + { + FilterListId = 751L, + Id = 782L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://jansal.net/tpl/ricklist.tpl" + }, + new + { + FilterListId = 752L, + Id = 783L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://jansal.net/tpl/popup-block.tpl" + }, + new + { + FilterListId = 753L, + Id = 784L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://jansal.net/tpl/obtrusive.tpl" + }, + new + { + FilterListId = 754L, + Id = 785L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://jansal.net/tpl/malpatrol.tpl" + }, + new + { + FilterListId = 755L, + Id = 786L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://jansal.net/tpl/m.tpl" + }, + new + { + FilterListId = 756L, + Id = 787L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://jansal.net/tpl/latvian-list.tpl" + }, + new + { + FilterListId = 757L, + Id = 788L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://jansal.net/tpl/facebook-connect-optout-adblockplusfilter.tpl" + }, + new + { + FilterListId = 758L, + Id = 789L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://jansal.net/tpl/adblock-persian.tpl" + }, + new + { + FilterListId = 759L, + Id = 790L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://jansal.net/tpl/IsraelList.tpl" + }, + new + { + FilterListId = 760L, + Id = 791L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://jansal.net/tpl/Adversity/Antisocial.tpl" + }, + new + { + FilterListId = 761L, + Id = 792L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://jansal.net/tpl/Adversity/Adversity.tpl" + }, + new + { + FilterListId = 762L, + Id = 793L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.fanboy.co.nz/adblock/ie/fanboy-noele.tpl" + }, + new + { + FilterListId = 763L, + Id = 794L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.fanboy.co.nz/adblock/ie/fanboy-tracking.tpl" + }, + new + { + FilterListId = 764L, + Id = 795L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://jansal.net/tpl/fanboy/enhancedstats-addon.tpl" + }, + new + { + FilterListId = 765L, + Id = 796L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://jansal.net/tpl/fanboy/fanboy-adult.tpl" + }, + new + { + FilterListId = 766L, + Id = 797L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/lilydjwg/abp-rules/master/list.txt" + }, + new + { + FilterListId = 767L, + Id = 798L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/OwlStudioCN/owl-abp-rules/master/owl-abp-rules.txt" + }, + new + { + FilterListId = 769L, + Id = 799L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Manu1400/i-don-t-care-about-newsletters/master/adp.txt" + }, + new + { + FilterListId = 770L, + Id = 800L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://adp.magnobiet.com/list.txt" + }, + new + { + FilterListId = 772L, + Id = 801L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kbinani/adblock-wikipedia/master/signed.txt" + }, + new + { + FilterListId = 773L, + Id = 802L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easylistgermany+easylist.tpl" + }, + new + { + FilterListId = 774L, + Id = 803L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/fanboy-annoyance.tpl" + }, + new + { + FilterListId = 775L, + Id = 804L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easylistlithuania+easylist.tpl" + }, + new + { + FilterListId = 776L, + Id = 805L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/bulgarian_list+easylist.tpl" + }, + new + { + FilterListId = 777L, + Id = 806L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/latvianlist+easylist.tpl" + }, + new + { + FilterListId = 778L, + Id = 807L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easyprivacy+easylist.tpl" + }, + new + { + FilterListId = 779L, + Id = 808L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easylistitaly+easylist.tpl" + }, + new + { + FilterListId = 780L, + Id = 809L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/israellist+easylist.tpl" + }, + new + { + FilterListId = 781L, + Id = 810L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easylistchina+easylist.tpl" + }, + new + { + FilterListId = 782L, + Id = 811L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easylistdutch+easylist.tpl" + }, + new + { + FilterListId = 783L, + Id = 812L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/rolist+easylist.tpl" + }, + new + { + FilterListId = 784L, + Id = 813L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/wiltteri+easylist.tpl" + }, + new + { + FilterListId = 785L, + Id = 814L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/fanboy-social.tpl" + }, + new + { + FilterListId = 786L, + Id = 815L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/liste_ar+liste_fr+easylist.tpl" + }, + new + { + FilterListId = 787L, + Id = 816L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/ruadlist+easylist.tpl" + }, + new + { + FilterListId = 788L, + Id = 817L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/Liste_AR.tpl" + }, + new + { + FilterListId = 789L, + Id = 818L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easylistdutch.tpl" + }, + new + { + FilterListId = 790L, + Id = 819L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easyprivacy_nointernational.tpl" + }, + new + { + FilterListId = 791L, + Id = 820L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/advblock.tpl" + }, + new + { + FilterListId = 792L, + Id = 821L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easylist_noadult.tpl" + }, + new + { + FilterListId = 793L, + Id = 822L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easylistspanish.tpl" + }, + new + { + FilterListId = 794L, + Id = 823L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easylistchina.tpl" + }, + new + { + FilterListId = 795L, + Id = 824L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/liste_fr.tpl" + }, + new + { + FilterListId = 796L, + Id = 825L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easylistgermany.tpl" + }, + new + { + FilterListId = 797L, + Id = 826L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/antiadblockfilters.tpl" + }, + new + { + FilterListId = 798L, + Id = 827L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/liste_fr+easylist.tpl" + }, + new + { + FilterListId = 799L, + Id = 828L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easylistitaly.tpl" + }, + new + { + FilterListId = 800L, + Id = 829L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easylistspanish+easylist.tpl" + }, + new + { + FilterListId = 801L, + Id = 830L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/ABP Macedonian List.txt" + }, + new + { + FilterListId = 802L, + Id = 831L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Liste DZ.txt" + }, + new + { + FilterListId = 803L, + Id = 832L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Snaevar87's Icelandic filter.txt" + }, + new + { + FilterListId = 804L, + Id = 833L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/TamilFriends List.txt" + }, + new + { + FilterListId = 805L, + Id = 834L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/advblock+cssfixes.txt" + }, + new + { + FilterListId = 806L, + Id = 835L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistportuguese.txt" + }, + new + { + FilterListId = 807L, + Id = 836L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/luigimannoni/m5s-ublock-filter/master/filter-list.txt" + }, + new + { + FilterListId = 808L, + Id = 837L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://ajnasz.hu/adblock/recent" + }, + new + { + FilterListId = 809L, + Id = 838L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.ergensin.nl/adblock/nlblock.txt" + }, + new + { + FilterListId = 809L, + Id = 839L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://www.verzijlbergh.com/adblock/nlblock.txt" + }, + new + { + FilterListId = 810L, + Id = 840L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/complete/domains.txt" + }, + new + { + FilterListId = 811L, + Id = 841L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/mini/hosts.txt" + }, + new + { + FilterListId = 812L, + Id = 842L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/mini/domains.txt" + }, + new + { + FilterListId = 813L, + Id = 843L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jwinnie/acceptable-ads/master/filters.txt" + }, + new + { + FilterListId = 814L, + Id = 844L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/gmbkslist.txt" + }, + new + { + FilterListId = 815L, + Id = 845L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Adblocking Open Filter JP" + }, + new + { + FilterListId = 816L, + Id = 846L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/I Don't Want to Download Your Browser.txt" + }, + new + { + FilterListId = 816L, + Id = 847L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/I Don't Want to Download Your Browser.txt" + }, + new + { + FilterListId = 817L, + Id = 848L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/lassekongo83/Frellwits-filter-lists/master/Frellwits-Swedish-Hosts-File.txt" + }, + new + { + FilterListId = 817L, + Id = 849L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://repo.or.cz/Adblock-list-backups-Frellwits-filter-lists.git/blob_plain/refs/heads/master:/Frellwits-Swedish-Hosts-File.txt" + }, + new + { + FilterListId = 818L, + Id = 850L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/indianlist.txt" + }, + new + { + FilterListId = 819L, + Id = 851L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/YouTubeEvenMorePureVideoExperience.txt" + }, + new + { + FilterListId = 819L, + Id = 852L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/YouTubeEvenMorePureVideoExperience.txt" + }, + new + { + FilterListId = 821L, + Id = 854L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/brave/adblock-lists/master/brave-unbreak.txt" + }, + new + { + FilterListId = 822L, + Id = 855L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/VeleSila/VELE-SILA-List/gh-pages/KaFanList.txt" + }, + new + { + FilterListId = 823L, + Id = 856L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/gasull/adblock-nsa/master/filters.txt" + }, + new + { + FilterListId = 824L, + Id = 857L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mistalaba/popover-blocklist/master/blocklist.txt" + }, + new + { + FilterListId = 825L, + Id = 858L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jasonbarone/membership-app-block-list/master/membership-app-block-list.txt" + }, + new + { + FilterListId = 826L, + Id = 859L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/w13d/adblockListABP-PiHole/master/Spotify.txt" + }, + new + { + FilterListId = 827L, + Id = 860L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/w13d/adblockListABP-PiHole/master/list.txt" + }, + new + { + FilterListId = 828L, + Id = 861L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/evenxzero/Raajje-AdList/master/filter.txt" + }, + new + { + FilterListId = 829L, + Id = 862L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/miyurusankalpa/adblock-list-sri-lanka/master/lkfilter.txt" + }, + new + { + FilterListId = 830L, + Id = 863L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/adblock.conf" + }, + new + { + FilterListId = 831L, + Id = 864L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/ads01.conf" + }, + new + { + FilterListId = 832L, + Id = 865L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/facebookblock.conf" + }, + new + { + FilterListId = 833L, + Id = 866L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/fastclick.conf" + }, + new + { + FilterListId = 834L, + Id = 867L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/google.conf" + }, + new + { + FilterListId = 835L, + Id = 868L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/microsoftblock.conf" + }, + new + { + FilterListId = 836L, + Id = 869L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Recon/romanian-media-propaganda-adblock-list/master/ro-media-blocklist.txt" + }, + new + { + FilterListId = 837L, + Id = 870L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/duskwuff/syndicationblock/master/filters.txt" + }, + new + { + FilterListId = 839L, + Id = 872L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Manu1400/i-don-t-care-about-gotoup-btns/master/list-gotoup-btns.txt" + }, + new + { + FilterListId = 840L, + Id = 873L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/KCaglarCoskun/enur-filter-list/master/enur-filter-list.txt" + }, + new + { + FilterListId = 841L, + Id = 874L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/LinuxLowell/chat-annoyances/master/chat-annoyances.txt" + }, + new + { + FilterListId = 842L, + Id = 875L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=dnsmasq&showintro=1&mimetype=plaintext" + }, + new + { + FilterListId = 843L, + Id = 876L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/facebook/FacebookZuckestionKiller.txt" + }, + new + { + FilterListId = 843L, + Id = 877L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/facebook/FacebookZuckestionKiller.txt" + }, + new + { + FilterListId = 844L, + Id = 878L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/facebook/FacebookCommands.txt" + }, + new + { + FilterListId = 844L, + Id = 879L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/facebook/FacebookCommands.txt" + }, + new + { + FilterListId = 845L, + Id = 880L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/hosts/hosts_google_adservice_id.txt" + }, + new + { + FilterListId = 845L, + Id = 881L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/hosts/hosts_google_adservice_id.txt" + }, + new + { + FilterListId = 846L, + Id = 882L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/ThaiParanoidBlock/maximum/ThaiParanoid.txt" + }, + new + { + FilterListId = 846L, + Id = 883L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/ThaiParanoidBlock/raw/maximum/ThaiParanoid.txt" + }, + new + { + FilterListId = 847L, + Id = 884L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/sipp11/th_ad_filters/master/th_list.txt" + }, + new + { + FilterListId = 848L, + Id = 885L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/TwitchPureViewingExperience.txt" + }, + new + { + FilterListId = 848L, + Id = 886L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/TwitchPureViewingExperience.txt" + }, + new + { + FilterListId = 850L, + Id = 887L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAbusePorn.txt" + }, + new + { + FilterListId = 850L, + Id = 888L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAbusePorn.txt" + }, + new + { + FilterListId = 851L, + Id = 889L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/WikiaPureBrowsingExperience.txt" + }, + new + { + FilterListId = 851L, + Id = 890L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/WikiaPureBrowsingExperience.txt" + }, + new + { + FilterListId = 852L, + Id = 891L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/YouTubeYetEvenMorePureVideoExperience.txt" + }, + new + { + FilterListId = 852L, + Id = 892L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/YouTubeYetEvenMorePureVideoExperience.txt" + }, + new + { + FilterListId = 853L, + Id = 893L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/VeryThoroughWebsiteCleaner.txt" + }, + new + { + FilterListId = 853L, + Id = 894L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/VeryThoroughWebsiteCleaner.txt" + }, + new + { + FilterListId = 855L, + Id = 895L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/MeWe Pink Theme.txt" + }, + new + { + FilterListId = 855L, + Id = 896L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/MeWe Pink Theme.txt" + }, + new + { + FilterListId = 856L, + Id = 897L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Pro-LED List.txt" + }, + new + { + FilterListId = 856L, + Id = 898L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Pro-LED List.txt" + }, + new + { + FilterListId = 857L, + Id = 899L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Dandelion Sprout-s Redirector Assistant List/TorRedirectorList.json" + }, + new + { + FilterListId = 857L, + Id = 900L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Dandelion Sprout-s Redirector Assistant List/TorRedirectorList.json" + }, + new + { + FilterListId = 859L, + Id = 904L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-Futa List.txt" + }, + new + { + FilterListId = 859L, + Id = 905L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-Futa List.txt" + }, + new + { + FilterListId = 860L, + Id = 906L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://bitbucket.org/nicktabick/adblock-rules/raw/master/nt-adblock.txt" + }, + new + { + FilterListId = 860L, + Id = 907L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nicktabick/adblock-rules/master/nt-adblock.txt" + }, + new + { + FilterListId = 860L, + Id = 908L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/nicktabick/adblock-rules/raw/master/nt-adblock.txt" + }, + new + { + FilterListId = 861L, + Id = 909L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bogachenko/filterlist/master/filterlist.txt" + }, + new + { + FilterListId = 862L, + Id = 910L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/other/SurvivedTrackingLinkWarning.txt" + }, + new + { + FilterListId = 862L, + Id = 911L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/other/SurvivedTrackingLinkWarning.txt" + }, + new + { + FilterListId = 863L, + Id = 912L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-'Christmas carols' List.txt" + }, + new + { + FilterListId = 863L, + Id = 913L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-'Christmas carols' List.txt" + }, + new + { + FilterListId = 866L, + Id = 914L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/hosts/hosts_facebook0.txt" + }, + new + { + FilterListId = 866L, + Id = 915L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/hosts/hosts_facebook0.txt" + }, + new + { + FilterListId = 868L, + Id = 918L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/mochi_filter.txt" + }, + new + { + FilterListId = 869L, + Id = 919L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/mochi_filter_2gun.txt" + }, + new + { + FilterListId = 870L, + Id = 920L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/mochi_filter_amazon.txt" + }, + new + { + FilterListId = 871L, + Id = 921L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/mochi_filter_extended.txt" + }, + new + { + FilterListId = 872L, + Id = 922L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/negi_filter.txt" + }, + new + { + FilterListId = 873L, + Id = 923L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/negi_google_hplogo_block.txt" + }, + new + { + FilterListId = 874L, + Id = 924L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/negi_twitter_allow_save_multi_images.txt" + }, + new + { + FilterListId = 875L, + Id = 925L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/kame_filter.txt" + }, + new + { + FilterListId = 876L, + Id = 926L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/kotori_filter.txt" + }, + new + { + FilterListId = 877L, + Id = 927L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/kujira_filter.txt" + }, + new + { + FilterListId = 878L, + Id = 928L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/ichigo_filter.txt" + }, + new + { + FilterListId = 879L, + Id = 929L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/tamago_filter.txt" + }, + new + { + FilterListId = 881L, + Id = 930L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/youtube_wo_tonikaku_filter.txt" + }, + new + { + FilterListId = 882L, + Id = 931L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/all.txt" + }, + new + { + FilterListId = 884L, + Id = 932L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/finnish-easylist-addition/finnish-easylist-addition/master/Finland_adb.txt" + }, + new + { + FilterListId = 885L, + Id = 933L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Afghanistan.txt" + }, + new + { + FilterListId = 886L, + Id = 934L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Aland.txt" + }, + new + { + FilterListId = 887L, + Id = 935L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Albania.txt" + }, + new + { + FilterListId = 888L, + Id = 936L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Algeria.txt" + }, + new + { + FilterListId = 889L, + Id = 937L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/AmericanSamoa.txt" + }, + new + { + FilterListId = 890L, + Id = 938L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Andorra.txt" + }, + new + { + FilterListId = 891L, + Id = 939L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Angola.txt" + }, + new + { + FilterListId = 892L, + Id = 940L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Anguilla.txt" + }, + new + { + FilterListId = 893L, + Id = 941L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Antarctica.txt" + }, + new + { + FilterListId = 894L, + Id = 942L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/AntiguaAndBarbuda.txt" + }, + new + { + FilterListId = 895L, + Id = 943L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Argentina.txt" + }, + new + { + FilterListId = 896L, + Id = 944L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Armenia.txt" + }, + new + { + FilterListId = 897L, + Id = 945L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/AscensionIsland.txt" + }, + new + { + FilterListId = 898L, + Id = 946L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Australia.txt" + }, + new + { + FilterListId = 899L, + Id = 947L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Austria.txt" + }, + new + { + FilterListId = 900L, + Id = 948L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Azerbaijan.txt" + }, + new + { + FilterListId = 901L, + Id = 949L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bahamas.txt" + }, + new + { + FilterListId = 902L, + Id = 950L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bahrain.txt" + }, + new + { + FilterListId = 903L, + Id = 951L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bangladesh.txt" + }, + new + { + FilterListId = 904L, + Id = 952L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Belarus.txt" + }, + new + { + FilterListId = 905L, + Id = 953L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Belgium.txt" + }, + new + { + FilterListId = 906L, + Id = 954L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Belize.txt" + }, + new + { + FilterListId = 907L, + Id = 955L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bermuda.txt" + }, + new + { + FilterListId = 908L, + Id = 956L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bhutan.txt" + }, + new + { + FilterListId = 909L, + Id = 957L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bolivia.txt" + }, + new + { + FilterListId = 910L, + Id = 958L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bonaire.txt" + }, + new + { + FilterListId = 911L, + Id = 959L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/BosniaAndHerzegovina.txt" + }, + new + { + FilterListId = 912L, + Id = 960L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Botswana.txt" + }, + new + { + FilterListId = 913L, + Id = 961L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Brazil.txt" + }, + new + { + FilterListId = 914L, + Id = 962L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/BritishIndianOceanTerritory.txt" + }, + new + { + FilterListId = 915L, + Id = 963L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/BritishVirginIslands.txt" + }, + new + { + FilterListId = 916L, + Id = 964L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bulgaria.txt" + }, + new + { + FilterListId = 917L, + Id = 965L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/BurkinaFaso.txt" + }, + new + { + FilterListId = 918L, + Id = 966L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Burundi.txt" + }, + new + { + FilterListId = 919L, + Id = 967L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Cambodia.txt" + }, + new + { + FilterListId = 920L, + Id = 968L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Cameroon.txt" + }, + new + { + FilterListId = 921L, + Id = 969L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Canada.txt" + }, + new + { + FilterListId = 922L, + Id = 970L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CapeVerde.txt" + }, + new + { + FilterListId = 923L, + Id = 971L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Catalonia.txt" + }, + new + { + FilterListId = 924L, + Id = 972L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CaymanIslands.txt" + }, + new + { + FilterListId = 925L, + Id = 973L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CentralAfricanRepublic.txt" + }, + new + { + FilterListId = 926L, + Id = 974L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Chile.txt" + }, + new + { + FilterListId = 927L, + Id = 975L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/ChinaPeoplesRepublicof.txt" + }, + new + { + FilterListId = 928L, + Id = 976L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/ChristmasIsland.txt" + }, + new + { + FilterListId = 929L, + Id = 977L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CocosKeelingIslands.txt" + }, + new + { + FilterListId = 930L, + Id = 978L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Colombia.txt" + }, + new + { + FilterListId = 931L, + Id = 979L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CongoKinshasa.txt" + }, + new + { + FilterListId = 932L, + Id = 980L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CookIslands.txt" + }, + new + { + FilterListId = 933L, + Id = 981L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CostaRica.txt" + }, + new + { + FilterListId = 934L, + Id = 982L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Croatia.txt" + }, + new + { + FilterListId = 935L, + Id = 983L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Cuba.txt" + }, + new + { + FilterListId = 936L, + Id = 984L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Cyprus.txt" + }, + new + { + FilterListId = 937L, + Id = 985L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CzechRepublic.txt" + }, + new + { + FilterListId = 938L, + Id = 986L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Denmark.txt" + }, + new + { + FilterListId = 939L, + Id = 987L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Djibouti.txt" + }, + new + { + FilterListId = 940L, + Id = 988L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Dominica.txt" + }, + new + { + FilterListId = 941L, + Id = 989L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/DominicanRepublic.txt" + }, + new + { + FilterListId = 942L, + Id = 990L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Ecuador.txt" + }, + new + { + FilterListId = 943L, + Id = 991L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Egypt.txt" + }, + new + { + FilterListId = 944L, + Id = 992L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/ElSalvador.txt" + }, + new + { + FilterListId = 945L, + Id = 993L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/EquatorialGuinea.txt" + }, + new + { + FilterListId = 946L, + Id = 994L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Estonia.txt" + }, + new + { + FilterListId = 947L, + Id = 995L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/EuropeanUnion.txt" + }, + new + { + FilterListId = 948L, + Id = 996L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/FaeroeIslands.txt" + }, + new + { + FilterListId = 949L, + Id = 997L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/FederatedStatesOfMicronesia.txt" + }, + new + { + FilterListId = 950L, + Id = 998L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Fiji.txt" + }, + new + { + FilterListId = 951L, + Id = 999L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Finland.txt" + }, + new + { + FilterListId = 952L, + Id = 1000L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/France.txt" + }, + new + { + FilterListId = 953L, + Id = 1001L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/FrenchPolynesia.txt" + }, + new + { + FilterListId = 954L, + Id = 1002L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/FrenchSouthernAndAntarcticLands.txt" + }, + new + { + FilterListId = 955L, + Id = 1003L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/GaboneseRepublic.txt" + }, + new + { + FilterListId = 956L, + Id = 1004L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Gambia.txt" + }, + new + { + FilterListId = 957L, + Id = 1005L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/GazaStrip.txt" + }, + new + { + FilterListId = 958L, + Id = 1006L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Georgia.txt" + }, + new + { + FilterListId = 959L, + Id = 1007L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Germany.txt" + }, + new + { + FilterListId = 960L, + Id = 1008L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Ghana.txt" + }, + new + { + FilterListId = 961L, + Id = 1009L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Greece.txt" + }, + new + { + FilterListId = 962L, + Id = 1010L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Greenland.txt" + }, + new + { + FilterListId = 963L, + Id = 1011L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Grenada.txt" + }, + new + { + FilterListId = 964L, + Id = 1012L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guadeloupe.txt" + }, + new + { + FilterListId = 965L, + Id = 1013L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guam.txt" + }, + new + { + FilterListId = 966L, + Id = 1014L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guatemala.txt" + }, + new + { + FilterListId = 967L, + Id = 1015L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guernsey.txt" + }, + new + { + FilterListId = 968L, + Id = 1016L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guinea.txt" + }, + new + { + FilterListId = 969L, + Id = 1017L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guyana.txt" + }, + new + { + FilterListId = 970L, + Id = 1018L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Haiti.txt" + }, + new + { + FilterListId = 971L, + Id = 1019L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/HeardIslandAndMcDonaldIslands.txt" + }, + new + { + FilterListId = 972L, + Id = 1020L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Honduras.txt" + }, + new + { + FilterListId = 973L, + Id = 1021L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/HongKong.txt" + }, + new + { + FilterListId = 974L, + Id = 1022L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Hungary.txt" + }, + new + { + FilterListId = 975L, + Id = 1023L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Iceland.txt" + }, + new + { + FilterListId = 976L, + Id = 1024L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/India.txt" + }, + new + { + FilterListId = 977L, + Id = 1025L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Indonesia.txt" + }, + new + { + FilterListId = 978L, + Id = 1026L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Iran.txt" + }, + new + { + FilterListId = 979L, + Id = 1027L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Iraq.txt" + }, + new + { + FilterListId = 980L, + Id = 1028L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Ireland.txt" + }, + new + { + FilterListId = 981L, + Id = 1029L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/IsleofMan.txt" + }, + new + { + FilterListId = 982L, + Id = 1030L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Israel.txt" + }, + new + { + FilterListId = 983L, + Id = 1031L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Italy.txt" + }, + new + { + FilterListId = 984L, + Id = 1032L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/IvoryCoast.txt" + }, + new + { + FilterListId = 985L, + Id = 1033L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Japan.txt" + }, + new + { + FilterListId = 986L, + Id = 1034L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Jersey.txt" + }, + new + { + FilterListId = 987L, + Id = 1035L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Jordan.txt" + }, + new + { + FilterListId = 988L, + Id = 1036L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Kazakhstan.txt" + }, + new + { + FilterListId = 989L, + Id = 1037L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Kenya.txt" + }, + new + { + FilterListId = 990L, + Id = 1038L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Kiribati.txt" + }, + new + { + FilterListId = 991L, + Id = 1039L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Kuwait.txt" + }, + new + { + FilterListId = 992L, + Id = 1040L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Kyrgyzstan.txt" + }, + new + { + FilterListId = 993L, + Id = 1041L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Laos.txt" + }, + new + { + FilterListId = 994L, + Id = 1042L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Latvia.txt" + }, + new + { + FilterListId = 995L, + Id = 1043L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Lebanon.txt" + }, + new + { + FilterListId = 996L, + Id = 1044L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Libya.txt" + }, + new + { + FilterListId = 997L, + Id = 1045L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Liechtenstein.txt" + }, + new + { + FilterListId = 998L, + Id = 1046L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Lithuania.txt" + }, + new + { + FilterListId = 999L, + Id = 1047L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Luxembourg.txt" + }, + new + { + FilterListId = 1000L, + Id = 1048L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Macau.txt" + }, + new + { + FilterListId = 1001L, + Id = 1049L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Macedonia.txt" + }, + new + { + FilterListId = 1002L, + Id = 1050L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Madagascar.txt" + }, + new + { + FilterListId = 1003L, + Id = 1051L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Malawi.txt" + }, + new + { + FilterListId = 1004L, + Id = 1052L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Malaysia.txt" + }, + new + { + FilterListId = 1005L, + Id = 1053L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mali.txt" + }, + new + { + FilterListId = 1006L, + Id = 1054L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Malta.txt" + }, + new + { + FilterListId = 1007L, + Id = 1055L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mauritania.txt" + }, + new + { + FilterListId = 1008L, + Id = 1056L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mauritius.txt" + }, + new + { + FilterListId = 1009L, + Id = 1057L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mayotte.txt" + }, + new + { + FilterListId = 1010L, + Id = 1058L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mexico.txt" + }, + new + { + FilterListId = 1011L, + Id = 1059L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Moldova.txt" + }, + new + { + FilterListId = 1012L, + Id = 1060L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mongolia.txt" + }, + new + { + FilterListId = 1013L, + Id = 1061L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Montenegro.txt" + }, + new + { + FilterListId = 1014L, + Id = 1062L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Montserrat.txt" + }, + new + { + FilterListId = 1015L, + Id = 1063L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Morocco.txt" + }, + new + { + FilterListId = 1016L, + Id = 1064L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mozambique.txt" + }, + new + { + FilterListId = 1017L, + Id = 1065L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Namibia.txt" + }, + new + { + FilterListId = 1018L, + Id = 1066L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Nauru.txt" + }, + new + { + FilterListId = 1019L, + Id = 1067L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Nepal.txt" + }, + new + { + FilterListId = 1020L, + Id = 1068L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Netherlands.txt" + }, + new + { + FilterListId = 1021L, + Id = 1069L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/NewCaledonia.txt" + }, + new + { + FilterListId = 1022L, + Id = 1070L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/NewZealand.txt" + }, + new + { + FilterListId = 1023L, + Id = 1071L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Nicaragua.txt" + }, + new + { + FilterListId = 1024L, + Id = 1072L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Niger.txt" + }, + new + { + FilterListId = 1025L, + Id = 1073L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Nigeria.txt" + }, + new + { + FilterListId = 1026L, + Id = 1074L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Niue.txt" + }, + new + { + FilterListId = 1027L, + Id = 1075L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/NorfolkIsland.txt" + }, + new + { + FilterListId = 1028L, + Id = 1076L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/NorthernMarianaIslands.txt" + }, + new + { + FilterListId = 1029L, + Id = 1077L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Norway.txt" + }, + new + { + FilterListId = 1030L, + Id = 1078L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Oman.txt" + }, + new + { + FilterListId = 1031L, + Id = 1079L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Pakistan.txt" + }, + new + { + FilterListId = 1032L, + Id = 1080L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Palau.txt" + }, + new + { + FilterListId = 1033L, + Id = 1081L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Palestine.txt" + }, + new + { + FilterListId = 1034L, + Id = 1082L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Panama.txt" + }, + new + { + FilterListId = 1035L, + Id = 1083L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Paraguay.txt" + }, + new + { + FilterListId = 1036L, + Id = 1084L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Peru.txt" + }, + new + { + FilterListId = 1037L, + Id = 1085L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Philippines.txt" + }, + new + { + FilterListId = 1038L, + Id = 1086L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/PitcairnIslands.txt" + }, + new + { + FilterListId = 1039L, + Id = 1087L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Poland.txt" + }, + new + { + FilterListId = 1040L, + Id = 1088L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Portugal.txt" + }, + new + { + FilterListId = 1041L, + Id = 1089L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/PuertoRico.txt" + }, + new + { + FilterListId = 1042L, + Id = 1090L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Qatar.txt" + }, + new + { + FilterListId = 1043L, + Id = 1091L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Romania.txt" + }, + new + { + FilterListId = 1044L, + Id = 1092L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Russia.txt" + }, + new + { + FilterListId = 1045L, + Id = 1093L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Rwanda.txt" + }, + new + { + FilterListId = 1047L, + Id = 1094L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaintHelena.txt" + }, + new + { + FilterListId = 1048L, + Id = 1095L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaintLucia.txt" + }, + new + { + FilterListId = 1049L, + Id = 1096L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaintPierreAndMiquelon.txt" + }, + new + { + FilterListId = 1050L, + Id = 1097L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaintVincentAndGrenadines.txt" + }, + new + { + FilterListId = 1051L, + Id = 1098L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Samoa.txt" + }, + new + { + FilterListId = 1052L, + Id = 1099L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SanMarino.txt" + }, + new + { + FilterListId = 1053L, + Id = 1100L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaoTomeAndPrincipe.txt" + }, + new + { + FilterListId = 1054L, + Id = 1101L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaudiArabia.txt" + }, + new + { + FilterListId = 1055L, + Id = 1102L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Senegal.txt" + }, + new + { + FilterListId = 1056L, + Id = 1103L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Serbia.txt" + }, + new + { + FilterListId = 1057L, + Id = 1104L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Seychelles.txt" + }, + new + { + FilterListId = 1058L, + Id = 1105L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SierraLeone.txt" + }, + new + { + FilterListId = 1059L, + Id = 1106L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Singapore.txt" + }, + new + { + FilterListId = 1060L, + Id = 1107L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SintMaarten.txt" + }, + new + { + FilterListId = 1061L, + Id = 1108L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Slovakia.txt" + }, + new + { + FilterListId = 1062L, + Id = 1109L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Slovenia.txt" + }, + new + { + FilterListId = 1063L, + Id = 1110L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Somalia.txt" + }, + new + { + FilterListId = 1064L, + Id = 1111L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SouthAfrica.txt" + }, + new + { + FilterListId = 1065L, + Id = 1112L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SouthGeorgiaAndSouthSandwichIslands.txt" + }, + new + { + FilterListId = 1066L, + Id = 1113L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SouthKorea.txt" + }, + new + { + FilterListId = 1067L, + Id = 1114L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Spain.txt" + }, + new + { + FilterListId = 1068L, + Id = 1115L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SriLanka.txt" + }, + new + { + FilterListId = 1069L, + Id = 1116L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Sudan.txt" + }, + new + { + FilterListId = 1070L, + Id = 1117L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Suriname.txt" + }, + new + { + FilterListId = 1071L, + Id = 1118L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Sweden.txt" + }, + new + { + FilterListId = 1072L, + Id = 1119L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Switzerland.txt" + }, + new + { + FilterListId = 1073L, + Id = 1120L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Syria.txt" + }, + new + { + FilterListId = 1074L, + Id = 1121L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Taiwan.txt" + }, + new + { + FilterListId = 1075L, + Id = 1122L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tajikistan.txt" + }, + new + { + FilterListId = 1076L, + Id = 1123L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tanzania.txt" + }, + new + { + FilterListId = 1077L, + Id = 1124L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Thailand.txt" + }, + new + { + FilterListId = 1078L, + Id = 1125L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/TimorLeste.txt" + }, + new + { + FilterListId = 1079L, + Id = 1126L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Togo.txt" + }, + new + { + FilterListId = 1080L, + Id = 1127L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tokelau.txt" + }, + new + { + FilterListId = 1081L, + Id = 1128L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tonga.txt" + }, + new + { + FilterListId = 1082L, + Id = 1129L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/TrinidadAndTobago.txt" + }, + new + { + FilterListId = 1083L, + Id = 1130L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tunisia.txt" + }, + new + { + FilterListId = 1084L, + Id = 1131L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Turkey.txt" + }, + new + { + FilterListId = 1085L, + Id = 1132L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Turkmenistan.txt" + }, + new + { + FilterListId = 1086L, + Id = 1133L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/TurksAndCaicosIslands.txt" + }, + new + { + FilterListId = 1087L, + Id = 1134L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tuvalu.txt" + }, + new + { + FilterListId = 1088L, + Id = 1135L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Uganda.txt" + }, + new + { + FilterListId = 1089L, + Id = 1136L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Ukraine.txt" + }, + new + { + FilterListId = 1090L, + Id = 1137L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/UnitedArabEmirates.txt" + }, + new + { + FilterListId = 1091L, + Id = 1138L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/UnitedKingdom.txt" + }, + new + { + FilterListId = 1092L, + Id = 1139L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/UnitedStatesofAmerica.txt" + }, + new + { + FilterListId = 1093L, + Id = 1140L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Uruguay.txt" + }, + new + { + FilterListId = 1094L, + Id = 1141L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Uzbekistan.txt" + }, + new + { + FilterListId = 1095L, + Id = 1142L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Vanuatu.txt" + }, + new + { + FilterListId = 1096L, + Id = 1143L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Venezuela.txt" + }, + new + { + FilterListId = 1097L, + Id = 1144L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Vietnam.txt" + }, + new + { + FilterListId = 1098L, + Id = 1145L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/WallisandFutuna.txt" + }, + new + { + FilterListId = 1099L, + Id = 1146L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/WesternSahara.txt" + }, + new + { + FilterListId = 1100L, + Id = 1147L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Zambia.txt" + }, + new + { + FilterListId = 1101L, + Id = 1148L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Zimbabwe.txt" + }, + new + { + FilterListId = 1102L, + Id = 1149L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-Bulgarian-List.txt" + }, + new + { + FilterListId = 1103L, + Id = 1150L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-Clickbait-Blocklist.txt" + }, + new + { + FilterListId = 1104L, + Id = 1151L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-Japanese-3rd-Party-SNS-Filters.txt" + }, + new + { + FilterListId = 1105L, + Id = 1152L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-Japanese-Filters.txt" + }, + new + { + FilterListId = 1106L, + Id = 1153L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-Japanese-Paranoid-Filters.txt" + }, + new + { + FilterListId = 1107L, + Id = 1154L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-X-Files.txt" + }, + new + { + FilterListId = 1108L, + Id = 1155L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABPindo.txt" + }, + new + { + FilterListId = 1109L, + Id = 1156L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/AakList.txt" + }, + new + { + FilterListId = 1110L, + Id = 1157L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/AdAway-Default-Blocklist.txt" + }, + new + { + FilterListId = 1111L, + Id = 1158L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-Filters-by-Gurudee.txt" + }, + new + { + FilterListId = 1112L, + Id = 1159L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-Iran.txt" + }, + new + { + FilterListId = 1113L, + Id = 1160L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-Korea.txt" + }, + new + { + FilterListId = 1114L, + Id = 1161L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-Persian.txt" + }, + new + { + FilterListId = 1115L, + Id = 1162L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-Polska.txt" + }, + new + { + FilterListId = 1116L, + Id = 1163L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-YouTube-Ads.txt" + }, + new + { + FilterListId = 1117L, + Id = 1164L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-uBlock-Polish-Filters.txt" + }, + new + { + FilterListId = 1118L, + Id = 1165L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adguard-English-Filter.txt" + }, + new + { + FilterListId = 1119L, + Id = 1166L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adware-Filters.txt" + }, + new + { + FilterListId = 1120L, + Id = 1167L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/AntiPubWeb.txt" + }, + new + { + FilterListId = 1121L, + Id = 1168L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Anudeep-Youtube.txt" + }, + new + { + FilterListId = 1122L, + Id = 1169L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Ayucat-Powerful.txt" + }, + new + { + FilterListId = 1123L, + Id = 1170L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/BLOGRAM-Analysis-Block-Filter-List-for-Japan.txt" + }, + new + { + FilterListId = 1124L, + Id = 1171L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/BLOGRAM-Basic-Filter-List-for-Japan.txt" + }, + new + { + FilterListId = 1126L, + Id = 1173L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Block-EU-Cookie-Shit-List.txt" + }, + new + { + FilterListId = 1127L, + Id = 1174L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Blockzilla.txt" + }, + new + { + FilterListId = 1128L, + Id = 1175L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/BreakingTheNews.txt" + }, + new + { + FilterListId = 1130L, + Id = 1176L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/CAMELEON-Hosts.txt" + }, + new + { + FilterListId = 1133L, + Id = 1177L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/CryptoWall-Ransomware-C2-Domain-blocklist.txt" + }, + new + { + FilterListId = 1135L, + Id = 1178L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/DNS-BH-Malware-Domains.txt" + }, + new + { + FilterListId = 1139L, + Id = 1179L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Disconnect-Malware-Filter.txt" + }, + new + { + FilterListId = 1140L, + Id = 1180L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Dshield-Suspicious-High.txt" + }, + new + { + FilterListId = 1141L, + Id = 1181L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Dshield-Suspicious-Low.txt" + }, + new + { + FilterListId = 1142L, + Id = 1182L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Dshield-Suspicious-Medium.txt" + }, + new + { + FilterListId = 1143L, + Id = 1183L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/EasyList-Czech-Slovak.txt" + }, + new + { + FilterListId = 1144L, + Id = 1184L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/EasyList-Dutch.txt" + }, + new + { + FilterListId = 1146L, + Id = 1185L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/EasyList-Italy.txt" + }, + new + { + FilterListId = 1148L, + Id = 1186L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/EasyList-Liste-FR.txt" + }, + new + { + FilterListId = 1149L, + Id = 1187L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/EasyList-Thailand.txt" + }, + new + { + FilterListId = 1151L, + Id = 1188L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/FadeMind-addSpam.txt" + }, + new + { + FilterListId = 1152L, + Id = 1189L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Fanboy-Annoyances-List.txt" + }, + new + { + FilterListId = 1153L, + Id = 1190L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Filtros-Nauscopicos.txt" + }, + new + { + FilterListId = 1154L, + Id = 1191L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Finnish-AntiSocial.txt" + }, + new + { + FilterListId = 1155L, + Id = 1192L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/GandJ-Hosts.txt" + }, + new + { + FilterListId = 1156L, + Id = 1193L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Greek-AdBlock-Filter.txt" + }, + new + { + FilterListId = 1157L, + Id = 1194L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Hant05080-Filters.txt" + }, + new + { + FilterListId = 1158L, + Id = 1195L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Henning-VanRaumle-Youtube.txt" + }, + new + { + FilterListId = 1159L, + Id = 1196L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Hufilter.txt" + }, + new + { + FilterListId = 1160L, + Id = 1197L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/HorusTeknoloji/TR-PhishingList/master/url-lists.txt" + }, + new + { + FilterListId = 1161L, + Id = 1198L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ImmortalMalwareDomains.txt" + }, + new + { + FilterListId = 1162L, + Id = 1199L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/JapaneseSiteAdblockFilterver2.txt" + }, + new + { + FilterListId = 1163L, + Id = 1200L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://phishing.army/download/phishing_army_blocklist_extended.txt" + }, + new + { + FilterListId = 1164L, + Id = 1201L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/HorusTeknoloji/TR-PhishingList/master/ip-lists.txt" + }, + new + { + FilterListId = 1165L, + Id = 1202L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/LatvianList.txt" + }, + new + { + FilterListId = 1166L, + Id = 1203L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Lead-Generator.txt" + }, + new + { + FilterListId = 1167L, + Id = 1204L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ListeAR.txt" + }, + new + { + FilterListId = 1168L, + Id = 1205L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Locky-Ransomware-C2-Domain-Blocklist.txt" + }, + new + { + FilterListId = 1169L, + Id = 1206L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Malware-Domains-Just-Domains.txt" + }, + new + { + FilterListId = 1172L, + Id = 1207L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Mat1th-DNS-add-block.txt" + }, + new + { + FilterListId = 1173L, + Id = 1208L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Mayvs-Private-Adblock-Filters.txt" + }, + new + { + FilterListId = 1174L, + Id = 1209L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Metaphoricgiraffe-Privacy-Filters.txt" + }, + new + { + FilterListId = 1175L, + Id = 1210L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Michael-Trimms-Hosts.txt" + }, + new + { + FilterListId = 1176L, + Id = 1211L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Mitchell-Krogs-Badd-Boyz-Hosts.txt" + }, + new + { + FilterListId = 1179L, + Id = 1212L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Notracking-hostnames.txt" + }, + new + { + FilterListId = 1180L, + Id = 1213L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/PLgeneral.txt" + }, + new + { + FilterListId = 1182L, + Id = 1214L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Piwik-Spam.txt" + }, + new + { + FilterListId = 1183L, + Id = 1215L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/PopupBlocker.txt" + }, + new + { + FilterListId = 1184L, + Id = 1216L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Prebake-Obtrusive.txt" + }, + new + { + FilterListId = 1185L, + Id = 1217L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Prigent-Malware.txt" + }, + new + { + FilterListId = 1187L, + Id = 1218L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Quidsup-Malicious.txt" + }, + new + { + FilterListId = 1189L, + Id = 1219L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ROad-Block.txt" + }, + new + { + FilterListId = 1190L, + Id = 1220L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/RU-AdList.txt" + }, + new + { + FilterListId = 1191L, + Id = 1221L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/RUAdListBitBlock.txt" + }, + new + { + FilterListId = 1192L, + Id = 1222L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/RUAdListCounters.txt" + }, + new + { + FilterListId = 1193L, + Id = 1223L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Ransomware-Domain-Blocklist.txt" + }, + new + { + FilterListId = 1194L, + Id = 1224L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/SVN-Slovenian.txt" + }, + new + { + FilterListId = 1196L, + Id = 1225L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/SatterlysAdblockPlusFilters.txt" + }, + new + { + FilterListId = 1197L, + Id = 1226L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Schacks-Adblock-Plus-Liste.txt" + }, + new + { + FilterListId = 1199L, + Id = 1227L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Spam-Assassin-Bill-Stearns.txt" + }, + new + { + FilterListId = 1202L, + Id = 1228L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Fakenews.txt" + }, + new + { + FilterListId = 1203L, + Id = 1229L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Gambling.txt" + }, + new + { + FilterListId = 1204L, + Id = 1230L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Hosts.txt" + }, + new + { + FilterListId = 1205L, + Id = 1231L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Porn.txt" + }, + new + { + FilterListId = 1206L, + Id = 1232L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Risky-Hosts.txt" + }, + new + { + FilterListId = 1207L, + Id = 1233L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Trackers.txt" + }, + new + { + FilterListId = 1209L, + Id = 1234L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Unified-Hosts.txt" + }, + new + { + FilterListId = 1210L, + Id = 1235L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/TakoYachty-Gift-Card-Killer.txt" + }, + new + { + FilterListId = 1211L, + Id = 1236L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/TeslaCrypt-Ransomware-C2-Domain-Blocklist.txt" + }, + new + { + FilterListId = 1212L, + Id = 1237L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/TeslaCrypt-Ransomware-Payment-Sites-Domain-Blocklist.txt" + }, + new + { + FilterListId = 1213L, + Id = 1238L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/The-Hosts-File-Project.txt" + }, + new + { + FilterListId = 1214L, + Id = 1239L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Thoughtconverge-AdBlock-Filters.txt" + }, + new + { + FilterListId = 1215L, + Id = 1240L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Tofu-Filter.txt" + }, + new + { + FilterListId = 1216L, + Id = 1241L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/TorrentLocker-Ransomware-C2-Domain-Blocklist.txt" + }, + new + { + FilterListId = 1217L, + Id = 1242L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/TorrentLocker-Ransomware-Payment-Sites-Domain-Blocklist.txt" + }, + new + { + FilterListId = 1218L, + Id = 1243L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Turk-adlist.txt" + }, + new + { + FilterListId = 1220L, + Id = 1244L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Wiltteri.txt" + }, + new + { + FilterListId = 1221L, + Id = 1245L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/WindowsSpyBlocker7.txt" + }, + new + { + FilterListId = 1222L, + Id = 1246L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/WindowsSpyBlocker81.txt" + }, + new + { + FilterListId = 1223L, + Id = 1247L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Yhonay-AntiPopAds.txt" + }, + new + { + FilterListId = 1224L, + Id = 1248L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/YousList.txt" + }, + new + { + FilterListId = 1225L, + Id = 1249L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ZeuS-Domain-Blocklist-Bad-Domains.txt" + }, + new + { + FilterListId = 1226L, + Id = 1250L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/uAssetsFilters.txt" + }, + new + { + FilterListId = 1227L, + Id = 1251L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/uAssetsPrivacy.txt" + }, + new + { + FilterListId = 1228L, + Id = 1252L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/uAssetsUnbreak.txt" + }, + new + { + FilterListId = 1229L, + Id = 1253L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/uBOPersonalFilters.txt" + }, + new + { + FilterListId = 1230L, + Id = 1254L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/uBlockFiltersPlus.txt" + }, + new + { + FilterListId = 1243L, + Id = 1264L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CombinedBlacklists/CombinedBlackLists.txt" + }, + new + { + FilterListId = 1244L, + Id = 1265L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CombinedBlacklists/DeathbybandaidList.txt" + }, + new + { + FilterListId = 1245L, + Id = 1266L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CombinedWhitelists/CombinedWhiteLists.txt" + }, + new + { + FilterListId = 1247L, + Id = 1267L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-'Battle Royale' List.txt" + }, + new + { + FilterListId = 1247L, + Id = 1268L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-'Battle Royale' List.txt" + }, + new + { + FilterListId = 1278L, + Id = 1269L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://better.fyi/blockerList.txt" + }, + new + { + FilterListId = 1279L, + Id = 1270L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/olegwukr/polish-privacy-filters/master/adblock.txt" + }, + new + { + FilterListId = 1280L, + Id = 1271L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/olegwukr/polish-privacy-filters/master/anti-adblock.txt" + }, + new + { + FilterListId = 1281L, + Id = 1272L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/olegwukr/polish-privacy-filters/master/anti-adblock-suplement.txt" + }, + new + { + FilterListId = 1282L, + Id = 1273L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/koenrh/little-snitch-rules/master/apps.lsrules" + }, + new + { + FilterListId = 1283L, + Id = 1274L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AnXh3L0/blocklist/master/albanian-easylist-addition/Albania.txt" + }, + new + { + FilterListId = 1284L, + Id = 1275L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/finnish-easylist-addition/finnish-easylist-addition/master/annoyances/Finland_annoyances.txt" + }, + new + { + FilterListId = 1285L, + Id = 1276L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/theel0ja/uMatrix-rules/master/my-umatrix-rules.txt" + }, + new + { + FilterListId = 1286L, + Id = 1277L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/PoorPocketsMcNewHold/steamscamsites/master/steamscamsite.txt" + }, + new + { + FilterListId = 1288L, + Id = 1278L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/NanoAdblockerLab/NanoContrib/master/dist/placeholder-buster.txt" + }, + new + { + FilterListId = 1288L, + Id = 1279L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/NanoAdblockerLab/NanoContrib/master/dist/placeholder-buster.txt" + }, + new + { + FilterListId = 1289L, + Id = 1280L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/KnowYourMemePureBrowsingExperience.txt" + }, + new + { + FilterListId = 1289L, + Id = 1281L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/KnowYourMemePureBrowsingExperience.txt" + }, + new + { + FilterListId = 1290L, + Id = 1282L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Dandelion Sprout's Anti-Malware List.txt" + }, + new + { + FilterListId = 1290L, + Id = 1283L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Dandelion Sprout's Anti-Malware List.txt" + }, + new + { + FilterListId = 1291L, + Id = 1284L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/Twitter De-Politificator.txt" + }, + new + { + FilterListId = 1291L, + Id = 1285L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/Twitter De-Politificator.txt" + }, + new + { + FilterListId = 1292L, + Id = 1286L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Android Scum Class — Fake notification counters.txt" + }, + new + { + FilterListId = 1292L, + Id = 1287L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Android Scum Class — Fake notification counters.txt" + }, + new + { + FilterListId = 1293L, + Id = 1288L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Adblock list templates/Adblock list template -Hosts and uBlock Origin-.txt" + }, + new + { + FilterListId = 1293L, + Id = 1289L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Adblock list templates/Adblock list template -Hosts and uBlock Origin-.txt" + }, + new + { + FilterListId = 1294L, + Id = 1290L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://crapblock.theel0ja.info/even-cleaner-news-sites.txt" + }, + new + { + FilterListId = 1295L, + Id = 1291L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/intr0/iVOID.GitLab.io/raw/master/iVOID.hosts" + }, + new + { + FilterListId = 1295L, + Id = 1292L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://notabug.org/-intr0/iVOID/raw/master/iVOID.hosts" + }, + new + { + FilterListId = 1295L, + Id = 1293L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "http://w2caclgy62idhzyut23ucimqw5tsmfbl4b2iyjzpvngatast2fiqxbyd.onion/ivoid/iVOID.hosts" + }, + new + { + FilterListId = 1296L, + Id = 1294L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/intr0/DomainVoider/raw/master/DomainVoider" + }, + new + { + FilterListId = 1296L, + Id = 1295L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://notabug.org/-intr0/DomainVoider/raw/master/DomainVoider" + }, + new + { + FilterListId = 1296L, + Id = 1296L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "http://w2caclgy62idhzyut23ucimqw5tsmfbl4b2iyjzpvngatast2fiqxbyd.onion/domainvoider/DomainVoider.txt" + }, + new + { + FilterListId = 1297L, + Id = 1297L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/filters/css_style_filters.txt" + }, + new + { + FilterListId = 1298L, + Id = 1298L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hosts.nfz.moe/full/hosts" + }, + new + { + FilterListId = 1299L, + Id = 1299L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hosts.nfz.moe/basic/hosts" + }, + new + { + FilterListId = 1299L, + Id = 1300L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/neoFelhz/neohosts/gh-pages/basic/hosts" + }, + new + { + FilterListId = 1300L, + Id = 1301L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.stopforumspam.com/downloads/toxic_domains_whole.txt" + }, + new + { + FilterListId = 1301L, + Id = 1302L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/hosts/test/hosts_facebook0.txt" + }, + new + { + FilterListId = 1301L, + Id = 1303L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/hosts/test/hosts_facebook0.txt" + }, + new + { + FilterListId = 1302L, + Id = 1304L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/hosts/hosts_leftover.txt" + }, + new + { + FilterListId = 1302L, + Id = 1305L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/hosts/hosts_leftover.txt" + }, + new + { + FilterListId = 1303L, + Id = 1306L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/other/MiscAnnoyance.txt" + }, + new + { + FilterListId = 1303L, + Id = 1307L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/other/MiscAnnoyance.txt" + }, + new + { + FilterListId = 1304L, + Id = 1308L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/ubo-css/iHateCircles.txt" + }, + new + { + FilterListId = 1304L, + Id = 1309L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/ubo-css/iHateCircles.txt" + }, + new + { + FilterListId = 1305L, + Id = 1310L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/adv/domains" + }, + new + { + FilterListId = 1306L, + Id = 1311L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/adv/urls" + }, + new + { + FilterListId = 1307L, + Id = 1312L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/aggressive/domains" + }, + new + { + FilterListId = 1308L, + Id = 1313L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/aggressive/urls" + }, + new + { + FilterListId = 1309L, + Id = 1314L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/alcohol/domains" + }, + new + { + FilterListId = 1310L, + Id = 1315L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/alcohol/urls" + }, + new + { + FilterListId = 1311L, + Id = 1316L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/anonvpn/domains" + }, + new + { + FilterListId = 1312L, + Id = 1317L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/anonvpn/urls" + }, + new + { + FilterListId = 1313L, + Id = 1318L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/bikes/domains" + }, + new + { + FilterListId = 1314L, + Id = 1319L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/bikes/urls" + }, + new + { + FilterListId = 1315L, + Id = 1320L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/boats/domains" + }, + new + { + FilterListId = 1316L, + Id = 1321L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/boats/urls" + }, + new + { + FilterListId = 1317L, + Id = 1322L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/cars/domains" + }, + new + { + FilterListId = 1318L, + Id = 1323L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/cars/urls" + }, + new + { + FilterListId = 1319L, + Id = 1324L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/planes/domains" + }, + new + { + FilterListId = 1320L, + Id = 1325L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/planes/urls" + }, + new + { + FilterListId = 1321L, + Id = 1326L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/chat/domains" + }, + new + { + FilterListId = 1322L, + Id = 1327L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/chat/urls" + }, + new + { + FilterListId = 1323L, + Id = 1328L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/costtraps/domains" + }, + new + { + FilterListId = 1324L, + Id = 1329L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/costtraps/urls" + }, + new + { + FilterListId = 1325L, + Id = 1330L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/dating/domains" + }, + new + { + FilterListId = 1326L, + Id = 1331L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/dating/urls" + }, + new + { + FilterListId = 1327L, + Id = 1332L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/downloads/domains" + }, + new + { + FilterListId = 1328L, + Id = 1333L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/downloads/urls" + }, + new + { + FilterListId = 1329L, + Id = 1334L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/drugs/domains" + }, + new + { + FilterListId = 1330L, + Id = 1335L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/drugs/urls" + }, + new + { + FilterListId = 1331L, + Id = 1336L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/dynamic/domains" + }, + new + { + FilterListId = 1332L, + Id = 1337L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/dynamic/urls" + }, + new + { + FilterListId = 1333L, + Id = 1338L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/education/schools/domains" + }, + new + { + FilterListId = 1334L, + Id = 1339L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/education/schools/urls" + }, + new + { + FilterListId = 1335L, + Id = 1340L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/banking/domains" + }, + new + { + FilterListId = 1336L, + Id = 1341L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/banking/urls" + }, + new + { + FilterListId = 1337L, + Id = 1342L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/insurance/domains" + }, + new + { + FilterListId = 1338L, + Id = 1343L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/insurance/urls" + }, + new + { + FilterListId = 1339L, + Id = 1344L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/moneylending/domains" + }, + new + { + FilterListId = 1340L, + Id = 1345L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/moneylending/urls" + }, + new + { + FilterListId = 1341L, + Id = 1346L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/other/domains" + }, + new + { + FilterListId = 1342L, + Id = 1347L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/other/urls" + }, + new + { + FilterListId = 1343L, + Id = 1348L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/realestate/domains" + }, + new + { + FilterListId = 1344L, + Id = 1349L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/realestate/urls" + }, + new + { + FilterListId = 1345L, + Id = 1350L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/trading/domains" + }, + new + { + FilterListId = 1346L, + Id = 1351L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/trading/urls" + }, + new + { + FilterListId = 1347L, + Id = 1352L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/fortunetelling/domains" + }, + new + { + FilterListId = 1348L, + Id = 1353L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/fortunetelling/urls" + }, + new + { + FilterListId = 1349L, + Id = 1354L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/forum/domains" + }, + new + { + FilterListId = 1350L, + Id = 1355L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/forum/urls" + }, + new + { + FilterListId = 1351L, + Id = 1356L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/gamble/domains" + }, + new + { + FilterListId = 1352L, + Id = 1357L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/gamble/urls" + }, + new + { + FilterListId = 1353L, + Id = 1358L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/government/domains" + }, + new + { + FilterListId = 1354L, + Id = 1359L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/government/urls" + }, + new + { + FilterListId = 1355L, + Id = 1360L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hacking/domains" + }, + new + { + FilterListId = 1356L, + Id = 1361L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hacking/urls" + }, + new + { + FilterListId = 1357L, + Id = 1362L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/cooking/domains" + }, + new + { + FilterListId = 1358L, + Id = 1363L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/cooking/urls" + }, + new + { + FilterListId = 1359L, + Id = 1364L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/games-misc/domains" + }, + new + { + FilterListId = 1360L, + Id = 1365L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/games-misc/urls" + }, + new + { + FilterListId = 1361L, + Id = 1366L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/games-online/domains" + }, + new + { + FilterListId = 1362L, + Id = 1367L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/games-online/urls" + }, + new + { + FilterListId = 1363L, + Id = 1368L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/gardening/domains" + }, + new + { + FilterListId = 1364L, + Id = 1369L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/gardening/urls" + }, + new + { + FilterListId = 1365L, + Id = 1370L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/pets/domains" + }, + new + { + FilterListId = 1366L, + Id = 1371L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/pets/urls" + }, + new + { + FilterListId = 1367L, + Id = 1372L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/homestyle/domains" + }, + new + { + FilterListId = 1368L, + Id = 1373L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/homestyle/urls" + }, + new + { + FilterListId = 1369L, + Id = 1374L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hospitals/domains" + }, + new + { + FilterListId = 1370L, + Id = 1375L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hospitals/urls" + }, + new + { + FilterListId = 1371L, + Id = 1376L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/imagehosting/domains" + }, + new + { + FilterListId = 1372L, + Id = 1377L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/imagehosting/urls" + }, + new + { + FilterListId = 1373L, + Id = 1378L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/isp/domains" + }, + new + { + FilterListId = 1374L, + Id = 1379L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/isp/urls" + }, + new + { + FilterListId = 1375L, + Id = 1380L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/jobsearch/domains" + }, + new + { + FilterListId = 1376L, + Id = 1381L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/jobsearch/urls" + }, + new + { + FilterListId = 1377L, + Id = 1382L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/library/domains" + }, + new + { + FilterListId = 1378L, + Id = 1383L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/library/urls" + }, + new + { + FilterListId = 1379L, + Id = 1384L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/military/domains" + }, + new + { + FilterListId = 1380L, + Id = 1385L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/military/urls" + }, + new + { + FilterListId = 1381L, + Id = 1386L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/models/domains" + }, + new + { + FilterListId = 1382L, + Id = 1387L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/models/urls" + }, + new + { + FilterListId = 1383L, + Id = 1388L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/movies/domains" + }, + new + { + FilterListId = 1384L, + Id = 1389L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/movies/urls" + }, + new + { + FilterListId = 1385L, + Id = 1390L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/music/domains" + }, + new + { + FilterListId = 1386L, + Id = 1391L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/music/urls" + }, + new + { + FilterListId = 1387L, + Id = 1392L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/news/domains" + }, + new + { + FilterListId = 1388L, + Id = 1393L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/news/urls" + }, + new + { + FilterListId = 1389L, + Id = 1394L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/podcasts/domains" + }, + new + { + FilterListId = 1390L, + Id = 1395L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/podcasts/urls" + }, + new + { + FilterListId = 1391L, + Id = 1396L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/politics/domains" + }, + new + { + FilterListId = 1392L, + Id = 1397L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/politics/urls" + }, + new + { + FilterListId = 1393L, + Id = 1398L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/porn/domains" + }, + new + { + FilterListId = 1394L, + Id = 1399L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/porn/urls" + }, + new + { + FilterListId = 1395L, + Id = 1400L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/radiotv/domains" + }, + new + { + FilterListId = 1396L, + Id = 1401L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/radiotv/urls" + }, + new + { + FilterListId = 1397L, + Id = 1402L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/humor/domains" + }, + new + { + FilterListId = 1398L, + Id = 1403L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/humor/urls" + }, + new + { + FilterListId = 1399L, + Id = 1404L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/martialarts/domains" + }, + new + { + FilterListId = 1400L, + Id = 1405L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/martialarts/urls" + }, + new + { + FilterListId = 1401L, + Id = 1406L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/restaurants/domains" + }, + new + { + FilterListId = 1402L, + Id = 1407L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/restaurants/urls" + }, + new + { + FilterListId = 1403L, + Id = 1408L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/sports/domains" + }, + new + { + FilterListId = 1404L, + Id = 1409L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/sports/urls" + }, + new + { + FilterListId = 1405L, + Id = 1410L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/travel/domains" + }, + new + { + FilterListId = 1406L, + Id = 1411L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/travel/urls" + }, + new + { + FilterListId = 1407L, + Id = 1412L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/wellness/domains" + }, + new + { + FilterListId = 1408L, + Id = 1413L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/wellness/urls" + }, + new + { + FilterListId = 1409L, + Id = 1414L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/redirector/domains" + }, + new + { + FilterListId = 1410L, + Id = 1415L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/redirector/urls" + }, + new + { + FilterListId = 1411L, + Id = 1416L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/religion/domains" + }, + new + { + FilterListId = 1412L, + Id = 1417L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/religion/urls" + }, + new + { + FilterListId = 1413L, + Id = 1418L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/remotecontrol/domains" + }, + new + { + FilterListId = 1414L, + Id = 1419L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/remotecontrol/urls" + }, + new + { + FilterListId = 1415L, + Id = 1420L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/ringtones/domains" + }, + new + { + FilterListId = 1416L, + Id = 1421L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/ringtones/urls" + }, + new + { + FilterListId = 1417L, + Id = 1422L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/science/astronomy/domains" + }, + new + { + FilterListId = 1418L, + Id = 1423L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/science/astronomy/urls" + }, + new + { + FilterListId = 1419L, + Id = 1424L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/science/chemistry/domains" + }, + new + { + FilterListId = 1420L, + Id = 1425L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/science/chemistry/urls" + }, + new + { + FilterListId = 1421L, + Id = 1426L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/searchengines/domains" + }, + new + { + FilterListId = 1422L, + Id = 1427L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/searchengines/urls" + }, + new + { + FilterListId = 1423L, + Id = 1428L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/sex/education/domains" + }, + new + { + FilterListId = 1424L, + Id = 1429L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/sex/education/urls" + }, + new + { + FilterListId = 1425L, + Id = 1430L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/sex/lingerie/domains" + }, + new + { + FilterListId = 1426L, + Id = 1431L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/sex/lingerie/urls" + }, + new + { + FilterListId = 1427L, + Id = 1432L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/shopping/domains" + }, + new + { + FilterListId = 1428L, + Id = 1433L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/shopping/urls" + }, + new + { + FilterListId = 1429L, + Id = 1434L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/socialnet/domains" + }, + new + { + FilterListId = 1430L, + Id = 1435L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/socialnet/urls" + }, + new + { + FilterListId = 1431L, + Id = 1436L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/spyware/domains" + }, + new + { + FilterListId = 1432L, + Id = 1437L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/spyware/urls" + }, + new + { + FilterListId = 1433L, + Id = 1438L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/tracker/domains" + }, + new + { + FilterListId = 1434L, + Id = 1439L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/tracker/urls" + }, + new + { + FilterListId = 1435L, + Id = 1440L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/updatesites/domains" + }, + new + { + FilterListId = 1436L, + Id = 1441L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/updatesites/urls" + }, + new + { + FilterListId = 1437L, + Id = 1442L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/urlshortener/domains" + }, + new + { + FilterListId = 1438L, + Id = 1443L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/urlshortener/urls" + }, + new + { + FilterListId = 1439L, + Id = 1444L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/violence/domains" + }, + new + { + FilterListId = 1440L, + Id = 1445L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/violence/urls" + }, + new + { + FilterListId = 1441L, + Id = 1446L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/warez/domains" + }, + new + { + FilterListId = 1442L, + Id = 1447L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/warez/urls" + }, + new + { + FilterListId = 1443L, + Id = 1448L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/weapons/domains" + }, + new + { + FilterListId = 1444L, + Id = 1449L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/weapons/urls" + }, + new + { + FilterListId = 1445L, + Id = 1450L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/webmail/domains" + }, + new + { + FilterListId = 1446L, + Id = 1451L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/webmail/urls" + }, + new + { + FilterListId = 1447L, + Id = 1452L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/webphone/domains" + }, + new + { + FilterListId = 1448L, + Id = 1453L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/webphone/urls" + }, + new + { + FilterListId = 1449L, + Id = 1454L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/webradio/domains" + }, + new + { + FilterListId = 1450L, + Id = 1455L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/webradio/urls" + }, + new + { + FilterListId = 1451L, + Id = 1456L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/webtv/domains" + }, + new + { + FilterListId = 1452L, + Id = 1457L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/webtv/urls" + }, + new + { + FilterListId = 1454L, + Id = 1458L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AnnoyingBannersAndOverlays.txt" + }, + new + { + FilterListId = 1454L, + Id = 1459L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AnnoyingBannersAndOverlays.txt" + }, + new + { + FilterListId = 1455L, + Id = 1460L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AnnoyancesList" + }, + new + { + FilterListId = 1455L, + Id = 1461L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AnnoyancesList" + }, + new + { + FilterListId = 1456L, + Id = 1462L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/SocialShareList.txt" + }, + new + { + FilterListId = 1456L, + Id = 1463L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/SocialShareList.txt" + }, + new + { + FilterListId = 1457L, + Id = 1464L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/PoorPocketsMcNewHold/SteamScamSites/master/steamscamsitesashes" + }, + new + { + FilterListId = 1458L, + Id = 1465L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/anudeepND/blacklist/master/facebook.txt" + }, + new + { + FilterListId = 1459L, + Id = 1466L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/AntiAstrologyList.txt" + }, + new + { + FilterListId = 1459L, + Id = 1467L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/AntiAstrologyList.txt" + }, + new + { + FilterListId = 1460L, + Id = 1468L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/ListForOldPeople.txt" + }, + new + { + FilterListId = 1460L, + Id = 1469L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/ListForOldPeople.txt" + }, + new + { + FilterListId = 1461L, + Id = 1470L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAmazonListForTwitch.txt" + }, + new + { + FilterListId = 1461L, + Id = 1471L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAmazonListForTwitch.txt" + }, + new + { + FilterListId = 1463L, + Id = 1472L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/CitizenXVIL/Hosts/master/Optimized_hosts_list.txt" + }, + new + { + FilterListId = 1464L, + Id = 1473L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/CitizenXVIL/Hosts/master/mobile domains.txt" + }, + new + { + FilterListId = 1465L, + Id = 1474L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/CitizenXVIL/Hosts/master/Youtube hosts.txt" + }, + new + { + FilterListId = 1466L, + Id = 1475L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Zykreh/vortexhosts/master/vortex.txt" + }, + new + { + FilterListId = 1467L, + Id = 1476L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Zykreh/vortexhosts/master/vortex_energized.txt" + }, + new + { + FilterListId = 1468L, + Id = 1477L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Zykreh/vortexhosts/master/vortex_experimental.txt" + }, + new + { + FilterListId = 1469L, + Id = 1478L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Zykreh/vortexhosts/master/vortex_lite.txt" + }, + new + { + FilterListId = 1470L, + Id = 1479L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/xtreme/formats/hosts.txt" + }, + new + { + FilterListId = 1471L, + Id = 1480L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://getadhell.com/standard-package.txt" + }, + new + { + FilterListId = 1473L, + Id = 1481L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ookangzheng/blahdns/master/hosts/blacklist.txt" + }, + new + { + FilterListId = 1473L, + Id = 1482L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://oooo.b-cdn.net/blahdns/adsblock.txt" + }, + new + { + FilterListId = 1474L, + Id = 1483L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ookangzheng/blahdns/master/hosts/whitelist.txt" + }, + new + { + FilterListId = 1477L, + Id = 1486L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hblock.molinero.dev/hosts_rpz.txt" + }, + new + { + FilterListId = 1478L, + Id = 1487L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hblock.molinero.dev/hosts_unbound.conf" + }, + new + { + FilterListId = 1479L, + Id = 1488L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hblock.molinero.dev/hosts_dnsmasq.conf" + }, + new + { + FilterListId = 1480L, + Id = 1489L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://oooo.b-cdn.net/blahdns/rpz.txt" + }, + new + { + FilterListId = 1484L, + Id = 1492L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/torrent.txt" + }, + new + { + FilterListId = 1485L, + Id = 1493L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ngosang/trackerslist/master/trackers_all.txt" + }, + new + { + FilterListId = 1486L, + Id = 1494L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ngosang/trackerslist/master/blacklist.txt" + }, + new + { + FilterListId = 1487L, + Id = 1495L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/quedlin/blacklist/master/domains" + }, + new + { + FilterListId = 1490L, + Id = 1496L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mitchellkrogza/Phishing.Database/master/phishing-domains-ACTIVE.txt" + }, + new + { + FilterListId = 1492L, + Id = 1497L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mitchellkrogza/Ultimate.Hosts.Blacklist/master/hosts.deny/hosts0.deny" + }, + new + { + FilterListId = 1493L, + Id = 1498L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/greatis/Anti-WebMiner/master/blacklist.txt" + }, + new + { + FilterListId = 1494L, + Id = 1499L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.carl.net/spam/access.txt" + }, + new + { + FilterListId = 1495L, + Id = 1500L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tankmohit/UnifiedHosts/master/hosts.all" + }, + new + { + FilterListId = 1496L, + Id = 1501L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://www.taz.net.au/Mail/SpamDomains" + }, + new + { + FilterListId = 1497L, + Id = 1502L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tankmohit/UnifiedHosts/master/whitelist" + }, + new + { + FilterListId = 1498L, + Id = 1503L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mitchellkrogza/Stop.Google.Analytics.Ghost.Spam.HOWTO/master/output/domains/ACTIVE/list" + }, + new + { + FilterListId = 1499L, + Id = 1504L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mitchellkrogza/Stop.Google.Analytics.Ghost.Spam.HOWTO/master/output/domains/INACTIVE/list" + }, + new + { + FilterListId = 1500L, + Id = 1505L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://cybercrime-tracker.net/all.php" + }, + new + { + FilterListId = 1501L, + Id = 1506L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/joelotz/URL_Blacklist/master/blacklist.csv" + }, + new + { + FilterListId = 1502L, + Id = 1507L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/oznu/dns-zone-blacklist/master/bind/zones.blacklist" + }, + new + { + FilterListId = 1503L, + Id = 1508L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/oznu/dns-zone-blacklist/master/dnsmasq/dnsmasq.blacklist" + }, + new + { + FilterListId = 1504L, + Id = 1509L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/oznu/dns-zone-blacklist/master/unbound/unbound.blacklist" + }, + new + { + FilterListId = 1505L, + Id = 1510L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ReddestDream/reddestdream.github.io/master/Projects/MinimalHostsCB/etc/MinimalHostsBlocker/minimalhosts" + }, + new + { + FilterListId = 1506L, + Id = 1511L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ReddestDream/reddestdream.github.io/master/Projects/MinimalHosts/etc/MinimalHostsBlocker/minimalhosts" + }, + new + { + FilterListId = 1507L, + Id = 1512L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://osint.bambenekconsulting.com/feeds/dga-feed.txt" + }, + new + { + FilterListId = 1508L, + Id = 1513L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://joewein.net/dl/bl/dom-bl-base.txt" + }, + new + { + FilterListId = 1509L, + Id = 1514L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://joewein.net/dl/bl/dom-bl.txt" + }, + new + { + FilterListId = 1510L, + Id = 1515L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://joewein.net/dl/bl/from-bl.txt" + }, + new + { + FilterListId = 1511L, + Id = 1516L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mitchellkrogza/Fail2Ban.WebExploits/master/input-source/exploits.list" + }, + new + { + FilterListId = 1513L, + Id = 1518L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/oleksiig/Squid-BlackList/master/denied_ext.conf" + }, + new + { + FilterListId = 1517L, + Id = 1519L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mitchellkrogza/Ultimate.Hosts.Blacklist/master/ips/ips0.list" + }, + new + { + FilterListId = 1520L, + Id = 1520L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hosts.ubuntu101.co.za/superhosts.deny" + }, + new + { + FilterListId = 1523L, + Id = 1521L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/newhosts-final.hosts" + }, + new + { + FilterListId = 1524L, + Id = 1522L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/combined-final-win.dat" + }, + new + { + FilterListId = 1525L, + Id = 1523L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/combined-final.p2p" + }, + new + { + FilterListId = 1526L, + Id = 1524L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=unbound&showintro=1&mimetype=plaintext" + }, + new + { + FilterListId = 1527L, + Id = 1525L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=bindconfig&showintro=1&mimetype=plaintext" + }, + new + { + FilterListId = 1529L, + Id = 1527L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/koreanlist.txt" + }, + new + { + FilterListId = 1530L, + Id = 1528L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bcye/Hello-Goodbye/master/filterlist.txt" + }, + new + { + FilterListId = 1531L, + Id = 1529L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kano1/I/master/adware_Scrip.txt" + }, + new + { + FilterListId = 1532L, + Id = 1530L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kano1/Kano/master/Spyware_Scrip.txt" + }, + new + { + FilterListId = 1533L, + Id = 1531L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/legacy.txt" + }, + new + { + FilterListId = 1534L, + Id = 1532L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hostsfile.mine.nu/hosts.ips" + }, + new + { + FilterListId = 1535L, + Id = 1533L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/WordPressTranslatorAssistant.txt" + }, + new + { + FilterListId = 1535L, + Id = 1534L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/WordPressTranslatorAssistant.txt" + }, + new + { + FilterListId = 1536L, + Id = 1535L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/RooneyMcNibNug/pihole-stuff/master/SNAFU.txt" + }, + new + { + FilterListId = 1537L, + Id = 1536L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easyprivacy.tpl" + }, + new + { + FilterListId = 1538L, + Id = 1537L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylist_noelemhide.tpl" + }, + new + { + FilterListId = 1539L, + Id = 1538L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easytest.tpl" + }, + new + { + FilterListId = 1540L, + Id = 1539L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistpolish.tpl" + }, + new + { + FilterListId = 1541L, + Id = 1540L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/exceptionrules.tpl" + }, + new + { + FilterListId = 1543L, + Id = 1542L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/koreanlist.tpl" + }, + new + { + FilterListId = 1544L, + Id = 1543L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistportuguese.tpl" + }, + new + { + FilterListId = 1545L, + Id = 1544L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/wiltteri/subscriptions/master/wiltteri.tpl" + }, + new + { + FilterListId = 1546L, + Id = 1545L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/wiltteri/subscriptions/master/wiltteri-reborn.tpl" + }, + new + { + FilterListId = 1547L, + Id = 1546L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/indianlist.tpl" + }, + new + { + FilterListId = 1548L, + Id = 1547L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easylistspanish+easylist.txt" + }, + new + { + FilterListId = 1549L, + Id = 1548L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/wiltteri+easylist.txt" + }, + new + { + FilterListId = 1550L, + Id = 1549L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/WebsiteStretcherVertical.txt" + }, + new + { + FilterListId = 1550L, + Id = 1550L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/WebsiteStretcherVertical.txt" + }, + new + { + FilterListId = 1551L, + Id = 1551L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/WebsiteStretcher4K.txt" + }, + new + { + FilterListId = 1551L, + Id = 1552L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/WebsiteStretcher4K.txt" + }, + new + { + FilterListId = 1552L, + Id = 1553L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/RedditTrashRemovalService.txt" + }, + new + { + FilterListId = 1552L, + Id = 1554L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/RedditTrashRemovalService.txt" + }, + new + { + FilterListId = 1554L, + Id = 1555L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/AntiPrayerTimesList.txt" + }, + new + { + FilterListId = 1554L, + Id = 1556L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/AntiPrayerTimesList.txt" + }, + new + { + FilterListId = 1555L, + Id = 1557L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bebasid/bebasid/master/releases/hosts" + }, + new + { + FilterListId = 1556L, + Id = 1558L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ColumWalsh/unsullied/master/unsullied.txt" + }, + new + { + FilterListId = 1557L, + Id = 1559L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DataMaster-2501/DataMaster-Android-AdBlock-Hosts/master/hosts" + }, + new + { + FilterListId = 1558L, + Id = 1560L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bogachenko/fuckfuckadblock/master/fuckfuckadblock.txt" + }, + new + { + FilterListId = 1559L, + Id = 1561L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/BreakingTheNews/BreakingTheNews.github.io/master/hosts" + }, + new + { + FilterListId = 1560L, + Id = 1562L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ruvelro/Halt-and-Block-Mining/master/HBmining.bat" + }, + new + { + FilterListId = 1561L, + Id = 1563L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jkrejcha/AdmiraList/master/AdmiraList.txt" + }, + new + { + FilterListId = 1562L, + Id = 1564L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mtxadmin/ublock/master/it" + }, + new + { + FilterListId = 1564L, + Id = 1566L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiCelebBirthList" + }, + new + { + FilterListId = 1564L, + Id = 1567L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiCelebBirthList" + }, + new + { + FilterListId = 1566L, + Id = 1570L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/biroloter/Mobile-Ad-Hosts/master/hosts" + }, + new + { + FilterListId = 1567L, + Id = 1571L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/101_optimized.txt" + }, + new + { + FilterListId = 1568L, + Id = 1572L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/2_optimized.txt" + }, + new + { + FilterListId = 1569L, + Id = 1573L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/16_optimized.txt" + }, + new + { + FilterListId = 1570L, + Id = 1574L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/6_optimized.txt" + }, + new + { + FilterListId = 1573L, + Id = 1575L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/qwIvan/privoxy-adfilter/master/adfilter.action" + }, + new + { + FilterListId = 1574L, + Id = 1576L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mtxadmin/ublock/master/hosts.txt" + }, + new + { + FilterListId = 1575L, + Id = 1577L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/TwitchEvenMorePureViewingExperience.txt" + }, + new + { + FilterListId = 1575L, + Id = 1578L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/TwitchEvenMorePureViewingExperience.txt" + }, + new + { + FilterListId = 1576L, + Id = 1579L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-'Custom cursors' List.txt" + }, + new + { + FilterListId = 1576L, + Id = 1580L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-'Custom cursors' List.txt" + }, + new + { + FilterListId = 1577L, + Id = 1581L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/dhowe/uAssets/master/filters/adnauseam.txt" + }, + new + { + FilterListId = 1578L, + Id = 1582L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/fabianmoronzirfas/block-facebook/master/block-facebook.lsrules" + }, + new + { + FilterListId = 1579L, + Id = 1583L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/ExtremelyCondensedList.txt" + }, + new + { + FilterListId = 1579L, + Id = 1584L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/ExtremelyCondensedList.txt" + }, + new + { + FilterListId = 1581L, + Id = 1585L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersAdGuard.txt" + }, + new + { + FilterListId = 1581L, + Id = 1586L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersAdGuard.txt" + }, + new + { + FilterListId = 1582L, + Id = 1587L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersABP.txt" + }, + new + { + FilterListId = 1582L, + Id = 1588L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersABP.txt" + }, + new + { + FilterListId = 1583L, + Id = 1589L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersPrivoxy.action" + }, + new + { + FilterListId = 1583L, + Id = 1590L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersPrivoxy.action" + }, + new + { + FilterListId = 1584L, + Id = 1591L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersDnsmasq.conf" + }, + new + { + FilterListId = 1584L, + Id = 1592L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersDnsmasq.conf" + }, + new + { + FilterListId = 1585L, + Id = 1593L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersHostsDeny.deny" + }, + new + { + FilterListId = 1585L, + Id = 1594L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersHostsDeny.deny" + }, + new + { + FilterListId = 1586L, + Id = 1595L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareABP.txt" + }, + new + { + FilterListId = 1586L, + Id = 1596L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwareABP.txt" + }, + new + { + FilterListId = 1587L, + Id = 1597L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareAdGuard.txt" + }, + new + { + FilterListId = 1587L, + Id = 1598L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwareAdGuard.txt" + }, + new + { + FilterListId = 1588L, + Id = 1599L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareTPL.tpl" + }, + new + { + FilterListId = 1588L, + Id = 1600L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwareTPL.tpl" + }, + new + { + FilterListId = 1589L, + Id = 1601L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwarePrivoxy.action" + }, + new + { + FilterListId = 1589L, + Id = 1602L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwarePrivoxy.action" + }, + new + { + FilterListId = 1590L, + Id = 1603L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareHosts.txt" + }, + new + { + FilterListId = 1590L, + Id = 1604L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwareHosts.txt" + }, + new + { + FilterListId = 1591L, + Id = 1605L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-'Google Hangouts' List.txt" + }, + new + { + FilterListId = 1591L, + Id = 1606L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-'Google Hangouts' List.txt" + }, + new + { + FilterListId = 1592L, + Id = 1607L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/RickrollLinkIdentifier.txt" + }, + new + { + FilterListId = 1592L, + Id = 1608L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/RickrollLinkIdentifier.txt" + }, + new + { + FilterListId = 1593L, + Id = 1609L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersPrivacy.txt" + }, + new + { + FilterListId = 1593L, + Id = 1610L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersPrivacy.txt" + }, + new + { + FilterListId = 1594L, + Id = 1611L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://theantisocialengineer.com/AntiSocial_Blacklist_Community_V1.txt" + }, + new + { + FilterListId = 1595L, + Id = 1612L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://phishing.army/download/phishing_army_blocklist.txt" + }, + new + { + FilterListId = 1596L, + Id = 1613L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://dehakkelaar.nl/lists/cryptojacking_campaign.list.txt" + }, + new + { + FilterListId = 1597L, + Id = 1614L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://dbl.oisd.nl/" + }, + new + { + FilterListId = 1597L, + Id = 1615L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dbl.txt" + }, + new + { + FilterListId = 1597L, + Id = 1616L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dbl.txt" + }, + new + { + FilterListId = 1598L, + Id = 1617L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hosts.oisd.nl/" + }, + new + { + FilterListId = 1598L, + Id = 1618L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/hosts.txt" + }, + new + { + FilterListId = 1598L, + Id = 1619L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/hosts.txt" + }, + new + { + FilterListId = 1599L, + Id = 1620L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://dblmobile.oisd.nl/" + }, + new + { + FilterListId = 1599L, + Id = 1621L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dbl_light.txt" + }, + new + { + FilterListId = 1599L, + Id = 1622L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dbl_light.txt" + }, + new + { + FilterListId = 1600L, + Id = 1623L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hostsmobile.oisd.nl/" + }, + new + { + FilterListId = 1600L, + Id = 1624L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/hosts_light.txt" + }, + new + { + FilterListId = 1600L, + Id = 1625L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/hosts_light.txt" + }, + new + { + FilterListId = 1601L, + Id = 1626L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/joeylane/hosts/master/hosts" + }, + new + { + FilterListId = 1603L, + Id = 1627L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-online.txt" + }, + new + { + FilterListId = 1603L, + Id = 1628L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-online.txt" + }, + new + { + FilterListId = 1603L, + Id = 1629L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-online.txt" + }, + new + { + FilterListId = 1604L, + Id = 1630L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/DailyMotionSimplicity.txt" + }, + new + { + FilterListId = 1604L, + Id = 1631L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/DailyMotionSimplicity.txt" + }, + new + { + FilterListId = 1605L, + Id = 1632L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiPPGList.txt" + }, + new + { + FilterListId = 1605L, + Id = 1633L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiPPGList.txt" + }, + new + { + FilterListId = 1606L, + Id = 1634L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-Skype List.txt" + }, + new + { + FilterListId = 1606L, + Id = 1635L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-Skype List.txt" + }, + new + { + FilterListId = 1607L, + Id = 1636L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Laicure/HostsY_hosts/master/shithosts" + }, + new + { + FilterListId = 1608L, + Id = 1637L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_base/sb_unified_hosts_base.lsrules" + }, + new + { + FilterListId = 1609L, + Id = 1638L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-gambling-porn-social/sb_unified_hosts_fakenews-gambling-porn-social.lsrules" + }, + new + { + FilterListId = 1610L, + Id = 1639L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-gambling-porn/sb_unified_hosts_fakenews-gambling-porn.lsrules" + }, + new + { + FilterListId = 1611L, + Id = 1640L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-gambling-social/sb_unified_hosts_fakenews-gambling-social.lsrules" + }, + new + { + FilterListId = 1612L, + Id = 1641L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-gambling/sb_unified_hosts_fakenews-gambling.lsrules" + }, + new + { + FilterListId = 1613L, + Id = 1642L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-porn-social/sb_unified_hosts_fakenews-porn-social.lsrules" + }, + new + { + FilterListId = 1614L, + Id = 1643L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-porn/sb_unified_hosts_fakenews-porn.lsrules" + }, + new + { + FilterListId = 1615L, + Id = 1644L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-social/sb_unified_hosts_fakenews-social.lsrules" + }, + new + { + FilterListId = 1616L, + Id = 1645L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews/sb_unified_hosts_fakenews.lsrules" + }, + new + { + FilterListId = 1617L, + Id = 1646L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_gambling-porn-social/sb_unified_hosts_gambling-porn-social.lsrules" + }, + new + { + FilterListId = 1618L, + Id = 1647L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_gambling-porn/sb_unified_hosts_gambling-porn.lsrules" + }, + new + { + FilterListId = 1619L, + Id = 1648L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_gambling-social/sb_unified_hosts_gambling-social.lsrules" + }, + new + { + FilterListId = 1620L, + Id = 1649L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_gambling/sb_unified_hosts_gambling.lsrules" + }, + new + { + FilterListId = 1621L, + Id = 1650L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_porn-social/sb_unified_hosts_porn-social.lsrules" + }, + new + { + FilterListId = 1622L, + Id = 1651L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_porn/sb_unified_hosts_porn.lsrules" + }, + new + { + FilterListId = 1623L, + Id = 1652L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_social/sb_unified_hosts_social.lsrules" + }, + new + { + FilterListId = 1624L, + Id = 1653L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jostyee/littlesnitch-rules/master/blocklist.lsrules" + }, + new + { + FilterListId = 1625L, + Id = 1654L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jostyee/littlesnitch-rules/master/blocklist-china.lsrules" + }, + new + { + FilterListId = 1626L, + Id = 1655L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bdougherty/little-snitch-rules/master/rules/browsers.lsrules" + }, + new + { + FilterListId = 1627L, + Id = 1656L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ldt116/little-snitch-vietnamese-ad-block-rules/master/vietnamese-ad-block.lsrules" + }, + new + { + FilterListId = 1628L, + Id = 1657L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/balupton/littlesnitch-filters/master/blocklist.lsrules" + }, + new + { + FilterListId = 1629L, + Id = 1658L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/balupton/littlesnitch-filters/master/whitelist-cdn.lsrules" + }, + new + { + FilterListId = 1630L, + Id = 1659L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jaydorsey/little_snitch_rules/master/jaydorsey.lsrules" + }, + new + { + FilterListId = 1631L, + Id = 1660L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/newyork10023/Little_Snitch/master/Block_All_All.lsrules" + }, + new + { + FilterListId = 1632L, + Id = 1661L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Kr00lIX/little-snitch-rules/master/Tracking.lsrules" + }, + new + { + FilterListId = 1633L, + Id = 1662L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Kr00lIX/little-snitch-rules/master/SyncLimit.lsrules" + }, + new + { + FilterListId = 1634L, + Id = 1663L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/jamujr/lsrg/raw/master/trackers-top-500.lsrules" + }, + new + { + FilterListId = 1635L, + Id = 1664L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/Dandelion Sprout's Anti-Religion List.txt" + }, + new + { + FilterListId = 1635L, + Id = 1665L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/Dandelion Sprout's Anti-Religion List.txt" + }, + new + { + FilterListId = 1636L, + Id = 1666L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/AntiPreacherList.txt" + }, + new + { + FilterListId = 1636L, + Id = 1667L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/AntiPreacherList.txt" + }, + new + { + FilterListId = 1637L, + Id = 1668L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAwfulCommentsList.txt" + }, + new + { + FilterListId = 1637L, + Id = 1669L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAwfulCommentsList.txt" + }, + new + { + FilterListId = 1638L, + Id = 1670L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Hakame-kun/uBlock-Filters-Indonesia/master/Windows Host/hosts" + }, + new + { + FilterListId = 1639L, + Id = 1671L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.github.developerdan.com/hosts/lists/amp-hosts-extended.txt" + }, + new + { + FilterListId = 1640L, + Id = 1672L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kristerkari/umatrix-recipes/master/README.md" + }, + new + { + FilterListId = 1641L, + Id = 1673L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/L2G/umatrix-rules/master/my-umatrix-rules.txt" + }, + new + { + FilterListId = 1642L, + Id = 1674L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/ruleset/recipes_th.txt" + }, + new + { + FilterListId = 1642L, + Id = 1675L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/ruleset/recipes_th.txt" + }, + new + { + FilterListId = 1643L, + Id = 1676L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/ruleset/recipes_custom.txt" + }, + new + { + FilterListId = 1643L, + Id = 1677L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/ruleset/recipes_custom.txt" + }, + new + { + FilterListId = 1644L, + Id = 1678L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/uMatrix/recipes" + }, + new + { + FilterListId = 1645L, + Id = 1679L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/Hosts/ads-tracking" + }, + new + { + FilterListId = 1646L, + Id = 1680L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/Hosts/ads-tracking-breaking" + }, + new + { + FilterListId = 1647L, + Id = 1681L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/Hosts/malware" + }, + new + { + FilterListId = 1648L, + Id = 1682L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/uBlock/list" + }, + new + { + FilterListId = 1649L, + Id = 1683L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/uBlock/facebook/groups-events" + }, + new + { + FilterListId = 1650L, + Id = 1684L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/uBlock/facebook/messenger" + }, + new + { + FilterListId = 1651L, + Id = 1685L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/themagicteeth/umatrix-recipes/master/recipes.txt" + }, + new + { + FilterListId = 1652L, + Id = 1686L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/dfkt/umatrix-rules/master/my-umatrix-rules.txt" + }, + new + { + FilterListId = 1653L, + Id = 1687L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/david1davidson/uMatrixMasterList/master/ruleset.txt" + }, + new + { + FilterListId = 1656L, + Id = 1688L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/invasy/umatrix-ruleset/master/ruleset.txt" + }, + new + { + FilterListId = 1657L, + Id = 1689L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/stephengeorgewest/my-umatrix-rules/master/my-umatrix-rules.txt" + }, + new + { + FilterListId = 1658L, + Id = 1690L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tranhoangcore/uMatrix-Rules/master/my-umatrix-rules.txt" + }, + new + { + FilterListId = 1659L, + Id = 1691L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/dadav/umatrix-rules/master/my-rules.txt" + }, + new + { + FilterListId = 1660L, + Id = 1692L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bzsparks/uMatrix/master/my-umatrix-rules.txt" + }, + new + { + FilterListId = 1661L, + Id = 1693L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Strappazzon/teleme7ry/master/rules.txt" + }, + new + { + FilterListId = 1664L, + Id = 1696L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://urlhaus.abuse.ch/downloads/text/" + }, + new + { + FilterListId = 1665L, + Id = 1697L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://urlhaus.abuse.ch/downloads/rpz/" + }, + new + { + FilterListId = 1666L, + Id = 1698L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/CryptoFR/crypto-scams-fr/master/misc.txt" + }, + new + { + FilterListId = 1667L, + Id = 1699L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/CryptoFR/crypto-scams-fr/master/websites.txt" + }, + new + { + FilterListId = 1668L, + Id = 1700L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/brasstax/RHEL-StreetPass-Relay/master/spoof-attwifi/dnsmasq.conf" + }, + new + { + FilterListId = 1669L, + Id = 1701L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/farrokhi/adblock-iran/master/additional-trackers.txt" + }, + new + { + FilterListId = 1669L, + Id = 1702L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/farrokhi/adblock-iran/master/additional-trackers.txt" + }, + new + { + FilterListId = 1670L, + Id = 1703L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/yous/YousList/master/hosts.txt" + }, + new + { + FilterListId = 1671L, + Id = 1704L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tcptomato/ROad-Block/master/road-block-filters.txt" + }, + new + { + FilterListId = 1672L, + Id = 1705L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tcptomato/ROad-Block/master/road-kill-filters.txt" + }, + new + { + FilterListId = 1673L, + Id = 1706L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://github.com/nickspaargaren/no-google/raw/master/pihole-google.txt" + }, + new + { + FilterListId = 1673L, + Id = 1707L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/pihole-google.txt" + }, + new + { + FilterListId = 1674L, + Id = 1708L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/google-domains" + }, + new + { + FilterListId = 1674L, + Id = 1709L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/google-domains" + }, + new + { + FilterListId = 1675L, + Id = 1710L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/analyticsparsed" + }, + new + { + FilterListId = 1675L, + Id = 1711L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/analyticsparsed" + }, + new + { + FilterListId = 1676L, + Id = 1712L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/analytics.txt" + }, + new + { + FilterListId = 1676L, + Id = 1713L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/analytics.txt" + }, + new + { + FilterListId = 1677L, + Id = 1714L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/androidparsed" + }, + new + { + FilterListId = 1677L, + Id = 1715L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/androidparsed" + }, + new + { + FilterListId = 1678L, + Id = 1716L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/android.txt" + }, + new + { + FilterListId = 1678L, + Id = 1717L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/android.txt" + }, + new + { + FilterListId = 1679L, + Id = 1718L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/dnsparsed" + }, + new + { + FilterListId = 1679L, + Id = 1719L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/dnsparsed" + }, + new + { + FilterListId = 1680L, + Id = 1720L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/dns.txt" + }, + new + { + FilterListId = 1680L, + Id = 1721L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/dns.txt" + }, + new + { + FilterListId = 1681L, + Id = 1722L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/domainsparsed" + }, + new + { + FilterListId = 1681L, + Id = 1723L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/domainsparsed" + }, + new + { + FilterListId = 1682L, + Id = 1724L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/domains.txt" + }, + new + { + FilterListId = 1682L, + Id = 1725L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/domains.txt" + }, + new + { + FilterListId = 1683L, + Id = 1726L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/doubleclickparsed" + }, + new + { + FilterListId = 1683L, + Id = 1727L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/doubleclickparsed" + }, + new + { + FilterListId = 1684L, + Id = 1728L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/doubleclick.txt" + }, + new + { + FilterListId = 1684L, + Id = 1729L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/doubleclick.txt" + }, + new + { + FilterListId = 1685L, + Id = 1730L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/firebaseparsed" + }, + new + { + FilterListId = 1685L, + Id = 1731L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/firebaseparsed" + }, + new + { + FilterListId = 1686L, + Id = 1732L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/firebase.txt" + }, + new + { + FilterListId = 1686L, + Id = 1733L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/firebase.txt" + }, + new + { + FilterListId = 1687L, + Id = 1734L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/fontsparsed" + }, + new + { + FilterListId = 1687L, + Id = 1735L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/fontsparsed" + }, + new + { + FilterListId = 1688L, + Id = 1736L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/fonts.txt" + }, + new + { + FilterListId = 1688L, + Id = 1737L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/fonts.txt" + }, + new + { + FilterListId = 1689L, + Id = 1738L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/generalparsed" + }, + new + { + FilterListId = 1689L, + Id = 1739L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/generalparsed" + }, + new + { + FilterListId = 1690L, + Id = 1740L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/general.txt" + }, + new + { + FilterListId = 1690L, + Id = 1741L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/general.txt" + }, + new + { + FilterListId = 1691L, + Id = 1742L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/mailparsed" + }, + new + { + FilterListId = 1691L, + Id = 1743L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/mailparsed" + }, + new + { + FilterListId = 1692L, + Id = 1744L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/mail.txt" + }, + new + { + FilterListId = 1692L, + Id = 1745L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/mail.txt" + }, + new + { + FilterListId = 1693L, + Id = 1746L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/productsparsed" + }, + new + { + FilterListId = 1693L, + Id = 1747L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/productsparsed" + }, + new + { + FilterListId = 1694L, + Id = 1748L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/products.txt" + }, + new + { + FilterListId = 1694L, + Id = 1749L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/products.txt" + }, + new + { + FilterListId = 1695L, + Id = 1750L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/proxiesparsed" + }, + new + { + FilterListId = 1695L, + Id = 1751L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/proxiesparsed" + }, + new + { + FilterListId = 1696L, + Id = 1752L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/proxies.txt" + }, + new + { + FilterListId = 1696L, + Id = 1753L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/proxies.txt" + }, + new + { + FilterListId = 1697L, + Id = 1754L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/shortlinksparsed" + }, + new + { + FilterListId = 1697L, + Id = 1755L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/shortlinksparsed" + }, + new + { + FilterListId = 1698L, + Id = 1756L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/shortlinks.txt" + }, + new + { + FilterListId = 1698L, + Id = 1757L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/shortlinks.txt" + }, + new + { + FilterListId = 1699L, + Id = 1758L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/youtubeparsed" + }, + new + { + FilterListId = 1699L, + Id = 1759L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/youtubeparsed" + }, + new + { + FilterListId = 1700L, + Id = 1760L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/youtube.txt" + }, + new + { + FilterListId = 1700L, + Id = 1761L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/youtube.txt" + }, + new + { + FilterListId = 1701L, + Id = 1762L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://asc.hk/adplus.txt" + }, + new + { + FilterListId = 1702L, + Id = 1763L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://npc.0am.jp/hosts.php?dl=1" + }, + new + { + FilterListId = 1703L, + Id = 1764L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://in0de.synology.me/pwn.txt" + }, + new + { + FilterListId = 1704L, + Id = 1765L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://in0de.synology.me/own.txt" + }, + new + { + FilterListId = 1706L, + Id = 1766L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.gameindustry.eu/files/hosts.txt" + }, + new + { + FilterListId = 1707L, + Id = 1767L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tiuxo/hosts/master/ads" + }, + new + { + FilterListId = 1708L, + Id = 1768L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tiuxo/hosts/master/porn" + }, + new + { + FilterListId = 1709L, + Id = 1769L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tiuxo/hosts/master/social" + }, + new + { + FilterListId = 1710L, + Id = 1770L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.botvrij.eu/data/ioclist.hostname.raw" + }, + new + { + FilterListId = 1711L, + Id = 1771L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://zonefiles.io/f/compromised/domains/live/" + }, + new + { + FilterListId = 1712L, + Id = 1772L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/abc45628/hosts/master/hosts" + }, + new + { + FilterListId = 1713L, + Id = 1773L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jdlingyu/ad-wars/master/hosts" + }, + new + { + FilterListId = 1714L, + Id = 1774L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/XionKzn/PiHole-Lists/master/PiHole/Archive/Quad9.txt" + }, + new + { + FilterListId = 1715L, + Id = 1775L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/XionKzn/PiHole-Lists/master/PiHole/Archive/Yahoo_Ad_Servers.txt" + }, + new + { + FilterListId = 1716L, + Id = 1776L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/XionKzn/PiHole-Lists/master/PiHole/PiHole_HOSTS_Spyware_HOSTS.txt" + }, + new + { + FilterListId = 1717L, + Id = 1777L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/XionKzn/PiHole-Lists/master/PiHole/Archive/Cerber_Ransomware.txt" + }, + new + { + FilterListId = 1718L, + Id = 1778L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/XionKzn/PiHole-Lists/master/PiHole/Blocklist_HOSTS.txt" + }, + new + { + FilterListId = 1719L, + Id = 1779L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/KurzGedanke/kurzBlock/master/kurzBlock.txt" + }, + new + { + FilterListId = 1720L, + Id = 1780L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/VernonStow/Filterlist/master/Filterlist.txt" + }, + new + { + FilterListId = 1721L, + Id = 1781L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jakejarvis/ios-trackers/master/blocklist.txt" + }, + new + { + FilterListId = 1722L, + Id = 1782L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/hell-sh/Evil-Domains/master/evil-domains.txt" + }, + new + { + FilterListId = 1723L, + Id = 1783L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/pirat28/IHateTracker/master/iHateTracker.txt" + }, + new + { + FilterListId = 1724L, + Id = 1784L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/parseword/nolovia/master/skel/hosts-nolovia.txt" + }, + new + { + FilterListId = 1725L, + Id = 1785L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/parseword/nolovia/master/skel/hosts-government-malware.txt" + }, + new + { + FilterListId = 1727L, + Id = 1787L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/gwillem/magento-malware-scanner/master/rules/burner-domains.txt" + }, + new + { + FilterListId = 1728L, + Id = 1788L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/soteria-nou/domain-list/master/ads.txt" + }, + new + { + FilterListId = 1729L, + Id = 1789L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/soteria-nou/domain-list/master/affiliate.txt" + }, + new + { + FilterListId = 1730L, + Id = 1790L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/soteria-nou/domain-list/master/analytics.txt" + }, + new + { + FilterListId = 1731L, + Id = 1791L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/soteria-nou/domain-list/master/enrichments.txt" + }, + new + { + FilterListId = 1732L, + Id = 1792L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/soteria-nou/domain-list/master/fake.txt" + }, + new + { + FilterListId = 1733L, + Id = 1793L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/soteria-nou/domain-list/master/widgets.txt" + }, + new + { + FilterListId = 1734L, + Id = 1794L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/Pro/hosts.txt" + }, + new + { + FilterListId = 1735L, + Id = 1795L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/Pro/domains.txt" + }, + new + { + FilterListId = 1736L, + Id = 1796L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AdGuard Home Compilation List/AdGuardHomeCompilationList.txt" + }, + new + { + FilterListId = 1736L, + Id = 1797L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AdGuard Home Compilation List/AdGuardHomeCompilationList.txt" + }, + new + { + FilterListId = 1737L, + Id = 1798L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Imperial Units Remover.txt" + }, + new + { + FilterListId = 1737L, + Id = 1799L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Imperial Units Remover.txt" + }, + new + { + FilterListId = 1738L, + Id = 1800L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareAdGuardHome.txt" + }, + new + { + FilterListId = 1738L, + Id = 1801L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwareAdGuardHome.txt" + }, + new + { + FilterListId = 1739L, + Id = 1802L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://warui.intaa.net/adhosts/local_zone.conf.txt" + }, + new + { + FilterListId = 1740L, + Id = 1803L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/social/formats/hosts.txt" + }, + new + { + FilterListId = 1741L, + Id = 1804L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/porn-lite/formats/hosts.txt" + }, + new + { + FilterListId = 1742L, + Id = 1805L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/regional/formats/hosts.txt" + }, + new + { + FilterListId = 1743L, + Id = 1806L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/spark/formats/domains.txt" + }, + new + { + FilterListId = 1743L, + Id = 1807L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://blokada.org/mirror/v5/energized/spark/hosts.txt" + }, + new + { + FilterListId = 1744L, + Id = 1808L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/bluGo/formats/domains.txt" + }, + new + { + FilterListId = 1745L, + Id = 1809L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/blu/formats/domains.txt" + }, + new + { + FilterListId = 1745L, + Id = 1810L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://blokada.org/mirror/v5/energized/blu/hosts.txt" + }, + new + { + FilterListId = 1746L, + Id = 1811L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/basic/formats/domains.txt" + }, + new + { + FilterListId = 1746L, + Id = 1812L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://blokada.org/mirror/v5/energized/basic/hosts.txt" + }, + new + { + FilterListId = 1747L, + Id = 1813L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/porn/formats/domains.txt" + }, + new + { + FilterListId = 1748L, + Id = 1814L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/ultimate/formats/domains.txt" + }, + new + { + FilterListId = 1749L, + Id = 1815L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/unified/formats/domains.txt" + }, + new + { + FilterListId = 1750L, + Id = 1816L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/xtreme/formats/domains.txt" + }, + new + { + FilterListId = 1751L, + Id = 1817L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/social/formats/domains.txt" + }, + new + { + FilterListId = 1752L, + Id = 1818L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/porn-lite/formats/domains.txt" + }, + new + { + FilterListId = 1753L, + Id = 1819L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/regional/formats/domains.txt" + }, + new + { + FilterListId = 1753L, + Id = 1820L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://blokada.org/mirror/v5/energized/regional/hosts.txt" + }, + new + { + FilterListId = 1754L, + Id = 1821L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/spark/formats/filter" + }, + new + { + FilterListId = 1755L, + Id = 1822L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/bluGo/formats/filter" + }, + new + { + FilterListId = 1756L, + Id = 1823L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/blu/formats/filter" + }, + new + { + FilterListId = 1757L, + Id = 1824L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/basic/formats/filter" + }, + new + { + FilterListId = 1758L, + Id = 1825L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/porn/formats/filter" + }, + new + { + FilterListId = 1759L, + Id = 1826L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/ultimate/formats/filter" + }, + new + { + FilterListId = 1760L, + Id = 1827L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/unified/formats/filter" + }, + new + { + FilterListId = 1761L, + Id = 1828L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/xtreme/formats/filter" + }, + new + { + FilterListId = 1762L, + Id = 1829L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/social/formats/filter" + }, + new + { + FilterListId = 1763L, + Id = 1830L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/porn-lite/formats/filter" + }, + new + { + FilterListId = 1764L, + Id = 1831L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/regional/formats/filter" + }, + new + { + FilterListId = 1765L, + Id = 1832L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/spark/formats/dnsmasq.conf" + }, + new + { + FilterListId = 1766L, + Id = 1833L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/bluGo/formats/dnsmasq.conf" + }, + new + { + FilterListId = 1767L, + Id = 1834L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/blu/formats/dnsmasq.conf" + }, + new + { + FilterListId = 1768L, + Id = 1835L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/basic/formats/dnsmasq.conf" + }, + new + { + FilterListId = 1769L, + Id = 1836L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/porn/formats/dnsmasq.conf" + }, + new + { + FilterListId = 1770L, + Id = 1837L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/ultimate/formats/dnsmasq.conf" + }, + new + { + FilterListId = 1771L, + Id = 1838L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/unified/formats/dnsmasq.conf" + }, + new + { + FilterListId = 1772L, + Id = 1839L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/xtreme/formats/dnsmasq.conf" + }, + new + { + FilterListId = 1773L, + Id = 1840L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/social/formats/dnsmasq.conf" + }, + new + { + FilterListId = 1774L, + Id = 1841L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/porn-lite/formats/dnsmasq.conf" + }, + new + { + FilterListId = 1775L, + Id = 1842L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/regional/formats/dnsmasq.conf" + }, + new + { + FilterListId = 1776L, + Id = 1843L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/spark/formats/unbound.conf" + }, + new + { + FilterListId = 1777L, + Id = 1844L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/bluGo/formats/unbound.conf" + }, + new + { + FilterListId = 1778L, + Id = 1845L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/blu/formats/unbound.conf" + }, + new + { + FilterListId = 1779L, + Id = 1846L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/basic/formats/unbound.conf" + }, + new + { + FilterListId = 1780L, + Id = 1847L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/porn/formats/unbound.conf" + }, + new + { + FilterListId = 1781L, + Id = 1848L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/ultimate/formats/unbound.conf" + }, + new + { + FilterListId = 1782L, + Id = 1849L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/unified/formats/unbound.conf" + }, + new + { + FilterListId = 1783L, + Id = 1850L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/xtreme/formats/unbound.conf" + }, + new + { + FilterListId = 1784L, + Id = 1851L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/social/formats/unbound.conf" + }, + new + { + FilterListId = 1785L, + Id = 1852L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/porn-lite/formats/unbound.conf" + }, + new + { + FilterListId = 1786L, + Id = 1853L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/regional/formats/unbound.conf" + }, + new + { + FilterListId = 1787L, + Id = 1854L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/spark/formats/rpz.txt" + }, + new + { + FilterListId = 1788L, + Id = 1855L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/bluGo/formats/rpz.txt" + }, + new + { + FilterListId = 1789L, + Id = 1856L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/blu/formats/rpz.txt" + }, + new + { + FilterListId = 1790L, + Id = 1857L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/basic/formats/rpz.txt" + }, + new + { + FilterListId = 1791L, + Id = 1858L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/porn/formats/rpz.txt" + }, + new + { + FilterListId = 1792L, + Id = 1859L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/ultimate/formats/rpz.txt" + }, + new + { + FilterListId = 1793L, + Id = 1860L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/unified/formats/rpz.txt" + }, + new + { + FilterListId = 1794L, + Id = 1861L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/xtreme/formats/rpz.txt" + }, + new + { + FilterListId = 1795L, + Id = 1862L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/social/formats/rpz.txt" + }, + new + { + FilterListId = 1796L, + Id = 1863L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/porn-lite/formats/rpz.txt" + }, + new + { + FilterListId = 1797L, + Id = 1864L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/regional/formats/rpz.txt" + }, + new + { + FilterListId = 1798L, + Id = 1865L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/ips/formats/list.txt" + }, + new + { + FilterListId = 1799L, + Id = 1866L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/arabic.txt" + }, + new + { + FilterListId = 1800L, + Id = 1867L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://cdn.rixcloud.io/Quantumult/Rules/Default.conf" + }, + new + { + FilterListId = 1801L, + Id = 1868L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/lhie1/Rules/master/Auto/REJECT.conf" + }, + new + { + FilterListId = 1803L, + Id = 1870L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/scomper/surge-list/master/reject.list" + }, + new + { + FilterListId = 1806L, + Id = 1873L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://lists.blocklist.de/lists/all.txt" + }, + new + { + FilterListId = 1807L, + Id = 1874L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://danger.rulez.sk/projects/bruteforceblocker/blist.php" + }, + new + { + FilterListId = 1808L, + Id = 1875L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://rules.emergingthreats.net/blockrules/compromised-ips.txt" + }, + new + { + FilterListId = 1809L, + Id = 1876L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://rules.emergingthreats.net/fwrules/emerging-Block-IPs.txt" + }, + new + { + FilterListId = 1810L, + Id = 1877L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://blocklist.greensnow.co/greensnow.txt" + }, + new + { + FilterListId = 1811L, + Id = 1878L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.binarydefense.com/banlist.txt" + }, + new + { + FilterListId = 1813L, + Id = 1879L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://cinsscore.com/list/ci-badguys.txt" + }, + new + { + FilterListId = 1814L, + Id = 1880L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/TabloidRemover.txt" + }, + new + { + FilterListId = 1814L, + Id = 1881L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/TabloidRemover.txt" + }, + new + { + FilterListId = 1815L, + Id = 1882L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiPCPriceHiderList.txt" + }, + new + { + FilterListId = 1815L, + Id = 1883L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiPCPriceHiderList.txt" + }, + new + { + FilterListId = 1816L, + Id = 1884L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/KADhosts/master/KADhole.txt" + }, + new + { + FilterListId = 1817L, + Id = 1885L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-pihole-filters/hostfile_regex.txt" + }, + new + { + FilterListId = 1818L, + Id = 1886L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mmotti/pihole-regex/master/regex.list" + }, + new + { + FilterListId = 1819L, + Id = 1887L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.github.developerdan.com/hosts/lists/facebook-extended.txt" + }, + new + { + FilterListId = 1824L, + Id = 1890L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://myip.ms/files/blacklist/general/latest_blacklist.txt" + }, + new + { + FilterListId = 1825L, + Id = 1891L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://iplists.firehol.org/files/hphosts_pha.ipset" + }, + new + { + FilterListId = 1827L, + Id = 1892L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://iplists.firehol.org/files/hphosts_fsa.ipset" + }, + new + { + FilterListId = 1828L, + Id = 1893L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://iplists.firehol.org/files/hphosts_grm.ipset" + }, + new + { + FilterListId = 1829L, + Id = 1894L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://iplists.firehol.org/files/hphosts_exp.ipset" + }, + new + { + FilterListId = 1830L, + Id = 1895L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://iplists.firehol.org/files/hphosts_emd.ipset" + }, + new + { + FilterListId = 1831L, + Id = 1896L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://iplists.firehol.org/files/hphosts_ats.ipset" + }, + new + { + FilterListId = 1832L, + Id = 1897L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiPepeList.txt" + }, + new + { + FilterListId = 1832L, + Id = 1898L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiPepeList.txt" + }, + new + { + FilterListId = 1833L, + Id = 1899L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/hawkeye116477/FilterListsDarkMode/master/DarkFilterLists.txt" + }, + new + { + FilterListId = 1834L, + Id = 1900L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/caffeinewriter/DontPushMe/master/filterlist.txt" + }, + new + { + FilterListId = 1835L, + Id = 1901L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Nebula-Mechanica/Anti-AutoTranslation-List/master/anti-autotranslation-list.txt" + }, + new + { + FilterListId = 1835L, + Id = 1902L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/Nebula-Mechanica/Anti-AutoTranslation-List/master/anti-autotranslation-list.txt" + }, + new + { + FilterListId = 1835L, + Id = 1903L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/Nebula-Mechanica/Anti-AutoTranslation-List/master/anti-autotranslation-list.txt" + }, + new + { + FilterListId = 1836L, + Id = 1904L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Hosts" + }, + new + { + FilterListId = 1838L, + Id = 1905L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Anti/Anti Social" + }, + new + { + FilterListId = 1840L, + Id = 1907L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersAdGuardHome.txt" + }, + new + { + FilterListId = 1840L, + Id = 1908L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersAdGuardHome.txt" + }, + new + { + FilterListId = 1841L, + Id = 1909L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersPiHole.txt" + }, + new + { + FilterListId = 1841L, + Id = 1910L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersPiHole.txt" + }, + new + { + FilterListId = 1842L, + Id = 1911L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersSocks5.list" + }, + new + { + FilterListId = 1842L, + Id = 1912L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersSocks5.list" + }, + new + { + FilterListId = 1843L, + Id = 1913L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/secretsnow/Ad-Filters/master/Ad Filters.txt" + }, + new + { + FilterListId = 1844L, + Id = 1914L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/some-username-here1/motd-adblock/master/motd-adblock" + }, + new + { + FilterListId = 1845L, + Id = 1915L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/T4Tea/ADPMobileFilter/master/ADPMobileFilter.txt" + }, + new + { + FilterListId = 1846L, + Id = 1916L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/RandomAdversary/Macedonian-adBlock-Filters/master/Filters" + }, + new + { + FilterListId = 1847L, + Id = 1917L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/dorjmi/nothingblock/master/filter.txt" + }, + new + { + FilterListId = 1848L, + Id = 1918L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Crystal-RainSlide/AdditionalFiltersCN/master/CN.txt" + }, + new + { + FilterListId = 1849L, + Id = 1919L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jiayiming/jCleanList/master/jCleanList_all.txt" + }, + new + { + FilterListId = 1850L, + Id = 1920L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://n2o.io/projects/quarklist/dist/quarklist.txt" + }, + new + { + FilterListId = 1852L, + Id = 1921L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://adblock-thai.github.io/thai-ads-filter/subscription.txt" + }, + new + { + FilterListId = 1853L, + Id = 1922L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://adblock-thai.github.io/thai-ads-filter/annoyance.txt" + }, + new + { + FilterListId = 1854L, + Id = 1923L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/masterinspire/Master-AdRules/master/Master-AdRules.txt" + }, + new + { + FilterListId = 1856L, + Id = 1924L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/lutoma/nocomments/master/abp.txt" + }, + new + { + FilterListId = 1864L, + Id = 1932L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Ayesh/Adblock-Sinhala/master/filters.txt" + }, + new + { + FilterListId = 1865L, + Id = 1933L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/zonprox/adblock/master/abpadv.txt" + }, + new + { + FilterListId = 1866L, + Id = 1934L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/LanikSJ/ubo-filters/main/filters/combined-filters.txt" + }, + new + { + FilterListId = 1867L, + Id = 1935L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/LanikSJ/ubo-filters/main/filters/ubo-filters.txt" + }, + new + { + FilterListId = 1868L, + Id = 1936L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://mkb2091.github.io/blockconvert/output/adblock.txt" + }, + new + { + FilterListId = 1869L, + Id = 1937L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://mkb2091.github.io/blockconvert/output/hosts.txt" + }, + new + { + FilterListId = 1870L, + Id = 1938L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://mkb2091.github.io/blockconvert/output/domains.txt" + }, + new + { + FilterListId = 1871L, + Id = 1939L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://mkb2091.github.io/blockconvert/output/ip_blocklist.txt" + }, + new + { + FilterListId = 1872L, + Id = 1940L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://mkb2091.github.io/blockconvert/output/domains.rpz" + }, + new + { + FilterListId = 1873L, + Id = 1941L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://mkb2091.github.io/blockconvert/output/whitelist_domains.txt" + }, + new + { + FilterListId = 1876L, + Id = 1942L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersRPZ.txt" + }, + new + { + FilterListId = 1876L, + Id = 1943L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersRPZ.txt" + }, + new + { + FilterListId = 1877L, + Id = 1944L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersUnbound.conf" + }, + new + { + FilterListId = 1877L, + Id = 1945L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersUnbound.conf" + }, + new + { + FilterListId = 1878L, + Id = 1946L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersForMinerBlock.txt" + }, + new + { + FilterListId = 1878L, + Id = 1947L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersForMinerBlock.txt" + }, + new + { + FilterListId = 1880L, + Id = 1951L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-domains-online.txt" + }, + new + { + FilterListId = 1880L, + Id = 1952L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-domains-online.txt" + }, + new + { + FilterListId = 1880L, + Id = 1953L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-domains-online.txt" + }, + new + { + FilterListId = 1881L, + Id = 1954L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/angelics/pfbng/master/ads/ads-domain-list.txt" + }, + new + { + FilterListId = 1882L, + Id = 1955L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/blocktastic/pihole/master/blocktastic.txt" + }, + new + { + FilterListId = 1886L, + Id = 1956L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cchevy/macedonian-pi-hole-blocklist/master/hosts.txt" + }, + new + { + FilterListId = 1887L, + Id = 1957L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/chrisjudk/hosts/master/hosts" + }, + new + { + FilterListId = 1888L, + Id = 1958L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://agh.lite.dcod.ml/hosts.php" + }, + new + { + FilterListId = 1890L, + Id = 1959L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deletescape/noads/master/lists/add-switzerland.txt" + }, + new + { + FilterListId = 1891L, + Id = 1960L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deletescape/noads/master/lists/fo-scumware.txt" + }, + new + { + FilterListId = 1892L, + Id = 1961L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://lists.noads.online/lists/compilation.txt" + }, + new + { + FilterListId = 1893L, + Id = 1962L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deletescape/noads/master/lists/unbreak.txt" + }, + new + { + FilterListId = 1896L, + Id = 1965L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DRSDavidSoft/additional-hosts/master/domains/blacklist/adservers-and-trackers.txt" + }, + new + { + FilterListId = 1897L, + Id = 1966L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DRSDavidSoft/additional-hosts/master/domains/blacklist/unwanted-iranian.txt" + }, + new + { + FilterListId = 1898L, + Id = 1967L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/herrbischoff/trackers/master/trackers.txt" + }, + new + { + FilterListId = 1899L, + Id = 1968L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/javabean/dnsmasq-antispy/master/dnsmasq.ghostery_bugs.conf" + }, + new + { + FilterListId = 1900L, + Id = 1969L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/javabean/dnsmasq-antispy/master/dnsmasq.zz-extra-servers-manual.conf" + }, + new + { + FilterListId = 1901L, + Id = 1970L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiCartoonHipsterList.txt" + }, + new + { + FilterListId = 1901L, + Id = 1971L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiCartoonHipsterList.txt" + }, + new + { + FilterListId = 1902L, + Id = 1972L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/meinhimmel/hosts/master/hosts" + }, + new + { + FilterListId = 1903L, + Id = 1973L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mhhakim/pihole-blocklist/master/custom-blocklist.txt" + }, + new + { + FilterListId = 1904L, + Id = 1974L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Phentora/AdguardPersonalList/master/blocklist.txt" + }, + new + { + FilterListId = 1906L, + Id = 1975L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Rhys-H/hosts-list/master/HostsList.txt" + }, + new + { + FilterListId = 1907L, + Id = 1976L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/smed79/blacklist/master/hosts.txt" + }, + new + { + FilterListId = 1908L, + Id = 1977L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/stamparm/maltrail/master/trails/static/suspicious/pua.txt" + }, + new + { + FilterListId = 1909L, + Id = 1978L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/svetlyobg/svet-custom-domains/master/ads-domains" + }, + new + { + FilterListId = 1910L, + Id = 1979L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/svetlyobg/svet-custom-domains/master/ads-IPs" + }, + new + { + FilterListId = 1911L, + Id = 1980L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tomzuu/blacklist-named/master/ad.sites.conf" + }, + new + { + FilterListId = 1912L, + Id = 1981L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tomzuu/blacklist-named/master/phishing.sites.conf" + }, + new + { + FilterListId = 1913L, + Id = 1982L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tomzuu/blacklist-named/master/pushing.sites.conf" + }, + new + { + FilterListId = 1914L, + Id = 1983L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/UnbendableStraw/samsungnosnooping/master/README.md" + }, + new + { + FilterListId = 1915L, + Id = 1984L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/unchartedsky/adguard-kr/master/adguard-kr.txt" + }, + new + { + FilterListId = 1916L, + Id = 1985L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/xlimit91/xlimit91-block-list/master/blacklist.txt" + }, + new + { + FilterListId = 1917L, + Id = 1986L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/xlimit91/xlimit91-block-list/master/regex.list" + }, + new + { + FilterListId = 1918L, + Id = 1987L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ZYX2019/host-block-list/master/Custom.txt" + }, + new + { + FilterListId = 1919L, + Id = 1988L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/zznidar/BAR/master/BAR-list" + }, + new + { + FilterListId = 1920L, + Id = 1989L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/zznidar/BAR/master/URLs_full" + }, + new + { + FilterListId = 1921L, + Id = 1990L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/infinitytec/blocklists/master/ads-and-trackers.txt" + }, + new + { + FilterListId = 1922L, + Id = 1991L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/infinitytec/blocklists/master/scams-and-phishing.txt" + }, + new + { + FilterListId = 1926L, + Id = 1995L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jackrabbit335/UsefulLinuxShellScripts/master/Hosts %26 sourcelist/blacklist.txt" + }, + new + { + FilterListId = 1927L, + Id = 1996L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Th3M3/blocklists/master/malware.list" + }, + new + { + FilterListId = 1928L, + Id = 1997L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Th3M3/blocklists/master/tracking%26ads.list" + }, + new + { + FilterListId = 1930L, + Id = 2000L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/GameConsoleAdblockList.txt" + }, + new + { + FilterListId = 1930L, + Id = 2001L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/GameConsoleAdblockList.txt" + }, + new + { + FilterListId = 1931L, + Id = 2002L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.thedumbterminal.co.uk/files/services/squidblockedsites/blocked.txt" + }, + new + { + FilterListId = 1932L, + Id = 2003L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://assets.windscribe.com/custom_blocklists/clickbait.txt" + }, + new + { + FilterListId = 1933L, + Id = 2004L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/dns-firewall/dns/matrix/matrix/raw/master/source/adware/domains.list" + }, + new + { + FilterListId = 1934L, + Id = 2005L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/dns-firewall/dns/matrix/matrix/raw/master/source/tracking/domains.list" + }, + new + { + FilterListId = 1937L, + Id = 2008L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://pastebin.com/raw/UP3s7pEB" + }, + new + { + FilterListId = 1938L, + Id = 2009L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/YanFung/Ads/master/Mobile" + }, + new + { + FilterListId = 1939L, + Id = 2010L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/yhonay/antipopads/master/hosts" + }, + new + { + FilterListId = 1940L, + Id = 2011L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://repo.andnixsh.com/adblocker/hosts" + }, + new + { + FilterListId = 1941L, + Id = 2012L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/huanz/surge-hosts/master/surge.conf" + }, + new + { + FilterListId = 1942L, + Id = 2013L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.bentasker.co.uk/adblock/autolist.txt" + }, + new + { + FilterListId = 1943L, + Id = 2014L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.bentasker.co.uk/adblock/adblock_compiled.txt" + }, + new + { + FilterListId = 1944L, + Id = 2015L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.bentasker.co.uk/adblock/blockeddomains.txt" + }, + new + { + FilterListId = 1945L, + Id = 2016L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/regex.list" + }, + new + { + FilterListId = 1946L, + Id = 2017L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://anonymousposter.gitlab.io/ublockorigin-rules/blockrules.txt" + }, + new + { + FilterListId = 1948L, + Id = 2019L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/fengyc/URLRedirector/master/tools/rules.json" + }, + new + { + FilterListId = 1949L, + Id = 2020L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/fengyc/URLRedirector/master/tools/rules_geekzu.json" + }, + new + { + FilterListId = 1950L, + Id = 2021L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=rpz&showintro=1&mimetype=plaintext" + }, + new + { + FilterListId = 1951L, + Id = 2022L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AdGuardHomeDisallowedIPs.txt" + }, + new + { + FilterListId = 1951L, + Id = 2023L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AdGuardHomeDisallowedIPs.txt" + }, + new + { + FilterListId = 1952L, + Id = 2024L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/TwitterPureReadingExperience.txt" + }, + new + { + FilterListId = 1952L, + Id = 2025L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/TwitterPureReadingExperience.txt" + }, + new + { + FilterListId = 1953L, + Id = 2026L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/complete/adblock.txt" + }, + new + { + FilterListId = 1954L, + Id = 2027L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/mini/adblock.txt" + }, + new + { + FilterListId = 1955L, + Id = 2028L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/Pro/adblock.txt" + }, + new + { + FilterListId = 1956L, + Id = 2029L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/durablenapkin/scamblocklist/master/hosts.txt" + }, + new + { + FilterListId = 1957L, + Id = 2030L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yumire/kiss-filters/master/filters.txt" + }, + new + { + FilterListId = 1958L, + Id = 2031L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/Sorrow-San/9anime-adblock-filters/raw/master/9Anime filter list" + }, + new + { + FilterListId = 1959L, + Id = 2032L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/RiiConnect24/DNS-Server/master/dns_zones-hosts.txt" + }, + new + { + FilterListId = 1963L, + Id = 2036L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/Sorrow-San/9anime-adblock-filters/raw/master_with_banners/9Anime filter list" + }, + new + { + FilterListId = 1964L, + Id = 2037L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAdventureTimeList.txt" + }, + new + { + FilterListId = 1964L, + Id = 2038L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAdventureTimeList.txt" + }, + new + { + FilterListId = 1965L, + Id = 2039L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/HaveIBeenPwnedPasteRemover.txt" + }, + new + { + FilterListId = 1965L, + Id = 2040L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/HaveIBeenPwnedPasteRemover.txt" + }, + new + { + FilterListId = 1967L, + Id = 2043L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AdRemovalListForUnusualAds.txt" + }, + new + { + FilterListId = 1967L, + Id = 2044L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AdRemovalListForUnusualAds.txt" + }, + new + { + FilterListId = 1968L, + Id = 2045L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/AdguardFilters/master/AnnoyancesFilter/sections/remains.txt" + }, + new + { + FilterListId = 1969L, + Id = 2046L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/AdguardFilters/master/AnnoyancesFilter/sections/push-notifications.txt" + }, + new + { + FilterListId = 1970L, + Id = 2047L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/AdguardFilters/master/AnnoyancesFilter/sections/mobile-app.txt" + }, + new + { + FilterListId = 1971L, + Id = 2048L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/AdguardFilters/master/AnnoyancesFilter/sections/antiadblock.txt" + }, + new + { + FilterListId = 1972L, + Id = 2049L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AdGuard Home Compilation List/AdGuardHomeCompilationListIPs.txt" + }, + new + { + FilterListId = 1972L, + Id = 2050L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AdGuard Home Compilation List/AdGuardHomeCompilationListIPs.txt" + }, + new + { + FilterListId = 1973L, + Id = 2051L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/AntiAmazonListForTwitchDomains.txt" + }, + new + { + FilterListId = 1973L, + Id = 2052L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/AntiAmazonListForTwitchDomains.txt" + }, + new + { + FilterListId = 1974L, + Id = 2053L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/AntiAmazonListForTwitchHosts.txt" + }, + new + { + FilterListId = 1974L, + Id = 2054L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/AntiAmazonListForTwitchHosts.txt" + }, + new + { + FilterListId = 1975L, + Id = 2055L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/AntiF%25D1%2596%25D0%259C%2520ListDomains.txt" + }, + new + { + FilterListId = 1975L, + Id = 2056L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/AntiF%25D1%2596%25D0%259C%2520ListDomains.txt" + }, + new + { + FilterListId = 1976L, + Id = 2057L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiHivemindCartoonTrashingList.txt" + }, + new + { + FilterListId = 1976L, + Id = 2058L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiHivemindCartoonTrashingList.txt" + }, + new + { + FilterListId = 1977L, + Id = 2059L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/AntiHivemindCartoonTrashingListDomains.txt" + }, + new + { + FilterListId = 1977L, + Id = 2060L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/AntiHivemindCartoonTrashingListDomains.txt" + }, + new + { + FilterListId = 1978L, + Id = 2061L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/AntiStevenUniverseListDomains.txt" + }, + new + { + FilterListId = 1978L, + Id = 2062L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/AntiStevenUniverseListDomains.txt" + }, + new + { + FilterListId = 1979L, + Id = 2063L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/BrowseWebsitesWithoutLoggingInAGH.txt" + }, + new + { + FilterListId = 1979L, + Id = 2064L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/BrowseWebsitesWithoutLoggingInAGH.txt" + }, + new + { + FilterListId = 1980L, + Id = 2065L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/BrowseWebsitesWithoutLoggingInDomains.txt" + }, + new + { + FilterListId = 1980L, + Id = 2066L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/BrowseWebsitesWithoutLoggingInDomains.txt" + }, + new + { + FilterListId = 1981L, + Id = 2067L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/WikiaPureBrowsingExperienceDomains.txt" + }, + new + { + FilterListId = 1981L, + Id = 2068L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/WikiaPureBrowsingExperienceDomains.txt" + }, + new + { + FilterListId = 1983L, + Id = 2069L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiSubmissiveEroticaList.txt" + }, + new + { + FilterListId = 1983L, + Id = 2070L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiSubmissiveEroticaList.txt" + }, + new + { + FilterListId = 1984L, + Id = 2071L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/ImgurPureImageryExperience.txt" + }, + new + { + FilterListId = 1984L, + Id = 2072L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/ImgurPureImageryExperience.txt" + }, + new + { + FilterListId = 1985L, + Id = 2073L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://dns.adguard.com/dns-query" + }, + new + { + FilterListId = 1985L, + Id = 2074L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "tls://dns.adguard.com/" + }, + new + { + FilterListId = 1985L, + Id = 2075L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "176.103.130.130" + }, + new + { + FilterListId = 1986L, + Id = 2076L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://dns-family.adguard.com/dns-query" + }, + new + { + FilterListId = 1986L, + Id = 2077L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "tls://dns-family.adguard.com/" + }, + new + { + FilterListId = 1986L, + Id = 2078L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "176.103.130.132" + }, + new + { + FilterListId = 1987L, + Id = 2079L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/SayNoToRacismOnTwitch.txt" + }, + new + { + FilterListId = 1987L, + Id = 2080L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/SayNoToRacismOnTwitch.txt" + }, + new + { + FilterListId = 1988L, + Id = 2081L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/MeWeHappyTimeFunClub.txt" + }, + new + { + FilterListId = 1988L, + Id = 2082L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/MeWeHappyTimeFunClub.txt" + }, + new + { + FilterListId = 1989L, + Id = 2083L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/PokémonNoGOZone.txt" + }, + new + { + FilterListId = 1989L, + Id = 2084L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/PokémonNoGOZone.txt" + }, + new + { + FilterListId = 1990L, + Id = 2085L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/EmptyPaddingRemover.txt" + }, + new + { + FilterListId = 1990L, + Id = 2086L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/EmptyPaddingRemover.txt" + }, + new + { + FilterListId = 1991L, + Id = 2087L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/JapaneseTextSoftener.txt" + }, + new + { + FilterListId = 1991L, + Id = 2088L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/JapaneseTextSoftener.txt" + }, + new + { + FilterListId = 1992L, + Id = 2089L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://dsi.ut-capitole.fr/blacklists/download/sect.tar.gz" + }, + new + { + FilterListId = 1993L, + Id = 2090L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://dsi.ut-capitole.fr/blacklists/download/astrology.tar.gz" + }, + new + { + FilterListId = 1994L, + Id = 2091L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://dsi.ut-capitole.fr/blacklists/download/shortener.tar.gz" + }, + new + { + FilterListId = 1995L, + Id = 2092L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/assets/mirror/ut1-gambling.txt" + }, + new + { + FilterListId = 1996L, + Id = 2093L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Extensions/Anti Obfuscation" + }, + new + { + FilterListId = 1998L, + Id = 2095L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Anti/Anti Location Tracking" + }, + new + { + FilterListId = 2000L, + Id = 2096L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://someonewhocares.org/hosts/ipv6/hosts" + }, + new + { + FilterListId = 2001L, + Id = 2097L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/complete/dnsmasq.conf" + }, + new + { + FilterListId = 2002L, + Id = 2098L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/mini/dnsmasq.conf" + }, + new + { + FilterListId = 2003L, + Id = 2099L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/Pro/dnsmasq.conf" + }, + new + { + FilterListId = 2004L, + Id = 2100L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://www.accs-net.com/hosts/Downloads/hosts127001.zip" + }, + new + { + FilterListId = 2005L, + Id = 2101L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/assets/mirror/ut1-cryptojacking.txt" + }, + new + { + FilterListId = 2006L, + Id = 2102L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/assets/mirror/ut1-adult.txt" + }, + new + { + FilterListId = 2007L, + Id = 2103L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/assets/mirror/ut1-social-networks.txt" + }, + new + { + FilterListId = 2008L, + Id = 2104L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/ads.txt" + }, + new + { + FilterListId = 2009L, + Id = 2105L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/crypto.txt" + }, + new + { + FilterListId = 2010L, + Id = 2106L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/ransomware.txt" + }, + new + { + FilterListId = 2011L, + Id = 2107L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/piracy.txt" + }, + new + { + FilterListId = 2012L, + Id = 2108L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/tracking.txt" + }, + new + { + FilterListId = 2013L, + Id = 2109L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/scam.txt" + }, + new + { + FilterListId = 2014L, + Id = 2110L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/gambling.txt" + }, + new + { + FilterListId = 2017L, + Id = 2113L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/porn.txt" + }, + new + { + FilterListId = 2018L, + Id = 2114L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/redirect.txt" + }, + new + { + FilterListId = 2022L, + Id = 2115L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://ipverse.net/ipblocks/data/countries/cn.zone" + }, + new + { + FilterListId = 2023L, + Id = 2116L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://ipverse.net/ipblocks/data/countries/ru.zone" + }, + new + { + FilterListId = 2024L, + Id = 2117L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://ipverse.net/ipblocks/data/countries/ua.zone" + }, + new + { + FilterListId = 2025L, + Id = 2118L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://ipverse.net/ipblocks/data/countries/ro.zone" + }, + new + { + FilterListId = 2026L, + Id = 2119L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hblock.molinero.dev/hosts_domains.txt" + }, + new + { + FilterListId = 2027L, + Id = 2120L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hblock.molinero.dev/hosts_adblock.txt" + }, + new + { + FilterListId = 2028L, + Id = 2121L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/malware.txt" + }, + new + { + FilterListId = 2029L, + Id = 2122L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://ipverse.net/ipblocks/data/countries/cn-ipv6.zone" + }, + new + { + FilterListId = 2030L, + Id = 2123L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://ipverse.net/ipblocks/data/countries/ru-ipv6.zone" + }, + new + { + FilterListId = 2031L, + Id = 2124L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://ipverse.net/ipblocks/data/countries/ua-ipv6.zone" + }, + new + { + FilterListId = 2034L, + Id = 2127L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/fanboy-notifications.txt" + }, + new + { + FilterListId = 2035L, + Id = 2128L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/fanboy-notifications.tpl" + }, + new + { + FilterListId = 2036L, + Id = 2129L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/notracking/hosts-blocklists/master/adblock/adblock.txt" + }, + new + { + FilterListId = 2038L, + Id = 2130L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/dnswarden/blocklist/master/blacklist-formats/hosts" + }, + new + { + FilterListId = 2039L, + Id = 2131L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/dnswarden/blocklist/master/blacklist-formats/hostnames" + }, + new + { + FilterListId = 2040L, + Id = 2132L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/dnswarden/blocklist/master/blacklist-formats/rpz" + }, + new + { + FilterListId = 2041L, + Id = 2133L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersHostsIPv6.txt" + }, + new + { + FilterListId = 2041L, + Id = 2134L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersHostsIPv6.txt" + }, + new + { + FilterListId = 2043L, + Id = 2137L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/privacy-protection-tools/anti-AD/master/anti-ad-easylist.txt" + }, + new + { + FilterListId = 2043L, + Id = 2138L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.jsdelivr.net/gh/privacy-protection-tools/anti-AD@master/anti-ad-easylist.txt" + }, + new + { + FilterListId = 2043L, + Id = 2139L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://anti-ad.net/easylist.txt" + }, + new + { + FilterListId = 2044L, + Id = 2140L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/privacy-protection-tools/anti-AD/master/anti-ad-domains.txt" + }, + new + { + FilterListId = 2044L, + Id = 2141L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.jsdelivr.net/gh/privacy-protection-tools/anti-AD@master/anti-ad-domains.txt" + }, + new + { + FilterListId = 2044L, + Id = 2142L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://anti-ad.net/domains.txt" + }, + new + { + FilterListId = 2045L, + Id = 2143L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/privacy-protection-tools/anti-AD/master/adblock-for-dnsmasq.conf" + }, + new + { + FilterListId = 2045L, + Id = 2144L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.jsdelivr.net/gh/privacy-protection-tools/anti-AD@master/adblock-for-dnsmasq.conf" + }, + new + { + FilterListId = 2045L, + Id = 2145L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://anti-ad.net/anti-ad-for-dnsmasq.conf" + }, + new + { + FilterListId = 2046L, + Id = 2146L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/privacy-protection-tools/anti-AD/master/anti-ad-surge.txt" + }, + new + { + FilterListId = 2046L, + Id = 2147L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.jsdelivr.net/gh/privacy-protection-tools/anti-AD@master/anti-ad-surge.txt" + }, + new + { + FilterListId = 2046L, + Id = 2148L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://anti-ad.net/surge.txt" + }, + new + { + FilterListId = 2047L, + Id = 2149L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/danielmiessler/SecLists/master/Discovery/Infrastructure/common-router-ips.txt" + }, + new + { + FilterListId = 2048L, + Id = 2150L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/danielmiessler/SecLists/master/IOCs/kaspersky-careto-domains.txt" + }, + new + { + FilterListId = 2049L, + Id = 2151L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/danielmiessler/SecLists/master/IOCs/kaspersky-careto-C2.txt" + }, + new + { + FilterListId = 2050L, + Id = 2152L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/danielmiessler/SecLists/master/Miscellaneous/dns-resolvers.txt" + }, + new + { + FilterListId = 2051L, + Id = 2153L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hostfiles.frogeye.fr/firstparty-trackers.txt" + }, + new + { + FilterListId = 2052L, + Id = 2154L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hostfiles.frogeye.fr/firstparty-trackers-hosts.txt" + }, + new + { + FilterListId = 2053L, + Id = 2155L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hostfiles.frogeye.fr/firstparty-only-trackers.txt" + }, + new + { + FilterListId = 2054L, + Id = 2156L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hostfiles.frogeye.fr/firstparty-only-trackers-hosts.txt" + }, + new + { + FilterListId = 2055L, + Id = 2157L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hostfiles.frogeye.fr/multiparty-only-trackers.txt" + }, + new + { + FilterListId = 2056L, + Id = 2158L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hostfiles.frogeye.fr/multiparty-only-trackers-hosts.txt" + }, + new + { + FilterListId = 2057L, + Id = 2159L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nextdns/cname-cloaking-blocklist/master/domains" + }, + new + { + FilterListId = 2058L, + Id = 2160L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nextdns/piracy-blocklists/master/torrent-websites" + }, + new + { + FilterListId = 2059L, + Id = 2161L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gist.githubusercontent.com/Marfjeh/97f2f049b41b3f09eabcc04004073ae3/raw/58fe3d12c4157b0bda1a2af313809597ea54bb08/torrent-trackers-host" + }, + new + { + FilterListId = 2060L, + Id = 2162L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Other Formats/Extra Format 1" + }, + new + { + FilterListId = 2061L, + Id = 2163L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Other Formats/Simplified Domains" + }, + new + { + FilterListId = 2062L, + Id = 2164L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deletescape/noads/master/lists/additional-rules.txt" + }, + new + { + FilterListId = 2063L, + Id = 2165L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://nixnet.services/hosts.txt" + }, + new + { + FilterListId = 2064L, + Id = 2166L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://adblock.any.dns.nixnet.xyz/dns-query" + }, + new + { + FilterListId = 2064L, + Id = 2167L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "tls://198.251.90.89:853/" + }, + new + { + FilterListId = 2064L, + Id = 2168L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "198.251.90.89" + }, + new + { + FilterListId = 2065L, + Id = 2169L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/troysjanda/MyBlockLists/master/yahoocomplete.txt" + }, + new + { + FilterListId = 2067L, + Id = 2170L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://ads-doh.securedns.eu/dns-query" + }, + new + { + FilterListId = 2067L, + Id = 2171L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "tls://ads-dot.securedns.eu/" + }, + new + { + FilterListId = 2067L, + Id = 2172L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "146.185.167.43:5443" + }, + new + { + FilterListId = 2068L, + Id = 2173L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.powershellgallery.com/packages/Manage-AdBlocksOnDNSServer/" + }, + new + { + FilterListId = 2069L, + Id = 2174L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "91.239.26.140" + }, + new + { + FilterListId = 2070L, + Id = 2175L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://dns.noads.online/dns-query" + }, + new + { + FilterListId = 2070L, + Id = 2176L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "tls://dns.noads.online:853/" + }, + new + { + FilterListId = 2070L, + Id = 2177L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "167.99.241.49" + }, + new + { + FilterListId = 2071L, + Id = 2178L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "46.101.91.123" + }, + new + { + FilterListId = 2072L, + Id = 2179L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://sebsauvage.net/hosts/hosts" + }, + new + { + FilterListId = 2073L, + Id = 2180L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://sebsauvage.net/hosts/hosts-adguard" + }, + new + { + FilterListId = 2074L, + Id = 2181L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://sebsauvage.net/hosts/raw" + }, + new + { + FilterListId = 2075L, + Id = 2182L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/SmartTV-AGH.txt" + }, + new + { + FilterListId = 2077L, + Id = 2184L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/durablenapkin/scamblocklist/master/adguard.txt" + }, + new + { + FilterListId = 2078L, + Id = 2185L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://ads-for-open-source.readthedocs.io/en/latest/_static/lists/readthedocs-ads.txt" + }, + new + { + FilterListId = 2079L, + Id = 2186L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/adguard/social-plus.txt" + }, + new + { + FilterListId = 2080L, + Id = 2187L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/adguard/tracking-plus.txt" + }, + new + { + FilterListId = 2081L, + Id = 2188L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/sabre-filters2.txt" + }, + new + { + FilterListId = 2082L, + Id = 2189L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/blog-parts.txt" + }, + new + { + FilterListId = 2083L, + Id = 2190L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/blog-parts-adult.txt" + }, + new + { + FilterListId = 2084L, + Id = 2191L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/medium_mode/anti-allowlist.txt" + }, + new + { + FilterListId = 2085L, + Id = 2192L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/medium_mode/dynamic-rules.txt" + }, + new + { + FilterListId = 2086L, + Id = 2193L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/medium_mode/static-rules.txt" + }, + new + { + FilterListId = 2087L, + Id = 2194L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/scafroglia93/blocklists/master/blocklists-main.txt" + }, + new + { + FilterListId = 2088L, + Id = 2195L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/medium_mode/dynamic-rules-mob.txt" + }, + new + { + FilterListId = 2089L, + Id = 2196L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/no_gen_cosm/phhider.txt" + }, + new + { + FilterListId = 2090L, + Id = 2197L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/no_gen_cosm/phhider-mob.txt" + }, + new + { + FilterListId = 2091L, + Id = 2198L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-filters.txt" + }, + new + { + FilterListId = 2092L, + Id = 2199L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-paranoid.txt" + }, + new + { + FilterListId = 2093L, + Id = 2200L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-social.txt" + }, + new + { + FilterListId = 2094L, + Id = 2201L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-annoyances.txt" + }, + new + { + FilterListId = 2099L, + Id = 2203L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "185.228.168.9" + }, + new + { + FilterListId = 2099L, + Id = 2204L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "185.228.169.9" + }, + new + { + FilterListId = 2099L, + Id = 2205L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "2a0d:2a00:1::2" + }, + new + { + FilterListId = 2100L, + Id = 2206L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Kees1958/WS3_annual_most_used_survey_blocklist/master/Top500" + }, + new + { + FilterListId = 2101L, + Id = 2207L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DavidTai780/AdGuard-Home-Private-Rules/master/hosts.txt" + }, + new + { + FilterListId = 2102L, + Id = 2208L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/loveqqzj/AdGuard/master/Mobile.txt" + }, + new + { + FilterListId = 2103L, + Id = 2209L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/crimsonphobia/etc/master/ips" + }, + new + { + FilterListId = 2104L, + Id = 2210L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/banbendalao/ADgk/master/ADgk.txt" + }, + new + { + FilterListId = 2104L, + Id = 2211L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.jsdelivr.net/gh/banbendalao/ADgk@latest/ADgk.txt" + }, + new + { + FilterListId = 2104L, + Id = 2212L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://banbendalao.coding.net/p/adgk/d/ADgk/git/raw/master/ADgk.txt" + }, + new + { + FilterListId = 2105L, + Id = 2213L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/banbendalao/ADgk/master/kill-baidu-ad.txt" + }, + new + { + FilterListId = 2105L, + Id = 2214L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.jsdelivr.net/gh/banbendalao/ADgk@latest/kill-baidu-ad.txt" + }, + new + { + FilterListId = 2105L, + Id = 2215L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://banbendalao.coding.net/p/adgk/d/ADgk/git/raw/master/kill-baidu-ad.txt" + }, + new + { + FilterListId = 2106L, + Id = 2216L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://dns.adgk.net:4433/dns-query" + }, + new + { + FilterListId = 2106L, + Id = 2217L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "tls://dns.adgk.net/" + }, + new + { + FilterListId = 2106L, + Id = 2218L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "47.98.48.196" + }, + new + { + FilterListId = 2107L, + Id = 2219L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "45.7.228.197" + }, + new + { + FilterListId = 2108L, + Id = 2220L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "198.91.86.63" + }, + new + { + FilterListId = 2109L, + Id = 2221L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitee.com/halflife/list/raw/master/ad.txt" + }, + new + { + FilterListId = 2109L, + Id = 2222L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/o0HalfLife0o/list/master/ad.txt" + }, + new + { + FilterListId = 2110L, + Id = 2223L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitee.com/anye1998/Adguard-List-of-personal-rules/raw/master/List-of-personal-rules.txt" + }, + new + { + FilterListId = 2111L, + Id = 2224L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cjx82630/cjxlist/master/cjx-ublock.txt" + }, + new + { + FilterListId = 2111L, + Id = 2225L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitee.com/cjx82630/cjxlist/raw/master/cjx-ublock.txt" + }, + new + { + FilterListId = 2112L, + Id = 2226L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/GDPR 451 List.txt" + }, + new + { + FilterListId = 2112L, + Id = 2227L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/GDPR 451 List.txt" + }, + new + { + FilterListId = 2113L, + Id = 2228L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/TorRedirectorList-URLRedirector.json" + }, + new + { + FilterListId = 2113L, + Id = 2229L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/TorRedirectorList-URLRedirector.json" + }, + new + { + FilterListId = 2114L, + Id = 2230L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/MediaPlayerGradientRemover.txt" + }, + new + { + FilterListId = 2114L, + Id = 2231L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/MediaPlayerGradientRemover.txt" + }, + new + { + FilterListId = 2115L, + Id = 2232L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/indianlist+easylist.txt" + }, + new + { + FilterListId = 2117L, + Id = 2233L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/indianlist+easylist.tpl" + }, + new + { + FilterListId = 2118L, + Id = 2234L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/koreanlist+easylist.txt" + }, + new + { + FilterListId = 2119L, + Id = 2235L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/koreanlist+easylist.tpl" + }, + new + { + FilterListId = 2120L, + Id = 2236L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistportuguese+easylist.txt" + }, + new + { + FilterListId = 2121L, + Id = 2237L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistportuguese+easylist.tpl" + }, + new + { + FilterListId = 2122L, + Id = 2238L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/abpvn+easylist.txt" + }, + new + { + FilterListId = 2123L, + Id = 2239L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/abpvn+easylist.tpl" + }, + new + { + FilterListId = 2124L, + Id = 2240L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/abpindo+easylist.tpl" + }, + new + { + FilterListId = 2125L, + Id = 2241L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/abp-filters-anti-cv.tpl" + }, + new + { + FilterListId = 2126L, + Id = 2242L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/bitblock.tpl" + }, + new + { + FilterListId = 2127L, + Id = 2243L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/bitblockext.txt" + }, + new + { + FilterListId = 2128L, + Id = 2244L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/bitblockext.tpl" + }, + new + { + FilterListId = 2129L, + Id = 2245L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/antinuha.txt" + }, + new + { + FilterListId = 2130L, + Id = 2246L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/antinuha.tpl" + }, + new + { + FilterListId = 2131L, + Id = 2247L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/cntblock.tpl" + }, + new + { + FilterListId = 2132L, + Id = 2248L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/hdd1013/AdBlockListSubKr/master/filter.txt" + }, + new + { + FilterListId = 2133L, + Id = 2249L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/dagoll/filters-list/master/dagoll-filters-list.txt" + }, + new + { + FilterListId = 2134L, + Id = 2250L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/TheCardinalSystem/Cruncyroll-Filter-List/master/english.txt" + }, + new + { + FilterListId = 2135L, + Id = 2251L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/radokristof/HunFakeNewsAdblockList/master/hosts" + }, + new + { + FilterListId = 2136L, + Id = 2252L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/dagoll/filters-list/master/dynamic-filtering-rules.txt" + }, + new + { + FilterListId = 2137L, + Id = 2253L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/AmazonFireTV.txt" + }, + new + { + FilterListId = 2138L, + Id = 2254L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DariusIurca/RFNBL-Romanian-Fake-News-Block-List/master/RFNBL.txt" + }, + new + { + FilterListId = 2139L, + Id = 2255L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DariusIurca/ROADBLK-EXTRA/master/ROADBLK-EXTRA.txt" + }, + new + { + FilterListId = 2140L, + Id = 2256L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/dnscrypt/spy.txt" + }, + new + { + FilterListId = 2141L, + Id = 2257L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/dnscrypt/update.txt" + }, + new + { + FilterListId = 2142L, + Id = 2258L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/dnscrypt/extra.txt" + }, + new + { + FilterListId = 2143L, + Id = 2259L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/openwrt/spy/dnsmasq.conf" + }, + new + { + FilterListId = 2144L, + Id = 2260L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/openwrt/update/dnsmasq.conf" + }, + new + { + FilterListId = 2145L, + Id = 2261L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/openwrt/extra/dnsmasq.conf" + }, + new + { + FilterListId = 2146L, + Id = 2262L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/firewall/spy.txt" + }, + new + { + FilterListId = 2147L, + Id = 2263L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/firewall/update.txt" + }, + new + { + FilterListId = 2148L, + Id = 2264L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/firewall/extra.txt" + }, + new + { + FilterListId = 2149L, + Id = 2265L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistpolish+easylist.txt" + }, + new + { + FilterListId = 2150L, + Id = 2266L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistpolish+easylist.tpl" + }, + new + { + FilterListId = 2151L, + Id = 2267L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/newhosts-final-IPv6.hosts" + }, + new + { + FilterListId = 2152L, + Id = 2268L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/newhosts-final-Dual.hosts" + }, + new + { + FilterListId = 2153L, + Id = 2269L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tomzuu/blacklist-named/master/malwaredomainlist.conf" + }, + new + { + FilterListId = 2154L, + Id = 2270L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tomzuu/blacklist-named/master/cedia_justdomains.conf" + }, + new + { + FilterListId = 2155L, + Id = 2271L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://abp.oisd.nl/" + }, + new + { + FilterListId = 2155L, + Id = 2272L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/abp.txt" + }, + new + { + FilterListId = 2155L, + Id = 2273L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/abp.txt" + }, + new + { + FilterListId = 2156L, + Id = 2274L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Special security lists/IDNHomographProtectionTotal.txt" + }, + new + { + FilterListId = 2156L, + Id = 2275L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Special security lists/IDNHomographProtectionTotal.txt" + }, + new + { + FilterListId = 2157L, + Id = 2276L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Special security lists/IDNHomographProtection-USLatinTLDsOnly.txt" + }, + new + { + FilterListId = 2157L, + Id = 2277L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Special security lists/IDNHomographProtection-USLatinTLDsOnly.txt" + }, + new + { + FilterListId = 2158L, + Id = 2278L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/EkstraBladetEroticContentRemover.txt" + }, + new + { + FilterListId = 2158L, + Id = 2279L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/EkstraBladetEroticContentRemover.txt" + }, + new + { + FilterListId = 2159L, + Id = 2280L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://orca.pet/notonmyshift/domains.txt" + }, + new + { + FilterListId = 2160L, + Id = 2281L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://bl.isx.fr/raw" + }, + new + { + FilterListId = 2161L, + Id = 2282L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/hg1978/AdGuard-Home-Whitelist/master/whitelist.txt" + }, + new + { + FilterListId = 2162L, + Id = 2283L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/MassMove/AttackVectors/master/LocalJournals/fake-local-journals-list.txt" + }, + new + { + FilterListId = 2163L, + Id = 2284L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/UndertaleRemoverForSoundCloud.txt" + }, + new + { + FilterListId = 2163L, + Id = 2285L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/UndertaleRemoverForSoundCloud.txt" + }, + new + { + FilterListId = 2165L, + Id = 2289L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-dnsmasq-online.conf" + }, + new + { + FilterListId = 2165L, + Id = 2290L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-dnsmasq-online.conf" + }, + new + { + FilterListId = 2165L, + Id = 2291L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-dnsmasq-online.conf" + }, + new + { + FilterListId = 2167L, + Id = 2295L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-hosts-online.txt" + }, + new + { + FilterListId = 2167L, + Id = 2296L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-hosts-online.txt" + }, + new + { + FilterListId = 2167L, + Id = 2297L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-hosts-online.txt" + }, + new + { + FilterListId = 2169L, + Id = 2301L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-bind-online.conf" + }, + new + { + FilterListId = 2169L, + Id = 2302L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-bind-online.conf" + }, + new + { + FilterListId = 2169L, + Id = 2303L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-bind-online.conf" + }, + new + { + FilterListId = 2171L, + Id = 2307L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-unbound-online.conf" + }, + new + { + FilterListId = 2171L, + Id = 2308L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-unbound-online.conf" + }, + new + { + FilterListId = 2171L, + Id = 2309L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-unbound-online.conf" + }, + new + { + FilterListId = 2172L, + Id = 2310L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/static/HPHosts/Hostsemd.txt" + }, + new + { + FilterListId = 2173L, + Id = 2311L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/static/HPHosts/Hostsexp.txt" + }, + new + { + FilterListId = 2174L, + Id = 2312L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/static/HPHosts/Hostsgrm.txt" + }, + new + { + FilterListId = 2175L, + Id = 2313L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/static/HPHosts/Hostsfsa.txt" + }, + new + { + FilterListId = 2176L, + Id = 2314L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/static/HPHosts/Hostsmmt.txt" + }, + new + { + FilterListId = 2177L, + Id = 2315L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/static/HPHosts/Hostspha.txt" + }, + new + { + FilterListId = 2179L, + Id = 2318L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://blocklist.palemoon.org/ABL/lunar-blocklist.txt" + }, + new + { + FilterListId = 2180L, + Id = 2319L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://mirai.security.gives/data/ip_list.txt" + }, + new + { + FilterListId = 2181L, + Id = 2320L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/stamparm/maltrail/master/trails/static/suspicious/crypto_mining.txt" + }, + new + { + FilterListId = 2182L, + Id = 2321L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/stamparm/maltrail/master/trails/static/suspicious/dynamic_domain.txt" + }, + new + { + FilterListId = 2183L, + Id = 2322L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/stamparm/maltrail/master/trails/static/suspicious/rogue_dns.txt" + }, + new + { + FilterListId = 2184L, + Id = 2323L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/stamparm/maltrail/master/trails/static/malicious/magentocore.txt" + }, + new + { + FilterListId = 2185L, + Id = 2324L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/1_optimized.txt" + }, + new + { + FilterListId = 2186L, + Id = 2325L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/4_optimized.txt" + }, + new + { + FilterListId = 2187L, + Id = 2326L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/113_optimized.txt" + }, + new + { + FilterListId = 2188L, + Id = 2327L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/104_optimized.txt" + }, + new + { + FilterListId = 2189L, + Id = 2328L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/115_optimized.txt" + }, + new + { + FilterListId = 2190L, + Id = 2329L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/118_optimized.txt" + }, + new + { + FilterListId = 2191L, + Id = 2330L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/14_optimized.txt" + }, + new + { + FilterListId = 2192L, + Id = 2331L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/122_optimized.txt" + }, + new + { + FilterListId = 2193L, + Id = 2332L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/123_optimized.txt" + }, + new + { + FilterListId = 2194L, + Id = 2333L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/213_optimized.txt" + }, + new + { + FilterListId = 2195L, + Id = 2334L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bambenek/block-doh/master/doh-hosts.txt" + }, + new + { + FilterListId = 2196L, + Id = 2335L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bambenek/block-doh/master/doh-ipv4.txt" + }, + new + { + FilterListId = 2197L, + Id = 2336L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bambenek/block-doh/master/doh-ipv6.txt" + }, + new + { + FilterListId = 2198L, + Id = 2337L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://azorult-tracker.net/api/list/domain?format=plain" + }, + new + { + FilterListId = 2199L, + Id = 2338L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/10.txt" + }, + new + { + FilterListId = 2200L, + Id = 2339L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/13.txt" + }, + new + { + FilterListId = 2201L, + Id = 2340L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/3.txt" + }, + new + { + FilterListId = 2202L, + Id = 2341L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/9.txt" + }, + new + { + FilterListId = 2203L, + Id = 2342L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/4.txt" + }, + new + { + FilterListId = 2204L, + Id = 2343L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/1.txt" + }, + new + { + FilterListId = 2205L, + Id = 2344L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/11.txt" + }, + new + { + FilterListId = 2206L, + Id = 2345L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/ios/filters/11.txt" + }, + new + { + FilterListId = 2207L, + Id = 2346L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/7.txt" + }, + new + { + FilterListId = 2208L, + Id = 2347L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/6.txt" + }, + new + { + FilterListId = 2209L, + Id = 2348L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/5.txt" + }, + new + { + FilterListId = 2210L, + Id = 2349L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/2.txt" + }, + new + { + FilterListId = 2211L, + Id = 2350L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/8.txt" + }, + new + { + FilterListId = 2212L, + Id = 2351L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/14.txt" + }, + new + { + FilterListId = 2213L, + Id = 2352L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/16.txt" + }, + new + { + FilterListId = 2214L, + Id = 2353L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/2_without_easylist.txt" + }, + new + { + FilterListId = 2215L, + Id = 2354L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/stamparm/aux/master/maltrail-malware-domains.txt" + }, + new + { + FilterListId = 2216L, + Id = 2355L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://infosharing.cybersaiyan.it/feeds/CS-PIHOLE" + }, + new + { + FilterListId = 2217L, + Id = 2356L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/stamparm/ipsum/master/levels/4.txt" + }, + new + { + FilterListId = 2218L, + Id = 2357L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/stamparm/ipsum/master/levels/5.txt" + }, + new + { + FilterListId = 2219L, + Id = 2358L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/stamparm/ipsum/master/levels/6.txt" + }, + new + { + FilterListId = 2220L, + Id = 2359L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAnthroCombatWaifuList.txt" + }, + new + { + FilterListId = 2220L, + Id = 2360L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAnthroCombatWaifuList.txt" + }, + new + { + FilterListId = 2230L, + Id = 2370L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/abpindo-minified.txt" + }, + new + { + FilterListId = 2231L, + Id = 2371L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/abpvn-minified.txt" + }, + new + { + FilterListId = 2232L, + Id = 2372L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/ruadlist-minified.txt" + }, + new + { + FilterListId = 2233L, + Id = 2373L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/bulgarian_list-minified.txt" + }, + new + { + FilterListId = 2234L, + Id = 2374L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylist-minified.txt" + }, + new + { + FilterListId = 2235L, + Id = 2375L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistchina-minified.txt" + }, + new + { + FilterListId = 2236L, + Id = 2376L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hg.adblockplus.org/customfilterlists/raw-file/default/easylistczechandslovak-minified.txt" + }, + new + { + FilterListId = 2237L, + Id = 2377L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistdutch-minified.txt" + }, + new + { + FilterListId = 2238L, + Id = 2378L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistgermany-minified.txt" + }, + new + { + FilterListId = 2239L, + Id = 2379L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistitaly-minified.txt" + }, + new + { + FilterListId = 2240L, + Id = 2380L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistlithuania-minified.txt" + }, + new + { + FilterListId = 2241L, + Id = 2381L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistpolish-minified.txt" + }, + new + { + FilterListId = 2242L, + Id = 2382L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistportuguese-minified.txt" + }, + new + { + FilterListId = 2243L, + Id = 2383L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistspanish-minified.txt" + }, + new + { + FilterListId = 2244L, + Id = 2384L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easyprivacy-minified.txt" + }, + new + { + FilterListId = 2245L, + Id = 2385L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/fanboy-social-minified.txt" + }, + new + { + FilterListId = 2246L, + Id = 2386L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/indianlist-minified.txt" + }, + new + { + FilterListId = 2247L, + Id = 2387L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/israellist-minified.txt" + }, + new + { + FilterListId = 2248L, + Id = 2388L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/latvianlist-minified.txt" + }, + new + { + FilterListId = 2250L, + Id = 2390L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/liste_fr-minified.txt" + }, + new + { + FilterListId = 2251L, + Id = 2391L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/rolist-minified.txt" + }, + new + { + FilterListId = 2252L, + Id = 2392L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistchina+easylistchina_compliance+easylist.txt" + }, + new + { + FilterListId = 2253L, + Id = 2393L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/abpindo-minified.tpl" + }, + new + { + FilterListId = 2254L, + Id = 2394L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/abpvn-minified.tpl" + }, + new + { + FilterListId = 2255L, + Id = 2395L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/ruadlist-minified.tpl" + }, + new + { + FilterListId = 2256L, + Id = 2396L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/bulgarian_list-minified.tpl" + }, + new + { + FilterListId = 2257L, + Id = 2397L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylist-minified.tpl" + }, + new + { + FilterListId = 2258L, + Id = 2398L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistchina-minified.tpl" + }, + new + { + FilterListId = 2260L, + Id = 2400L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistdutch-minified.tpl" + }, + new + { + FilterListId = 2261L, + Id = 2401L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistgermany-minified.tpl" + }, + new + { + FilterListId = 2262L, + Id = 2402L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistitaly-minified.tpl" + }, + new + { + FilterListId = 2263L, + Id = 2403L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistlithuania-minified.tpl" + }, + new + { + FilterListId = 2264L, + Id = 2404L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistpolish-minified.tpl" + }, + new + { + FilterListId = 2265L, + Id = 2405L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistportuguese-minified.tpl" + }, + new + { + FilterListId = 2266L, + Id = 2406L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistspanish-minified.tpl" + }, + new + { + FilterListId = 2267L, + Id = 2407L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easyprivacy-minified.tpl" + }, + new + { + FilterListId = 2268L, + Id = 2408L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/fanboy-social-minified.tpl" + }, + new + { + FilterListId = 2269L, + Id = 2409L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/indianlist-minified.tpl" + }, + new + { + FilterListId = 2270L, + Id = 2410L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/israellist-minified.tpl" + }, + new + { + FilterListId = 2271L, + Id = 2411L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/latvianlist-minified.tpl" + }, + new + { + FilterListId = 2272L, + Id = 2412L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/liste_ar-minified.tpl" + }, + new + { + FilterListId = 2273L, + Id = 2413L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/liste_fr-minified.tpl" + }, + new + { + FilterListId = 2274L, + Id = 2414L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/rolist-minified.tpl" + }, + new + { + FilterListId = 2275L, + Id = 2415L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistchina+easylistchina_compliance+easylist.tpl" + }, + new + { + FilterListId = 2276L, + Id = 2416L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://sub.adtchrome.com/adt-chinalist-easylist.txt" + }, + new + { + FilterListId = 2277L, + Id = 2417L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/TakoYachty/Gift-Card-Killer/master/Mega Untrusted Hosts Blocker.txt" + }, + new + { + FilterListId = 2278L, + Id = 2418L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/stonecrusher/filterlists-pihole/master/watchlist-internet-ph.txt" + }, + new + { + FilterListId = 2279L, + Id = 2419L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://badmojr.github.io/1Hosts/complete/wildcards.txt" + }, + new + { + FilterListId = 2279L, + Id = 2420L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/complete/wildcards.txt" + }, + new + { + FilterListId = 2280L, + Id = 2421L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://badmojr.github.io/1Hosts/mini/wildcards.txt" + }, + new + { + FilterListId = 2280L, + Id = 2422L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/mini/wildcards.txt" + }, + new + { + FilterListId = 2281L, + Id = 2423L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://badmojr.github.io/1Hosts/Pro/wildcards.txt" + }, + new + { + FilterListId = 2281L, + Id = 2424L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/Pro/wildcards.txt" + }, + new + { + FilterListId = 2283L, + Id = 2426L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jerryn70/GoodbyeAds/master/Formats/GoodbyeAds-AdBlock-Filter.txt" + }, + new + { + FilterListId = 2284L, + Id = 2427L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jerryn70/GoodbyeAds/master/Hosts/GoodbyeAds-Ultra.txt" + }, + new + { + FilterListId = 2285L, + Id = 2428L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jerryn70/GoodbyeAds/master/Formats/GoodbyeAds-Ultra-AdBlock-Filter.txt" + }, + new + { + FilterListId = 2286L, + Id = 2429L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersABP-Inclusion.txt" + }, + new + { + FilterListId = 2286L, + Id = 2430L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersABP-Inclusion.txt" + }, + new + { + FilterListId = 2287L, + Id = 2431L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiRacismList.txt" + }, + new + { + FilterListId = 2287L, + Id = 2432L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiRacismList.txt" + }, + new + { + FilterListId = 2288L, + Id = 2433L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/gwarser/filter-lists/master/lan-block.txt" + }, + new + { + FilterListId = 2289L, + Id = 2434L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/realodix/AdBlockID-Adult/master/AdBlockID_Adult.txt" + }, + new + { + FilterListId = 2290L, + Id = 2435L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/llacb47/miscfilters/master/antipaywall.txt" + }, + new + { + FilterListId = 2291L, + Id = 2436L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/llacb47/mischosts/master/blacklist" + }, + new + { + FilterListId = 2292L, + Id = 2437L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/master/accelerated-domains.china.conf" + }, + new + { + FilterListId = 2293L, + Id = 2438L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/intr0/zuckerblock/-/raw/master/uBlockOrigin-noMoreGiphy.txt" + }, + new + { + FilterListId = 2294L, + Id = 2439L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/intr0/zuckerblock/-/raw/master/AdGuard-noMoreGiphy.txt" + }, + new + { + FilterListId = 2295L, + Id = 2440L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/hl2guide/DNS-Sinkhole-Lists-A2/master/typosquatting_blocklist.txt" + }, + new + { + FilterListId = 2297L, + Id = 2442L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/BlackJack8/iOSAdblockList/master/Hosts.txt" + }, + new + { + FilterListId = 2298L, + Id = 2443L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/PebbleOG/pihole-regex/master/regex.list" + }, + new + { + FilterListId = 2299L, + Id = 2444L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/anthony-wang/PiHoleBlocklist/master/regex.list" + }, + new + { + FilterListId = 2300L, + Id = 2445L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/anthony-wang/PiHoleBlocklist/master/hosts1.txt" + }, + new + { + FilterListId = 2301L, + Id = 2446L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/revolveruk30/pihole_regex/master/regex.list" + }, + new + { + FilterListId = 2302L, + Id = 2447L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/d43m0nhLInt3r/socialblocklists/master/Skype/skypeblocklist.txt" + }, + new + { + FilterListId = 2302L, + Id = 2448L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/evpne/socialblocklists/master/Skype/skypeblocklist.txt" + }, + new + { + FilterListId = 2303L, + Id = 2449L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/stamparm/blackbook/master/blackbook.txt" + }, + new + { + FilterListId = 2304L, + Id = 2450L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://blocklist.cyberthreatcoalition.org/vetted/domain.txt" + }, + new + { + FilterListId = 2305L, + Id = 2451L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/sophoslabs/covid-iocs/master/malicious_domains.txt" + }, + new + { + FilterListId = 2306L, + Id = 2452L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/sophoslabs/covid-iocs/master/malware_domains.txt" + }, + new + { + FilterListId = 2307L, + Id = 2453L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://managedsentinel.com/downloads/covid19_domains.txt" + }, + new + { + FilterListId = 2308L, + Id = 2454L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://managedsentinel.com/downloads/covid19_ipaddresses.txt" + }, + new + { + FilterListId = 2309L, + Id = 2455L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://rescure.fruxlabs.com/rescure_domain_blacklist.txt" + }, + new + { + FilterListId = 2310L, + Id = 2456L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://rescure.fruxlabs.com/rescure_blacklist.txt" + }, + new + { + FilterListId = 2311L, + Id = 2457L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://rescure.fruxlabs.com/covid.txt" + }, + new + { + FilterListId = 2311L, + Id = 2458L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://kriskintel.com/feeds/ktip_covid_domains.txt" + }, + new + { + FilterListId = 2313L, + Id = 2460L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://kriskintel.com/feeds/ktip_malicious_domains.txt" + }, + new + { + FilterListId = 2314L, + Id = 2461L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://kriskintel.com/feeds/ktip_malicious_Ips.txt" + }, + new + { + FilterListId = 2315L, + Id = 2462L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/NoFormatting/optimized-win.hosts" + }, + new + { + FilterListId = 2316L, + Id = 2463L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/NoFormatting/optimized-win-Dual.hosts" + }, + new + { + FilterListId = 2317L, + Id = 2464L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/NoFormatting/combined-flat.cidr" + }, + new + { + FilterListId = 2318L, + Id = 2465L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://managedsentinel.com/downloads/covid19_url.txt" + }, + new + { + FilterListId = 2319L, + Id = 2466L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://ftpihole.s3.eu-west-2.amazonaws.com/blocklists/smartphone-ads-tracking.txt" + }, + new + { + FilterListId = 2319L, + Id = 2467L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ftpmorph/ftpihole/master/blocklists/smartphone-ads-tracking.txt" + }, + new + { + FilterListId = 2320L, + Id = 2468L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://ftpihole.s3.eu-west-2.amazonaws.com/blocklists/xiaomi-ads-tracking.txt" + }, + new + { + FilterListId = 2320L, + Id = 2469L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ftpmorph/ftpihole/master/blocklists/xiaomi-ads-tracking.txt" + }, + new + { + FilterListId = 2321L, + Id = 2470L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/chromium/filters/224.txt" + }, + new + { + FilterListId = 2322L, + Id = 2471L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/224.txt" + }, + new + { + FilterListId = 2323L, + Id = 2472L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/phishing-filter.txt" + }, + new + { + FilterListId = 2323L, + Id = 2473L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gl/curben/phishing-filter/master/dist/phishing-filter.txt" + }, + new + { + FilterListId = 2323L, + Id = 2474L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter.txt" + }, + new + { + FilterListId = 2324L, + Id = 2475L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/phishing-filter-domains.txt" + }, + new + { + FilterListId = 2324L, + Id = 2476L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gl/curben/phishing-filter/master/phishing-filter-domains.txt" + }, + new + { + FilterListId = 2324L, + Id = 2477L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter-domains.txt" + }, + new + { + FilterListId = 2325L, + Id = 2478L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/phishing-filter-dnsmasq.conf" + }, + new + { + FilterListId = 2325L, + Id = 2479L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gl/curben/phishing-filter/master/dist/phishing-filter-dnsmasq.conf" + }, + new + { + FilterListId = 2325L, + Id = 2480L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter-dnsmasq.conf" + }, + new + { + FilterListId = 2326L, + Id = 2481L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/phishing-filter-hosts.txt" + }, + new + { + FilterListId = 2326L, + Id = 2482L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gl/curben/phishing-filter/master/dist/phishing-filter-hosts.txt" + }, + new + { + FilterListId = 2326L, + Id = 2483L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter-hosts.txt" + }, + new + { + FilterListId = 2327L, + Id = 2484L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/phishing-filter-bind.conf" + }, + new + { + FilterListId = 2327L, + Id = 2485L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gl/curben/phishing-filter/master/dist/phishing-filter-bind.conf" + }, + new + { + FilterListId = 2327L, + Id = 2486L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter-bind.conf" + }, + new + { + FilterListId = 2328L, + Id = 2487L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/phishing-filter-unbound.conf" + }, + new + { + FilterListId = 2328L, + Id = 2488L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gl/curben/phishing-filter/master/dist/phishing-filter-unbound.conf" + }, + new + { + FilterListId = 2328L, + Id = 2489L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter-unbound.conf" + }, + new + { + FilterListId = 2329L, + Id = 2490L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/infinitytec/blocklists/master/adfilters.txt" + }, + new + { + FilterListId = 2330L, + Id = 2491L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://github.com/infinitytec/blocklists/raw/master/annoyances.txt" + }, + new + { + FilterListId = 2331L, + Id = 2492L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://github.com/infinitytec/blocklists/raw/master/medicalpseudoscience.txt" + }, + new + { + FilterListId = 2332L, + Id = 2493L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/Anifltrs.txt" + }, + new + { + FilterListId = 2333L, + Id = 2494L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/MAL-Sync UI.txt" + }, + new + { + FilterListId = 2334L, + Id = 2495L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/Anifiltrs Main/Anifiltrs extra-main.txt" + }, + new + { + FilterListId = 2335L, + Id = 2496L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/Anifiltrs Main/Anifiltrs main.txt" + }, + new + { + FilterListId = 2336L, + Id = 2497L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/Anifiltrs — skeletonise.txt" + }, + new + { + FilterListId = 2337L, + Id = 2498L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/Anifiltrs — skeletonise extra.txt" + }, + new + { + FilterListId = 2338L, + Id = 2499L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/L33Tech/uLists/master/Lists/L33TAIO.uBl" + }, + new + { + FilterListId = 2339L, + Id = 2500L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/L33Tech/uLists/master/Forks/StopModReposts.uBl" + }, + new + { + FilterListId = 2340L, + Id = 2501L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/privacy-protection-tools/anti-AD/master/anti-ad-smartdns.conf" + }, + new + { + FilterListId = 2340L, + Id = 2502L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.jsdelivr.net/gh/privacy-protection-tools/anti-AD@master/anti-ad-smartdns.conf" + }, + new + { + FilterListId = 2340L, + Id = 2503L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://anti-ad.net/anti-ad-for-smartdns.conf" + }, + new + { + FilterListId = 2341L, + Id = 2504L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "66.66.23.98" + }, + new + { + FilterListId = 2342L, + Id = 2505L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/AdGuardSDNSFilter/master/Filters/rules.txt" + }, + new + { + FilterListId = 2343L, + Id = 2506L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/AdGuardSDNSFilter/master/Filters/exceptions.txt" + }, + new + { + FilterListId = 2344L, + Id = 2507L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.eff.org/files/effdntlist.txt" + }, + new + { + FilterListId = 2345L, + Id = 2508L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/filter" + }, + new + { + FilterListId = 2346L, + Id = 2509L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/domains.txt" + }, + new + { + FilterListId = 2347L, + Id = 2510L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/dnsmasq.conf" + }, + new + { + FilterListId = 2348L, + Id = 2511L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/dnsmasq-ipv6.conf" + }, + new + { + FilterListId = 2349L, + Id = 2512L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/unbound.conf" + }, + new + { + FilterListId = 2350L, + Id = 2513L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/rpz.txt" + }, + new + { + FilterListId = 2351L, + Id = 2514L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/pdnsf.txt" + }, + new + { + FilterListId = 2352L, + Id = 2515L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.smartadblock.co.uk/filters/sabfilter.txt" + }, + new + { + FilterListId = 2353L, + Id = 2516L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jdlingyu/ad-wars/master/sha_ad_hosts" + }, + new + { + FilterListId = 2354L, + Id = 2517L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Ultimate-Hosts-Blacklist/whitelist/master/domains.list" + }, + new + { + FilterListId = 2355L, + Id = 2518L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/notracking/hosts-blocklists-scripts/master/hostnames.whitelist.txt" + }, + new + { + FilterListId = 2356L, + Id = 2519L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdBlock" + }, + new + { + FilterListId = 2357L, + Id = 2520L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdBlockLite" + }, + new + { + FilterListId = 2358L, + Id = 2521L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdList" + }, + new + { + FilterListId = 2359L, + Id = 2522L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdListLite" + }, + new + { + FilterListId = 2360L, + Id = 2523L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdBlock-dnsmasq" + }, + new + { + FilterListId = 2361L, + Id = 2524L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdBlockLite-dnsmasq" + }, + new + { + FilterListId = 2362L, + Id = 2525L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdAllowlist" + }, + new + { + FilterListId = 2363L, + Id = 2526L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/examplecode/ad-rules-for-xbrowser/master/core-rule-cn.txt" + }, + new + { + FilterListId = 2364L, + Id = 2527L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ilpl/ad-hosts/master/hosts" + }, + new + { + FilterListId = 2366L, + Id = 2529L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/FalukorvList.txt" + }, + new + { + FilterListId = 2366L, + Id = 2530L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/FalukorvList.txt" + }, + new + { + FilterListId = 2367L, + Id = 2531L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://blokada.org/blocklists/ddgtrackerradar/standard/hosts.txt" + }, + new + { + FilterListId = 2368L, + Id = 2532L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Loyalsoldier/v2ray-rules-dat/release/reject-list.txt" + }, + new + { + FilterListId = 2369L, + Id = 2533L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiKpopSpammersTwitter.txt" + }, + new + { + FilterListId = 2369L, + Id = 2534L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiKpopSpammersTwitter.txt" + }, + new + { + FilterListId = 2370L, + Id = 2535L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Goooler/1024_hosts/master/hosts" + }, + new + { + FilterListId = 2371L, + Id = 2536L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/adbyby/xwhyc-rules/master/lazy.txt" + }, + new + { + FilterListId = 2372L, + Id = 2537L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/privacy-protection-tools/dead-horse/master/anti-ad-white-list.txt" + }, + new + { + FilterListId = 2373L, + Id = 2538L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAdoptablesList.txt" + }, + new + { + FilterListId = 2373L, + Id = 2539L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAdoptablesList.txt" + }, + new + { + FilterListId = 2374L, + Id = 2540L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianCashbackAssistantReborn.txt" + }, + new + { + FilterListId = 2374L, + Id = 2541L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianCashbackAssistantReborn.txt" + }, + new + { + FilterListId = 2375L, + Id = 2542L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiNonNewsList.txt" + }, + new + { + FilterListId = 2375L, + Id = 2543L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiNonNewsList.txt" + }, + new + { + FilterListId = 2376L, + Id = 2544L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiBadCapitalismList.txt" + }, + new + { + FilterListId = 2376L, + Id = 2545L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiBadCapitalismList.txt" + }, + new + { + FilterListId = 2377L, + Id = 2546L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/dandelion_sprouts_nordic_filters+easylist.txt" + }, + new + { + FilterListId = 2378L, + Id = 2547L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/dandelion_sprouts_nordic_filters+easylist.tpl" + }, + new + { + FilterListId = 2379L, + Id = 2548L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://doh1.blahdns.com/dns-query" + }, + new + { + FilterListId = 2379L, + Id = 2549L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "tls://95.216.212.177:853/" + }, + new + { + FilterListId = 2379L, + Id = 2550L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "95.216.212.177" + }, + new + { + FilterListId = 2380L, + Id = 2551L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/googlehosts/hosts/master/hosts-files/surge.conf" + }, + new + { + FilterListId = 2380L, + Id = 2552L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://git.qvq.network/googlehosts/hosts/raw/master/hosts-files/surge.conf" + }, + new + { + FilterListId = 2381L, + Id = 2553L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/googlehosts/hosts/master/hosts-files/dnsmasq.conf" + }, + new + { + FilterListId = 2381L, + Id = 2554L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://git.qvq.network/googlehosts/hosts/raw/master/hosts-files/dnsmasq.conf" + }, + new + { + FilterListId = 2382L, + Id = 2555L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/abp_light.txt" + }, + new + { + FilterListId = 2382L, + Id = 2556L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/abp_light.txt" + }, + new + { + FilterListId = 2383L, + Id = 2557L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dblw.txt" + }, + new + { + FilterListId = 2383L, + Id = 2558L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dblw.txt" + }, + new + { + FilterListId = 2384L, + Id = 2559L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dblw_light.txt" + }, + new + { + FilterListId = 2384L, + Id = 2560L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dblw_light.txt" + }, + new + { + FilterListId = 2385L, + Id = 2561L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dnsmasq.txt" + }, + new + { + FilterListId = 2385L, + Id = 2562L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dnsmasq.txt" + }, + new + { + FilterListId = 2386L, + Id = 2563L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dnsmasq_light.txt" + }, + new + { + FilterListId = 2386L, + Id = 2564L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dnsmasq_light.txt" + }, + new + { + FilterListId = 2387L, + Id = 2565L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ryanbr/fanboy-adblock/master/fanboy-anticomments.txt" + }, + new + { + FilterListId = 2388L, + Id = 2566L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://blacklists.ntop.org/blacklist-hostnames.txt" + }, + new + { + FilterListId = 2389L, + Id = 2567L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://blacklists.ntop.org/adblocker-hostnames.txt" + }, + new + { + FilterListId = 2392L, + Id = 2570L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/hufilter/hufilter/master/hufilter-dns.txt" + }, + new + { + FilterListId = 2393L, + Id = 2571L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://security.cloudflare-dns.com/dns-query" + }, + new + { + FilterListId = 2393L, + Id = 2572L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "1.1.1.2" + }, + new + { + FilterListId = 2393L, + Id = 2573L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "1.0.0.2" + }, + new + { + FilterListId = 2394L, + Id = 2574L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://family.cloudflare-dns.com/dns-query" + }, + new + { + FilterListId = 2394L, + Id = 2575L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "1.1.1.3" + }, + new + { + FilterListId = 2394L, + Id = 2576L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "1.0.0.3" + }, + new + { + FilterListId = 2395L, + Id = 2577L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "156.154.70.2" + }, + new + { + FilterListId = 2395L, + Id = 2578L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "156.154.71.2" + }, + new + { + FilterListId = 2395L, + Id = 2579L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "2610:a1:1018::2" + }, + new + { + FilterListId = 198L, + Id = 2580L, + Primariness = (short)4, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ABPindo/indonesianadblockrules/raw/master/subscriptions/abpindo.txt" + }, + new + { + FilterListId = 2396L, + Id = 2581L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/banks.txt" + }, + new + { + FilterListId = 2397L, + Id = 2582L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/sensitive.txt" + }, + new + { + FilterListId = 2398L, + Id = 2583L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/issues.txt" + }, + new + { + FilterListId = 2399L, + Id = 2584L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/windows.txt" + }, + new + { + FilterListId = 2400L, + Id = 2585L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/mac.txt" + }, + new + { + FilterListId = 2401L, + Id = 2586L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/android.txt" + }, + new + { + FilterListId = 2402L, + Id = 2587L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/firefox.txt" + }, + new + { + FilterListId = 2403L, + Id = 2588L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersDomainsAllowlist.txt" + }, + new + { + FilterListId = 2403L, + Id = 2589L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersDomainsAllowlist.txt" + }, + new + { + FilterListId = 2404L, + Id = 2590L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiPorkMeatOnRestaurantMenusList.txt" + }, + new + { + FilterListId = 2404L, + Id = 2591L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiPorkMeatOnRestaurantMenusList.txt" + }, + new + { + FilterListId = 2406L, + Id = 2592L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Special security lists/DummyList.txt" + }, + new + { + FilterListId = 2406L, + Id = 2593L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Special security lists/DummyList.txt" + }, + new + { + FilterListId = 2405L, + Id = 2594L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/Swedish-List-for-Adblock-Plus/main/Swedish List for Adblock Plus.txt" + }, + new + { + FilterListId = 214L, + Id = 2595L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/antiadblockfilters.txt" + }, + new + { + FilterListId = 566L, + Id = 2596L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/abp-filters-anti-cv.txt" + }, + new + { + FilterListId = 2407L, + Id = 2597L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hg.adblockplus.org/antiadblockfilters/raw-file/tip/antiadblockfilters/antiadblock_english.txt" + }, + new + { + FilterListId = 2408L, + Id = 2598L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hg.adblockplus.org/antiadblockfilters/raw-file/tip/antiadblockfilters/antiadblock_french.txt" + }, + new + { + FilterListId = 2409L, + Id = 2599L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hg.adblockplus.org/antiadblockfilters/raw-file/tip/antiadblockfilters/antiadblock_russian.txt" + }, + new + { + FilterListId = 2410L, + Id = 2600L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiSnowMarketingList.txt" + }, + new + { + FilterListId = 2411L, + Id = 2601L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/pexcn/daily/gh-pages/adlist/adlist.txt" + }, + new + { + FilterListId = 2412L, + Id = 2602L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/pexcn/daily/gh-pages/adblock/adblock.conf" + }, + new + { + FilterListId = 2413L, + Id = 2603L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/pexcn/daily/gh-pages/shadowrocket/gfwlist.conf" + }, + new + { + FilterListId = 2414L, + Id = 2604L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/pexcn/daily/gh-pages/shadowrocket/whitelist.conf" + }, + new + { + FilterListId = 2415L, + Id = 2605L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/pexcn/daily/gh-pages/trackerlist/trackerlist.txt" + }, + new + { + FilterListId = 2416L, + Id = 2606L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/pexcn/daily/gh-pages/ublacklist/ublacklist.txt" + }, + new + { + FilterListId = 2417L, + Id = 2607L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/pexcn/daily/gh-pages/chnroute/chnroute.txt" + }, + new + { + FilterListId = 2418L, + Id = 2608L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/pexcn/daily/gh-pages/chnroute/chnroute-v6.txt" + }, + new + { + FilterListId = 2419L, + Id = 2609L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-agh-online.txt" + }, + new + { + FilterListId = 2420L, + Id = 2610L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-ag-online.txt" + }, + new + { + FilterListId = 2421L, + Id = 2611L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-vivaldi-online.txt" + }, + new + { + FilterListId = 2422L, + Id = 2612L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/phishing-filter-agh.txt" + }, + new + { + FilterListId = 2423L, + Id = 2613L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/phishing-filter-ag.txt" + }, + new + { + FilterListId = 2424L, + Id = 2614L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/phishing-filter-vivaldi.txt" + }, + new + { + FilterListId = 1985L, + Id = 2615L, + Primariness = (short)4, + SegmentNumber = (short)0, + Url = "176.103.130.131" + }, + new + { + FilterListId = 1985L, + Id = 2616L, + Primariness = (short)5, + SegmentNumber = (short)0, + Url = "2a00:5a60::ad1:0ff" + }, + new + { + FilterListId = 1985L, + Id = 2617L, + Primariness = (short)6, + SegmentNumber = (short)0, + Url = "2a00:5a60::ad2:0ff" + }, + new + { + FilterListId = 1986L, + Id = 2618L, + Primariness = (short)4, + SegmentNumber = (short)0, + Url = "176.103.130.134" + }, + new + { + FilterListId = 1986L, + Id = 2619L, + Primariness = (short)5, + SegmentNumber = (short)0, + Url = "2a00:5a60::bad1:0ff" + }, + new + { + FilterListId = 1986L, + Id = 2620L, + Primariness = (short)6, + SegmentNumber = (short)0, + Url = "2a00:5a60::bad2:0ff" + }, + new + { + FilterListId = 2425L, + Id = 2621L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AdGuard Home Compilation List/AdGuardHomeCompilationList-Notifications.txt" + }, + new + { + FilterListId = 2425L, + Id = 2622L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/AdGuard Home Compilation List/AdGuardHomeCompilationList-Notifications.txt" + }, + new + { + FilterListId = 2427L, + Id = 2623L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/AdGuardSDNSFilter/master/Filters/exclusions.txt" + }, + new + { + FilterListId = 2428L, + Id = 2624L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiGachaAndKnockoffGamesList.txt" + }, + new + { + FilterListId = 2428L, + Id = 2625L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/AntiGachaAndKnockoffGamesList.txt" + }, + new + { + FilterListId = 2426L, + Id = 2626L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/rimu/no-qanon/master/etc_hosts.txt" + }, + new + { + FilterListId = 2429L, + Id = 2627L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/rimu/no-qanon/master/etc_hosts.txt.ipv6" + }, + new + { + FilterListId = 2430L, + Id = 2628L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.team-cymru.org/Services/Bogons/bogon-bn-agg.txt" + }, + new + { + FilterListId = 2431L, + Id = 2629L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.team-cymru.org/Services/Bogons/fullbogons-ipv4.txt" + }, + new + { + FilterListId = 2432L, + Id = 2630L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.team-cymru.org/Services/Bogons/fullbogons-ipv6.txt" + }, + new + { + FilterListId = 2433L, + Id = 2631L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFilters-uMatrixSupplement.txt" + }, + new + { + FilterListId = 2433L, + Id = 2632L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/NorwegianExperimentalList alternate versions/NordicFilters-uMatrixSupplement.txt" + }, + new + { + FilterListId = 2434L, + Id = 2633L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/LegitimateURLShortener.txt" + }, + new + { + FilterListId = 2434L, + Id = 2634L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/LegitimateURLShortener.txt" + }, + new + { + FilterListId = 2435L, + Id = 2635L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/SerboCroatianList.txt" + }, + new + { + FilterListId = 2435L, + Id = 2636L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/SerboCroatianList.txt" + }, + new + { + FilterListId = 2436L, + Id = 2637L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/AntiWeebBoobGamesList.txt" + }, + new + { + FilterListId = 2436L, + Id = 2638L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/Sensitive lists/AntiWeebBoobGamesList.txt" + }, + new + { + FilterListId = 2437L, + Id = 2639L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-online.tpl" + }, + new + { + FilterListId = 2438L, + Id = 2640L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/phishing-filter.tpl" + }, + new + { + FilterListId = 2439L, + Id = 2641L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://github.com/arapurayil/aBL/raw/master/lists/general/filter_list.txt" + }, + new + { + FilterListId = 2440L, + Id = 2642L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/arapurayil/aBL/master/lists/social/filter_list.txt" + }, + new + { + FilterListId = 2441L, + Id = 2643L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/arapurayil/aBL/master/lists/porn_gambling_snuff/filter_list.txt" + }, + new + { + FilterListId = 2442L, + Id = 2644L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/arapurayil/aBL/master/lists/regional/filter_list.txt" + }, + new + { + FilterListId = 2443L, + Id = 2645L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Special security lists/AntiFaviconList.txt" + }, + new + { + FilterListId = 2443L, + Id = 2646L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/Special security lists/AntiFaviconList.txt" + }, + new + { + FilterListId = 2444L, + Id = 2647L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareDomains.txt" + }, + new + { + FilterListId = 2444L, + Id = 2648L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/Alternate versions Anti-Malware List/AntiMalwareDomains.txt" + }, + new + { + FilterListId = 2445L, + Id = 2649L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/acnapyx/paywall-remover/master/paywall-remover-list.txt" + }, + new + { + FilterListId = 2446L, + Id = 2650L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://dns.hostux.net/ads" + }, + new + { + FilterListId = 2447L, + Id = 2651L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/arman68/noappleads/main/adguard-blocklist.txt" + }, + new + { + FilterListId = 2448L, + Id = 2652L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/vavavr00m/lists/main/hosts/googletranslate" + }, + new + { + FilterListId = 2449L, + Id = 2653L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/vavavr00m/lists/main/hosts/phorm" + }, + new + { + FilterListId = 2450L, + Id = 2654L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jmhenrique/adblock/master/etc/adblock_hosts" + }, + new + { + FilterListId = 2452L, + Id = 2656L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jbunner/adblock/master/a-roblox.txt" + }, + new + { + FilterListId = 2453L, + Id = 2657L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jbunner/adblock/master/a-msteams.txt" + }, + new + { + FilterListId = 2454L, + Id = 2658L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jbunner/adblock/master/a-scratch.txt" + }, + new + { + FilterListId = 2455L, + Id = 2659L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://dandelionsprout.asuscomm.com:2501/dns-query" + }, + new + { + FilterListId = 2455L, + Id = 2660L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "tls://dandelionsprout.asuscomm.com:853/" + }, + new + { + FilterListId = 2456L, + Id = 2661L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/pafnuty/onlineConsultantBlocker/master/online-consultant.txt" + }, + new + { + FilterListId = 2457L, + Id = 2662L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/catsxp/adblock-lists/master/catsxp-unbreak.txt" + }, + new + { + FilterListId = 2458L, + Id = 2663L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/RedDragonWebDesign/block-everything/master/block-everything.txt" + }, + new + { + FilterListId = 2459L, + Id = 2664L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/cname-trackers/master/combined_disguised_trackers.txt" + }, + new + { + FilterListId = 2460L, + Id = 2665L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/cname-trackers/master/combined_disguised_trackers_justdomains.txt" + }, + new + { + FilterListId = 2461L, + Id = 2666L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/cname-trackers/master/combined_original_trackers.txt" + }, + new + { + FilterListId = 2462L, + Id = 2667L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/WhyIsEvery4thYearAlwaysBad/anti-cancer-filter-lists/master/anti_trash_youtube.txt" + }, + new + { + FilterListId = 2463L, + Id = 2668L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/WhyIsEvery4thYearAlwaysBad/anti-cancer-filter-lists/master/anti_trash_new_reddit.txt" + }, + new + { + FilterListId = 2464L, + Id = 2669L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/WhyIsEvery4thYearAlwaysBad/anti-cancer-filter-lists/master/anti_trash_old_reddit.txt" + }, + new + { + FilterListId = 2465L, + Id = 2670L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/WhyIsEvery4thYearAlwaysBad/anti-cancer-filter-lists/master/anti_scam_internet.txt" + }, + new + { + FilterListId = 2466L, + Id = 2671L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filter.futa.gg/filter.txt" + }, + new + { + FilterListId = 2466L, + Id = 2672L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://filter.futa.app/filter.txt" + }, + new + { + FilterListId = 2467L, + Id = 2673L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filter.futa.gg/hosts.txt" + }, + new + { + FilterListId = 2467L, + Id = 2674L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://filter.futa.app/hosts.txt" + }, + new + { + FilterListId = 2468L, + Id = 2675L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filter.futa.gg/nofarm_hosts.txt" + }, + new + { + FilterListId = 2468L, + Id = 2676L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://filter.futa.app/nofarm_hosts.txt" + }, + new + { + FilterListId = 2469L, + Id = 2677L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FutaGuard/FutaFilter/master/removeparam.txt" + }, + new + { + FilterListId = 2470L, + Id = 2678L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/twcau/AdblockRules/master/MurdochList" + }, + new + { + FilterListId = 2471L, + Id = 2679L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/BPower0036/AdBlockFilters/main/easydutch.txt" + }, + new + { + FilterListId = 2472L, + Id = 2680L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-rpz-online.conf" + }, + new + { + FilterListId = 2473L, + Id = 2681L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/phishing-filter-rpz.conf" + }, + new + { + FilterListId = 2096L, + Id = 2683L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/blogroll.txt" + }, + new + { + FilterListId = 2475L, + Id = 2684L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/hirorpt/filters/main/fix.txt" + }, + new + { + FilterListId = 2476L, + Id = 2685L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/pup-filter.txt" + }, + new + { + FilterListId = 2477L, + Id = 2686L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/pup-filter-domains.txt" + }, + new + { + FilterListId = 2478L, + Id = 2687L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/pup-filter-dnsmasq.conf" + }, + new + { + FilterListId = 2479L, + Id = 2688L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/pup-filter-hosts.txt" + }, + new + { + FilterListId = 2480L, + Id = 2689L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/pup-filter-bind.conf" + }, + new + { + FilterListId = 2481L, + Id = 2690L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/pup-filter-unbound.conf" + }, + new + { + FilterListId = 2482L, + Id = 2691L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/pup-filter-agh.txt" + }, + new + { + FilterListId = 2483L, + Id = 2692L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/pup-filter-ag.txt" + }, + new + { + FilterListId = 2484L, + Id = 2693L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/pup-filter-vivaldi.txt" + }, + new + { + FilterListId = 2485L, + Id = 2694L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/pup-filter.tpl" + }, + new + { + FilterListId = 2486L, + Id = 2695L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/pup-filter-rpz.conf" + }, + new + { + FilterListId = 2487L, + Id = 2696L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/pup-filter-snort2.rules" + }, + new + { + FilterListId = 2488L, + Id = 2697L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/pup-filter-snort3.rules" + }, + new + { + FilterListId = 2489L, + Id = 2698L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/pup-filter-suricata.conf" + }, + new + { + FilterListId = 2490L, + Id = 2699L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-snort2-online.rules" + }, + new + { + FilterListId = 2491L, + Id = 2700L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-snort3-online.rules" + }, + new + { + FilterListId = 2492L, + Id = 2701L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-suricata-online.rules" + }, + new + { + FilterListId = 2493L, + Id = 2702L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/phishing-filter-snort2.rules" + }, + new + { + FilterListId = 2494L, + Id = 2703L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/phishing-filter-snort3.rules" + }, + new + { + FilterListId = 2495L, + Id = 2704L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/phishing-filter-suricata.rules" + }, + new + { + FilterListId = 2496L, + Id = 2705L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/troysjanda/MyBlockLists/master/UBOXPI" + }, + new + { + FilterListId = 2097L, + Id = 2706L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-annoyances-plus.txt" + }, + new + { + FilterListId = 2098L, + Id = 2707L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/adguard/anti-antiadb.txt" + }, + new + { + FilterListId = 2497L, + Id = 2708L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/windows/filters/17.txt" + }, + new + { + FilterListId = 2498L, + Id = 2709L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.joinhoney.com/whitelist/honey-smart-shopping.txt" + }, + new + { + FilterListId = 2499L, + Id = 2710L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/furkun/Anti-IP-Grabber-Hosts/main/hosts" + }, + new + { + FilterListId = 2500L, + Id = 2711L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Cinnamon-Unltd/Anti-Kpop-Spammers-Filterlist-for-Twitter/main/AntiKPopSpammersFilterlistTwitter.txt" + }, + new + { + FilterListId = 2501L, + Id = 2712L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/clarketm/proxy-list/master/proxy-list-raw.txt" + }, + new + { + FilterListId = 2502L, + Id = 2713L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/no-cmyk/Search-Engine-Spam-Domains-Blocklist/master/blocklist.txt" + }, + new + { + FilterListId = 2503L, + Id = 2714L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/SecOps-Institute/Tor-IP-Addresses/master/tor-nodes.lst" + }, + new + { + FilterListId = 2504L, + Id = 2715L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/SecOps-Institute/Tor-IP-Addresses/master/tor-exit-nodes.lst" + }, + new + { + FilterListId = 2505L, + Id = 2716L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/SecOps-Institute/SpamhausIPLists/master/drop.txt" + }, + new + { + FilterListId = 2506L, + Id = 2717L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/SecOps-Institute/SpamhausIPLists/master/drop_ipv6.txt" + }, + new + { + FilterListId = 2507L, + Id = 2718L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/SecOps-Institute/SpamhausIPLists/master/edrop.txt" + }, + new + { + FilterListId = 2508L, + Id = 2719L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://ipverse.net/ipblocks/data/countries/nl.zone" + }, + new + { + FilterListId = 2509L, + Id = 2720L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://ipverse.net/ipblocks/data/countries/nl-ipv6.zone" + }, + new + { + FilterListId = 2510L, + Id = 2721L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/autinerd/anti-axelspringer-hosts/master/ios-adguard.txt" + }, + new + { + FilterListId = 2511L, + Id = 2722L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/autinerd/anti-axelspringer-hosts/master/axelspringer-hosts" + }, + new + { + FilterListId = 2512L, + Id = 2723L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/LegitimateURLShortener-AffiliateTagAllowlist.txt" + }, + new + { + FilterListId = 2512L, + Id = 2724L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/LegitimateURLShortener-AffiliateTagAllowlist.txt" + }, + new + { + FilterListId = 2513L, + Id = 2725L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DRSDavidSoft/additional-hosts/master/domains/blacklist/fake-domains.txt" + }, + new + { + FilterListId = 2514L, + Id = 2726L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-dnscrypt-blocked-names-online.txt" + }, + new + { + FilterListId = 2515L, + Id = 2727L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-dnscrypt-blocked-ips-online.txt" + }, + new + { + FilterListId = 2516L, + Id = 2728L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/phishing-filter-dnscrypt-blocked-names.txt" + }, + new + { + FilterListId = 2517L, + Id = 2729L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/phishing-filter-dnscrypt-blocked-ips.txt" + }, + new + { + FilterListId = 2518L, + Id = 2730L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/pup-filter-dnscrypt-blocked-names.txt" + }, + new + { + FilterListId = 2519L, + Id = 2731L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/JohnyP36/Personal-List/main/Personal List (uBo).txt" + }, + new + { + FilterListId = 2471L, + Id = 2732L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/BPower0036/AdBlockFilters/-/raw/main/easydutch.txt" + }, + new + { + FilterListId = 2520L, + Id = 2733L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/BPower0036/AdBlockFilters/main/dynamic rules" + }, + new + { + FilterListId = 2521L, + Id = 2734L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/BPower0036/AdBlockFilters/main/my filters" + }, + new + { + FilterListId = 2522L, + Id = 2735L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://git.bubblev.org/bubblev/bubble-filter-lists/raw/branch/master/ads_and_trackers1.txt" + }, + new + { + FilterListId = 2523L, + Id = 2736L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://git.bubblev.org/bubblev/bubble-filter-lists/raw/branch/master/sites_us_news.txt" + }, + new + { + FilterListId = 2524L, + Id = 2737L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jamiemansfield/minecraft-hosts/master/lists/tracking.txt" + }, + new + { + FilterListId = 2525L, + Id = 2738L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://orca.pet/notonmyshift/hosts.txt" + }, + new + { + FilterListId = 2526L, + Id = 2739L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://orca.pet/notonmyshift/abp.txt" + }, + new + { + FilterListId = 2527L, + Id = 2740L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gist.githubusercontent.com/opus-x/3e673a9d5db2a214df05929a4eee6a57/raw" + }, + new + { + FilterListId = 2528L, + Id = 2741L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/dibdot/DoH-IP-blocklists/master/doh-domains.txt" + }, + new + { + FilterListId = 2529L, + Id = 2742L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AmnestyTech/investigations/master/2021-07-18_nso/domains.txt" + }, + new + { + FilterListId = 2530L, + Id = 2743L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://wp.owenthe.dev/fortnite.txt" + }, + new + { + FilterListId = 2531L, + Id = 2744L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://wp.owenthe.dev/redshell.txt" + }, + new + { + FilterListId = 2532L, + Id = 2745L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/allendema/noplaylist/main/NoPlayList.txt" + }, + new + { + FilterListId = 2533L, + Id = 2746L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiOwlHouseList.txt" + }, + new + { + FilterListId = 2533L, + Id = 2747L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/AntiOwlHouseList.txt" + }, + new + { + FilterListId = 2534L, + Id = 2748L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/Dandelion Sprout's and other adblocker lists' IPs.ipset" + }, + new + { + FilterListId = 2534L, + Id = 2749L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/Alternate versions Anti-Malware List/Dandelion Sprout's and other adblocker lists' IPs.ipset" + }, + new + { + FilterListId = 301L, + Id = 2750L, + Primariness = (short)4, + SegmentNumber = (short)0, + Url = "https://downloads.vivaldi.com/easylist/easylist-current.txt" + }, + new + { + FilterListId = 2535L, + Id = 2751L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/hadig/Focus-for-Youtube/master/focus4yt.txt" + }, + new + { + FilterListId = 2537L, + Id = 2752L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/iam-py-test/my_filters_001/main/antimalware.txt" + }, + new + { + FilterListId = 2538L, + Id = 2753L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/iam-py-test/my_filters_001/main/Alternative list formats/antimalware_hosts.txt" + }, + new + { + FilterListId = 2536L, + Id = 2754L, + Primariness = (short)0, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Arctic-Circle-System/Sketchy-Extension-and-Search-List/main/list.txt" + }, + new + { + FilterListId = 2434L, + Id = 2755L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://iam-py-test.github.io/mirrors/LegitimateURLShortener.txt" + }, + new + { + FilterListId = 2537L, + Id = 2756L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://iam-py-test.github.io/my_filters_001/antimalware.txt" + }, + new + { + FilterListId = 2538L, + Id = 2757L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://iam-py-test.github.io/my_filters_001/Alternative list formats/antimalware_hosts.txt" + }, + new + { + FilterListId = 2539L, + Id = 2758L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://ammnt.app/filter.txt" + }, + new + { + FilterListId = 2540L, + Id = 2759L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AmmoniteFilter/TrilobiteFilter/main/filter.txt" + }, + new + { + FilterListId = 2541L, + Id = 2760L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/iam-py-test/my_filters_001/main/Alternative list formats/antimalware_domains.txt" + }, + new + { + FilterListId = 2541L, + Id = 2761L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://iam-py-test.github.io/my_filters_001/Alternative list formats/antimalware_domains.txt" + }, + new + { + FilterListId = 2542L, + Id = 2762L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/AdguardFilters/master/AnnoyancesFilter/sections/subscriptions.txt" + }, + new + { + FilterListId = 2543L, + Id = 2763L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://pfblockerlists.smallbusinesstech.net/hackerlist.txt" + }, + new + { + FilterListId = 2544L, + Id = 2764L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://pfblockerlists.smallbusinesstech.net/spamlist.txt" + }, + new + { + FilterListId = 2545L, + Id = 2765L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nextdns/metadata/master/privacy/affiliate-tracking-domains" + }, + new + { + FilterListId = 2546L, + Id = 2766L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deep-bhatt/huawei-block-list/master/huawei-block-host.txt" + }, + new + { + FilterListId = 2547L, + Id = 2767L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/wesbos/burner-email-providers/master/emails.txt" + }, + new + { + FilterListId = 2548L, + Id = 2768L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://kriskintel.com/feeds/ktip_ransomware_feeds.txt" + }, + new + { + FilterListId = 2549L, + Id = 2769L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/brijrajparmar27/host-sources/master/Porn/hosts" + }, + new + { + FilterListId = 2550L, + Id = 2770L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Zelo72/adguard/main/whitelist.referral.adguard" + }, + new + { + FilterListId = 2551L, + Id = 2771L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://github.com/stamparm/maltrail/blob/master/trails/static/suspicious/i2p.txt" + }, + new + { + FilterListId = 2552L, + Id = 2772L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://github.com/stamparm/maltrail/blob/master/trails/static/suspicious/ipinfo.txt" + }, + new + { + FilterListId = 2553L, + Id = 2773L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://github.com/stamparm/maltrail/blob/master/trails/static/suspicious/parking_site.txt" + }, + new + { + FilterListId = 2554L, + Id = 2774L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/DeadServerGamePingList.txt" + }, + new + { + FilterListId = 2554L, + Id = 2775L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/DeadServerGamePingList.txt" + }, + new + { + FilterListId = 2555L, + Id = 2776L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/TabloidRemover-MastodonCategoryForImports.csv" + }, + new + { + FilterListId = 2555L, + Id = 2777L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/Sensitive lists/TabloidRemover-MastodonCategoryForImports.csv" + }, + new + { + FilterListId = 2556L, + Id = 2778L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/ClearURLs for uBo/clear_urls_uboified.txt" + }, + new + { + FilterListId = 2556L, + Id = 2779L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/ClearURLs for uBo/clear_urls_uboified.txt" + }, + new + { + FilterListId = 2557L, + Id = 2780L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/scafroglia93/blocklists/master/blocklists-malware-traffic.txt" + }, + new + { + FilterListId = 2558L, + Id = 2781L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Knuschberkeks/Knuschberblock/main/Knuschberblock.txt" + }, + new + { + FilterListId = 2559L, + Id = 2782L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/huzunluartemis/TurkishAdblockList/main/src/HostsList.txt" + }, + new + { + FilterListId = 2560L, + Id = 2783L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/huzunluartemis/TurkishAdblockList/main/src/ElementalList.txt" + }, + new + { + FilterListId = 2561L, + Id = 2784L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/huzunluartemis/TurkishAdblockList/main/src/BadIpList.txt" + }, + new + { + FilterListId = 2562L, + Id = 2785L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/furkun/AndroidSecurityHosts/main/hosts" + }, + new + { + FilterListId = 2563L, + Id = 2786L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/furkun/AndroidSecurityHosts/main/domains.txt" + }, + new + { + FilterListId = 2556L, + Id = 2787L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://codeberg.org/rusty-snake/firefox-config/src/branch/main/assets/uBlockOrigin:queryprune.txt" + }, + new + { + FilterListId = 2564L, + Id = 2788L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/PCCassets/main/plCDB.txt" + }, + new + { + FilterListId = 2564L, + Id = 2789L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.jsdelivr.net/gh/FiltersHeroes/PCCassets@main/plCDB.txt" + }, + new + { + FilterListId = 2564L, + Id = 2790L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://combinatronics.io/FiltersHeroes/PCCassets/main/plCDB.txt" + }, + new + { + FilterListId = 2564L, + Id = 2791L, + Primariness = (short)4, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gh/FiltersHeroes/PCCassets/main/plCDB.txt" + }, + new + { + FilterListId = 2564L, + Id = 2792L, + Primariness = (short)5, + SegmentNumber = (short)0, + Url = "https://filtersheroes.gitlab.io/AssetsMirror/plCDB.txt" + }, + new + { + FilterListId = 2565L, + Id = 2793L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/PCCassets/main/euCDB.txt" + }, + new + { + FilterListId = 2565L, + Id = 2794L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.jsdelivr.net/gh/FiltersHeroes/PCCassets@main/euCDB.txt" + }, + new + { + FilterListId = 2565L, + Id = 2795L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://combinatronics.io/FiltersHeroes/PCCassets/main/euCDB.txt" + }, + new + { + FilterListId = 2565L, + Id = 2796L, + Primariness = (short)4, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gh/FiltersHeroes/PCCassets/main/euCDB.txt" + }, + new + { + FilterListId = 2565L, + Id = 2797L, + Primariness = (short)5, + SegmentNumber = (short)0, + Url = "https://filtersheroes.gitlab.io/AssetsMirror/euCDB.txt" + }, + new + { + FilterListId = 2471L, + Id = 2798L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://combinatronics.io/BPower0036/AdBlockFilters/main/easydutch.txt" + }, + new + { + FilterListId = 2471L, + Id = 2799L, + Primariness = (short)4, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gh/BPower0036/AdBlockFilters/main/easydutch.txt" + }, + new + { + FilterListId = 2471L, + Id = 2800L, + Primariness = (short)5, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gl/BPower0036/AdBlockFilters/main/easydutch.txt" + }, + new + { + FilterListId = 2471L, + Id = 2801L, + Primariness = (short)6, + SegmentNumber = (short)0, + Url = "https://cdn.jsdelivr.net/gh/BPower0036/AdBlockFilters@main/easydutch.txt" + }, + new + { + FilterListId = 2520L, + Id = 2802L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/BPower0036/AdBlockFilters/-/raw/main/dynamic rules" + }, + new + { + FilterListId = 2520L, + Id = 2803L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://combinatronics.io/BPower0036/AdBlockfilters/main/dynamic rules" + }, + new + { + FilterListId = 2520L, + Id = 2804L, + Primariness = (short)4, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gh/BPower0036/AdBlockfilters/main/dynamic rules" + }, + new + { + FilterListId = 2520L, + Id = 2805L, + Primariness = (short)5, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gl/BPower0036/AdBlockFilters/main/dynamic rules" + }, + new + { + FilterListId = 2520L, + Id = 2806L, + Primariness = (short)6, + SegmentNumber = (short)0, + Url = "https://cdn.jsdelivr.net/gh/BPower0036/AdBlockfilters@main/dynamic rules" + }, + new + { + FilterListId = 2521L, + Id = 2807L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/BPower0036/AdBlockFilters/-/raw/main/my filters" + }, + new + { + FilterListId = 2521L, + Id = 2808L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://combinatronics.io/BPower0036/AdBlockfilters/main/my filters" + }, + new + { + FilterListId = 2521L, + Id = 2809L, + Primariness = (short)4, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gh/BPower0036/AdBlockfilters/main/my filters" + }, + new + { + FilterListId = 2521L, + Id = 2810L, + Primariness = (short)5, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gl/BPower0036/AdBlockFilters/main/my filters" + }, + new + { + FilterListId = 2521L, + Id = 2811L, + Primariness = (short)6, + SegmentNumber = (short)0, + Url = "https://cdn.jsdelivr.net/gh/BPower0036/AdBlockfilters@main/my filters" + }); + }); + b.Navigation("License"); + + b.Navigation("ViewUrls"); }); modelBuilder.Entity("FilterLists.Directory.Infrastructure.Persistence.Queries.Entities.FilterListLanguage", b => @@ -87584,18 +87592,6 @@ protected override void BuildTargetModel(ModelBuilder modelBuilder) b.Navigation("Tag"); }); - modelBuilder.Entity("FilterLists.Directory.Infrastructure.Persistence.Queries.Entities.FilterListViewUrl", b => - { - b.HasOne("FilterLists.Directory.Infrastructure.Persistence.Queries.Entities.FilterList", "FilterList") - .WithMany("ViewUrls") - .HasForeignKey("FilterListId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired() - .HasConstraintName("fk_filter_list_view_urls_filter_lists_filter_list_id"); - - b.Navigation("FilterList"); - }); - modelBuilder.Entity("FilterLists.Directory.Infrastructure.Persistence.Queries.Entities.Fork", b => { b.HasOne("FilterLists.Directory.Infrastructure.Persistence.Queries.Entities.FilterList", "ForkFilterList") @@ -87682,8 +87678,6 @@ protected override void BuildTargetModel(ModelBuilder modelBuilder) b.Navigation("IncludesFilterLists"); b.Navigation("UpstreamFilterLists"); - - b.Navigation("ViewUrls"); }); modelBuilder.Entity("FilterLists.Directory.Infrastructure.Persistence.Queries.Entities.Language", b => diff --git a/services/Directory/FilterLists.Directory.Infrastructure.Migrations/Migrations/20211205104022_SeedData.cs b/services/Directory/FilterLists.Directory.Infrastructure.Migrations/Migrations/20211205154639_SeedData.cs similarity index 88% rename from services/Directory/FilterLists.Directory.Infrastructure.Migrations/Migrations/20211205104022_SeedData.cs rename to services/Directory/FilterLists.Directory.Infrastructure.Migrations/Migrations/20211205154639_SeedData.cs index db6da7391..23c4ace33 100644 --- a/services/Directory/FilterLists.Directory.Infrastructure.Migrations/Migrations/20211205104022_SeedData.cs +++ b/services/Directory/FilterLists.Directory.Infrastructure.Migrations/Migrations/20211205154639_SeedData.cs @@ -10905,2718 +10905,2718 @@ protected override void Up(MigrationBuilder migrationBuilder) migrationBuilder.InsertData( table: "filter_list_view_urls", - columns: new[] { "id", "filter_list_id", "primariness", "url" }, + columns: new[] { "filter_list_id", "id", "primariness", "url" }, values: new object[,] { { 1L, 1L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-mob.txt" }, { 2L, 2L, (short)1, "https://raw.githubusercontent.com/B-Con/mute/master/mute.txt" }, { 3L, 3L, (short)1, "https://adblock.mahakala.is/" }, { 4L, 4L, (short)1, "https://raw.githubusercontent.com/michaeltrimm/hosts-blocking/master/_hosts.txt" }, - { 5L, 4L, (short)2, "https://gitcdn.xyz/repo/michaeltrimm/hosts-blocking/master/_hosts.txt" }, - { 6L, 4L, (short)3, "https://rawcdn.githack.com/michaeltrimm/hosts-blocking/master/_hosts.txt" }, - { 7L, 5L, (short)1, "https://hg.adblockplus.org/facebookfilters/file/tip/message_seen_remover_for_facebook.txt" }, - { 8L, 6L, (short)1, "https://raw.githubusercontent.com/mayve/private-adblock-filters/master/Adblock_List.txt" }, - { 9L, 6L, (short)2, "https://gitcdn.xyz/repo/mayve/private-adblock-filters/master/Adblock_List.txt" }, - { 10L, 6L, (short)3, "https://rawcdn.githack.com/mayve/private-adblock-filters/master/Adblock_List.txt" }, - { 11L, 10L, (short)1, "https://www.malwaredomainlist.com/hostslist/hosts.txt" }, - { 12L, 11L, (short)1, "https://easylist-downloads.adblockplus.org/liste_fr+easylist.txt" }, - { 13L, 12L, (short)1, "https://easylist-downloads.adblockplus.org/liste_fr.txt" }, - { 14L, 13L, (short)1, "https://easylist-downloads.adblockplus.org/liste_ar+liste_fr+easylist.txt" }, - { 15L, 14L, (short)1, "https://easylist-downloads.adblockplus.org/Liste_AR.txt" }, + { 4L, 5L, (short)2, "https://gitcdn.xyz/repo/michaeltrimm/hosts-blocking/master/_hosts.txt" }, + { 4L, 6L, (short)3, "https://rawcdn.githack.com/michaeltrimm/hosts-blocking/master/_hosts.txt" }, + { 5L, 7L, (short)1, "https://hg.adblockplus.org/facebookfilters/file/tip/message_seen_remover_for_facebook.txt" }, + { 6L, 8L, (short)1, "https://raw.githubusercontent.com/mayve/private-adblock-filters/master/Adblock_List.txt" }, + { 6L, 9L, (short)2, "https://gitcdn.xyz/repo/mayve/private-adblock-filters/master/Adblock_List.txt" }, + { 6L, 10L, (short)3, "https://rawcdn.githack.com/mayve/private-adblock-filters/master/Adblock_List.txt" }, + { 10L, 11L, (short)1, "https://www.malwaredomainlist.com/hostslist/hosts.txt" }, + { 11L, 12L, (short)1, "https://easylist-downloads.adblockplus.org/liste_fr+easylist.txt" }, + { 12L, 13L, (short)1, "https://easylist-downloads.adblockplus.org/liste_fr.txt" }, + { 13L, 14L, (short)1, "https://easylist-downloads.adblockplus.org/liste_ar+liste_fr+easylist.txt" }, + { 14L, 15L, (short)1, "https://easylist-downloads.adblockplus.org/Liste_AR.txt" }, { 16L, 16L, (short)1, "https://raw.githubusercontent.com/List-KR/List-KR/master/filter.txt" }, { 17L, 17L, (short)1, "https://winhelp2002.mvps.org/hosts.txt" }, - { 18L, 17L, (short)2, "https://raw.githubusercontent.com/StevenBlack/hosts/master/data/mvps.org/hosts" }, - { 19L, 17L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/data/mvps.org/hosts" }, - { 20L, 18L, (short)1, "https://raw.githubusercontent.com/taylr/linkedinsanity/master/linkedinsanity.txt" }, - { 21L, 18L, (short)2, "https://gitcdn.xyz/repo/taylr/linkedinsanity/master/linkedinsanity.txt" }, - { 22L, 18L, (short)3, "https://rawcdn.githack.com/taylr/linkedinsanity/master/linkedinsanity.txt" }, - { 23L, 19L, (short)1, "https://raw.githubusercontent.com/hoshsadiq/adblock-nocoin-list/master/nocoin.txt" }, - { 24L, 19L, (short)2, "https://gitcdn.xyz/repo/hoshsadiq/adblock-nocoin-list/master/nocoin.txt" }, - { 25L, 19L, (short)3, "https://rawcdn.githack.com/hoshsadiq/adblock-nocoin-list/master/nocoin.txt" }, - { 26L, 20L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianList.txt" }, - { 27L, 20L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianList.txt" }, - { 28L, 27L, (short)1, "https://raw.githubusercontent.com/metaphoricgiraffe/tracking-filters/master/trackingfilters.txt" }, - { 29L, 27L, (short)2, "https://gitcdn.xyz/repo/metaphoricgiraffe/tracking-filters/master/trackingfilters.txt" }, - { 30L, 27L, (short)3, "https://rawcdn.githack.com/metaphoricgiraffe/tracking-filters/master/trackingfilters.txt" }, - { 31L, 28L, (short)1, "https://raw.githubusercontent.com/liamja/Prebake/master/quiet.txt" }, - { 32L, 28L, (short)2, "https://gitcdn.xyz/repo/liamja/Prebake/master/quiet.txt" }, - { 33L, 28L, (short)3, "https://rawcdn.githack.com/liamja/Prebake/master/quiet.txt" }, - { 34L, 29L, (short)1, "https://raw.githubusercontent.com/liamja/Prebake/master/obtrusive.txt" }, - { 35L, 29L, (short)2, "https://gitcdn.xyz/repo/liamja/Prebake/master/obtrusive.txt" }, - { 36L, 29L, (short)3, "https://rawcdn.githack.com/liamja/Prebake/master/obtrusive.txt" }, - { 37L, 30L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PPB.txt" }, - { 38L, 30L, (short)2, "https://gitcdn.xyz/repo/FiltersHeroes/PolishAnnoyanceFilters/master/PPB.txt" }, - { 39L, 30L, (short)3, "https://rawcdn.githack.com/FiltersHeroes/PolishAnnoyanceFilters/master/PPB.txt" }, - { 40L, 31L, (short)1, "https://www.niecko.pl/adblock/adblock.txt" }, - { 41L, 32L, (short)1, "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=adblockplus&showintro=1&mimetype=plaintext" }, - { 42L, 33L, (short)1, "https://raw.githubusercontent.com/LordBadmintonofYorkshire/Overlay-Blocker/master/blocklist.txt" }, - { 43L, 33L, (short)2, "https://gitcdn.xyz/repo/LordBadmintonofYorkshire/Overlay-Blocker/master/blocklist.txt" }, - { 44L, 33L, (short)3, "https://rawcdn.githack.com/LordBadmintonofYorkshire/Overlay-Blocker/master/blocklist.txt" }, - { 45L, 34L, (short)1, "https://openphish.com/feed.txt" }, - { 46L, 36L, (short)1, "https://raw.githubusercontent.com/genediazjr/nopelist/master/nopelist.txt" }, - { 47L, 36L, (short)2, "https://gitcdn.xyz/repo/genediazjr/nopelist/master/nopelist.txt" }, - { 48L, 36L, (short)3, "https://rawcdn.githack.com/genediazjr/nopelist/master/nopelist.txt" }, - { 49L, 38L, (short)1, "https://raw.githubusercontent.com/Rpsl/adblock-leadgenerator-list/master/list/list.txt" }, - { 50L, 38L, (short)2, "https://gitcdn.xyz/repo/Rpsl/adblock-leadgenerator-list/master/list/list.txt" }, - { 51L, 38L, (short)3, "https://rawcdn.githack.com/Rpsl/adblock-leadgenerator-list/master/list/list.txt" }, - { 52L, 39L, (short)1, "https://notabug.org/latvian-list/adblock-latvian/raw/master/lists/latvian-list.txt" }, - { 53L, 47L, (short)1, "https://raw.githubusercontent.com/NanoMeow/UltimateMirror/master/archive/hphosts.txt" }, - { 54L, 47L, (short)2, "https://v.firebog.net/hosts/static/HPHosts/HostsAdServers.txt" }, - { 55L, 49L, (short)1, "https://sites.google.com/site/hosts2ch/ja?attredirects=0" }, - { 56L, 50L, (short)1, "https://raw.githubusercontent.com/HexxiumCreations/threat-list/gh-pages/hexxiumthreatlist.txt" }, - { 57L, 50L, (short)2, "https://gitcdn.xyz/repo/HexxiumCreations/threat-list/gh-pages/hexxiumthreatlist.txt" }, - { 58L, 50L, (short)3, "https://rawcdn.githack.com/HexxiumCreations/threat-list/gh-pages/hexxiumthreatlist.txt" }, - { 59L, 51L, (short)1, "https://raw.githubusercontent.com/kargig/greek-adblockplus-filter/master/void-gr-filters.txt" }, - { 60L, 51L, (short)2, "https://gitcdn.xyz/repo/kargig/greek-adblockplus-filter/master/void-gr-filters.txt" }, - { 61L, 51L, (short)3, "https://rawcdn.githack.com/kargig/greek-adblockplus-filter/master/void-gr-filters.txt" }, - { 62L, 52L, (short)1, "https://gnuzilla.gnu.org/filters/blacklist.txt" }, - { 63L, 53L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/gmbkslist (Hosts).txt" }, - { 64L, 53L, (short)3, "https://gitcdn.xyz/repo/DandelionSprout/adfilt/master/AncientLibrary/gmbkslist (Hosts).txt" }, - { 65L, 54L, (short)1, "https://web.archive.org/web/20160221140034if_/http://adblock.gjtech.net/?format=unix-hosts" }, - { 66L, 56L, (short)1, "https://easylist-downloads.adblockplus.org/latvianlist+easylist.txt" }, - { 67L, 59L, (short)1, "https://raw.githubusercontent.com/gfmaster/adblock-korea-contrib/master/filter.txt" }, - { 68L, 59L, (short)2, "https://gitcdn.xyz/repo/gfmaster/adblock-korea-contrib/master/filter.txt" }, - { 69L, 59L, (short)3, "https://rawcdn.githack.com/gfmaster/adblock-korea-contrib/master/filter.txt" }, - { 70L, 60L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/KADhosts/master/KADhosts.txt" }, - { 71L, 60L, (short)2, "https://gitcdn.xyz/repo/FiltersHeroes/KADhosts/master/KADhosts.txt" }, - { 72L, 60L, (short)3, "https://rawcdn.githack.com/FiltersHeroes/KADhosts/master/KADhosts.txt" }, - { 73L, 61L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/KAD/master/KAD.txt" }, - { 74L, 61L, (short)2, "https://gitcdn.xyz/repo/FiltersHeroes/KAD/master/KAD.txt" }, - { 75L, 61L, (short)3, "https://rawcdn.githack.com/FiltersHeroes/KAD/master/KAD.txt" }, - { 76L, 62L, (short)1, "https://qme.mydns.jp/data/AdblockV2.txt" }, - { 77L, 63L, (short)1, "https://qme.mydns.jp/data/Adblock.txt" }, - { 78L, 64L, (short)1, "https://raw.githubusercontent.com/lewisje/jansal/master/adblock/hostslt" }, - { 79L, 64L, (short)2, "https://gitcdn.xyz/repo/lewisje/jansal/master/adblock/hostslt" }, - { 80L, 64L, (short)3, "https://gitcdn.link/repo/lewisje/jansal/master/adblock/hostslt" }, - { 81L, 65L, (short)1, "https://raw.githubusercontent.com/lewisje/jansal/master/adblock/hosts" }, - { 82L, 65L, (short)2, "https://gitcdn.xyz/repo/lewisje/jansal/master/adblock/hosts" }, - { 83L, 65L, (short)3, "https://gitcdn.link/repo/lewisje/jansal/master/adblock/hosts" }, - { 84L, 66L, (short)1, "https://www.jabcreations.com/downloads/adblock-filters.php" }, - { 85L, 67L, (short)1, "https://raw.githubusercontent.com/piperun/iploggerfilter/master/filterlist" }, - { 86L, 67L, (short)2, "https://gitcdn.xyz/repo/piperun/iploggerfilter/master/filterlist" }, - { 87L, 67L, (short)3, "https://gitcdn.link/repo/piperun/iploggerfilter/master/filterlist" }, - { 88L, 68L, (short)1, "https://raw.githubusercontent.com/ilyakatz/adblock_filters/master/inpage_popups.txt" }, - { 89L, 68L, (short)2, "https://gitcdn.xyz/repo/ilyakatz/adblock_filters/master/inpage_popups.txt" }, - { 90L, 68L, (short)3, "https://rawcdn.githack.com/ilyakatz/adblock_filters/master/inpage_popups.txt" }, - { 91L, 69L, (short)1, "https://adblock.gardar.net/is.abp.txt" }, - { 92L, 70L, (short)1, "https://raw.githubusercontent.com/Rudloff/adblock-imokwithcookies/master/filters.txt" }, - { 93L, 70L, (short)2, "https://gitcdn.xyz/repo/Rudloff/adblock-imokwithcookies/master/filters.txt" }, - { 94L, 70L, (short)3, "https://rawcdn.githack.com/Rudloff/adblock-imokwithcookies/master/filters.txt" }, - { 95L, 71L, (short)1, "https://www.i-dont-care-about-cookies.eu/abp/" }, - { 96L, 72L, (short)1, "https://raw.githubusercontent.com/hufilter/hufilter/master/hufilter.txt" }, - { 97L, 72L, (short)2, "https://repo.or.cz/Adblock-list-backups-hufilter.git/blob_plain/refs/heads/master:/hufilter.txt" }, - { 98L, 72L, (short)3, "https://gitcdn.xyz/repo/hufilter/hufilter/master/hufilter.txt" }, - { 99L, 78L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts" }, - { 100L, 78L, (short)2, "http://sbc.io/hosts/alternates/gambling-porn/hosts" }, - { 101L, 78L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/gambling-porn/hosts" }, - { 102L, 79L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts" }, - { 103L, 79L, (short)2, "http://sbc.io/hosts/alternates/gambling/hosts" }, - { 104L, 79L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/gambling/hosts" }, - { 105L, 80L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts" }, - { 106L, 80L, (short)2, "http://sbc.io/hosts/hosts" }, - { 107L, 80L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/hosts" }, - { 108L, 81L, (short)1, "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/UncheckyAds/hosts" }, - { 109L, 81L, (short)2, "https://raw.githubusercontent.com/StevenBlack/hosts/master/data/UncheckyAds/hosts" }, - { 110L, 81L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/data/UncheckyAds/hosts" }, - { 111L, 82L, (short)1, "https://raw.githubusercontent.com/uBlock-user/uBO-Personal-Filters/master/uPF.txt" }, - { 112L, 82L, (short)2, "https://gitcdn.xyz/repo/uBlock-user/uBO-Personal-Filters/master/uPF.txt" }, - { 113L, 82L, (short)3, "https://rawcdn.githack.com/uBlock-user/uBO-Personal-Filters/master/uPF.txt" }, - { 114L, 83L, (short)1, "https://raw.githubusercontent.com/NanoAdblocker/NanoFilters/master/NanoMirror/NanoDefender.txt" }, - { 115L, 83L, (short)2, "https://rawcdn.githack.com/NanoAdblocker/NanoFilters/master/NanoMirror/NanoDefender.txt" }, - { 116L, 84L, (short)1, "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock_ublock.txt" }, - { 117L, 84L, (short)2, "https://gitcdn.xyz/repo/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock_ublock.txt" }, - { 118L, 84L, (short)3, "https://rawcdn.githack.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock_ublock.txt" }, - { 119L, 85L, (short)1, "https://raw.githubusercontent.com/IDKwhattoputhere/uBlock-Filters-Plus/master/uBlock-Filters-Plus.txt" }, - { 120L, 85L, (short)2, "https://gitcdn.xyz/repo/IDKwhattoputhere/uBlock-Filters-Plus/master/uBlock-Filters-Plus.txt" }, - { 121L, 85L, (short)3, "https://rawcdn.githack.com/IDKwhattoputhere/uBlock-Filters-Plus/master/uBlock-Filters-Plus.txt" }, - { 122L, 86L, (short)1, "https://raw.githubusercontent.com/byaka/ublock-antiskimming-list/master/build/data.txt" }, - { 123L, 86L, (short)2, "https://gitcdn.xyz/repo/byaka/ublock-antiskimming-list/master/build/data.txt" }, - { 124L, 86L, (short)3, "https://rawcdn.githack.com/byaka/ublock-antiskimming-list/master/build/data.txt" }, - { 125L, 87L, (short)1, "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/unbreak.txt" }, - { 126L, 87L, (short)2, "https://gitcdn.xyz/repo/uBlockOrigin/uAssets/master/filters/unbreak.txt" }, - { 127L, 87L, (short)3, "https://rawcdn.githack.com/uBlockOrigin/uAssets/master/filters/unbreak.txt" }, - { 128L, 88L, (short)1, "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/privacy.txt" }, - { 129L, 88L, (short)2, "https://gitcdn.xyz/repo/uBlockOrigin/uAssets/master/filters/privacy.txt" }, - { 130L, 88L, (short)3, "https://rawcdn.githack.com/uBlockOrigin/uAssets/master/filters/privacy.txt" }, - { 131L, 89L, (short)1, "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/filters.txt" }, - { 132L, 89L, (short)2, "https://gitcdn.xyz/repo/uBlockOrigin/uAssets/master/filters/filters.txt" }, - { 133L, 89L, (short)3, "https://rawcdn.githack.com/uBlockOrigin/uAssets/master/filters/filters.txt" }, - { 137L, 91L, (short)1, "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/badware.txt" }, - { 138L, 91L, (short)2, "https://gitcdn.xyz/repo/uBlockOrigin/uAssets/master/filters/badware.txt" }, - { 139L, 91L, (short)3, "https://rawcdn.githack.com/uBlockOrigin/uAssets/master/filters/badware.txt" }, - { 140L, 93L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts" }, - { 141L, 93L, (short)2, "http://sbc.io/hosts/alternates/gambling-porn-social/hosts" }, - { 142L, 93L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/gambling-porn-social/hosts" }, - { 143L, 94L, (short)1, "https://www.topcashback.com/Misc/AdBlockWhiteList.aspx" }, - { 144L, 95L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts" }, - { 145L, 95L, (short)2, "http://sbc.io/hosts/alternates/gambling-social/hosts" }, - { 146L, 95L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/gambling-social/hosts" }, - { 147L, 96L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts" }, - { 148L, 96L, (short)2, "http://sbc.io/hosts/alternates/porn-social/hosts" }, - { 149L, 96L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/porn-social/hosts" }, - { 151L, 97L, (short)1, "https://hg.adblockplus.org/youtubefilters/raw-file/default/yt_annoyances_full.txt" }, - { 153L, 98L, (short)1, "https://hg.adblockplus.org/youtubefilters/raw-file/default/yt_annoyances_other.txt" }, - { 154L, 99L, (short)1, "https://raw.githubusercontent.com/yous/YousList/master/youslist.txt" }, - { 155L, 99L, (short)2, "https://gitcdn.xyz/repo/yous/YousList/master/youslist.txt" }, - { 156L, 99L, (short)3, "https://rawcdn.githack.com/yous/YousList/master/youslist.txt" }, - { 157L, 100L, (short)1, "https://raw.githubusercontent.com/wiltteri/subscriptions/master/wiltteri-reborn.txt" }, - { 158L, 100L, (short)2, "https://gitcdn.xyz/repo/wiltteri/subscriptions/master/wiltteri-reborn.txt" }, - { 159L, 100L, (short)3, "https://rawcdn.githack.com/wiltteri/subscriptions/master/wiltteri-reborn.txt" }, - { 160L, 101L, (short)1, "https://raw.githubusercontent.com/wiltteri/subscriptions/master/wiltteri.txt" }, - { 161L, 101L, (short)2, "https://gitcdn.xyz/repo/wiltteri/subscriptions/master/wiltteri.txt" }, - { 162L, 101L, (short)3, "https://rawcdn.githack.com/wiltteri/subscriptions/master/wiltteri.txt" }, - { 163L, 102L, (short)1, "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/ultralist.txt" }, - { 164L, 102L, (short)2, "https://gitcdn.xyz/repo/yourduskquibbles/webannoyances/master/ultralist.txt" }, - { 165L, 102L, (short)3, "https://rawcdn.githack.com/yourduskquibbles/webannoyances/master/ultralist.txt" }, - { 166L, 103L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts" }, - { 167L, 103L, (short)2, "http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts" }, - { 168L, 103L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-gambling-porn-social/hosts" }, - { 169L, 104L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts" }, - { 170L, 104L, (short)2, "http://sbc.io/hosts/alternates/fakenews-porn-social/hosts" }, - { 171L, 104L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-porn-social/hosts" }, - { 172L, 105L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts" }, - { 173L, 105L, (short)2, "http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts" }, - { 174L, 105L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-gambling-social/hosts" }, - { 175L, 106L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts" }, - { 176L, 106L, (short)2, "http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts" }, - { 177L, 106L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-gambling-porn/hosts" }, - { 178L, 107L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts" }, - { 179L, 107L, (short)2, "http://sbc.io/hosts/alternates/fakenews-social/hosts" }, - { 180L, 107L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-social/hosts" }, - { 181L, 108L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts" }, - { 182L, 108L, (short)2, "http://sbc.io/hosts/alternates/fakenews-porn/hosts" }, - { 183L, 108L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-porn/hosts" }, - { 184L, 109L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts" }, - { 185L, 109L, (short)2, "http://sbc.io/hosts/alternates/fakenews-gambling/hosts" }, - { 186L, 109L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-gambling/hosts" }, - { 187L, 110L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts" }, - { 188L, 110L, (short)2, "http://sbc.io/hosts/alternates/fakenews/hosts" }, - { 189L, 110L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews/hosts" }, - { 190L, 111L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts" }, - { 191L, 111L, (short)2, "http://sbc.io/hosts/alternates/social/hosts" }, - { 192L, 111L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/social/hosts" }, - { 193L, 112L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts" }, - { 194L, 112L, (short)2, "http://sbc.io/hosts/alternates/porn/hosts" }, - { 195L, 112L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/porn/hosts" }, - { 196L, 113L, (short)1, "https://raw.githubusercontent.com/tofukko/filter/master/Adblock_Plus_list.txt" }, - { 197L, 114L, (short)1, "https://raw.githubusercontent.com/thoughtconverge/abf/master/abf.txt" }, - { 198L, 114L, (short)2, "https://gitcdn.xyz/repo/thoughtconverge/abf/master/abf.txt" }, - { 199L, 114L, (short)3, "https://rawcdn.githack.com/thoughtconverge/abf/master/abf.txt" }, - { 200L, 115L, (short)1, "https://hostsfile.mine.nu/hosts0.txt" }, - { 201L, 116L, (short)1, "https://www.zoso.ro/pages/rolist2.txt" }, - { 202L, 117L, (short)1, "https://easylist-downloads.adblockplus.org/rolist+easylist.txt" }, - { 203L, 118L, (short)1, "https://www.zoso.ro/pages/rolist.txt" }, - { 204L, 119L, (short)1, "https://road.adblock.ro/lista.txt" }, - { 205L, 119L, (short)2, "https://raw.githubusercontent.com/tcptomato/ROad-Block/master/road-block-filters-light.txt" }, - { 206L, 119L, (short)3, "https://gitcdn.xyz/repo/tcptomato/ROad-Block/master/road-block-filters-light.txt" }, - { 207L, 131L, (short)1, "https://easylist-downloads.adblockplus.org/advblock.txt" }, - { 208L, 132L, (short)1, "http://denis-ovs.narod.ru/adblock.txt" }, - { 209L, 133L, (short)1, "https://easylist-downloads.adblockplus.org/ruadlist+easylist.txt" }, - { 210L, 134L, (short)1, "https://easylist-downloads.adblockplus.org/bitblock.txt" }, - { 211L, 135L, (short)1, "https://hostsfile.mine.nu/downloads/adblock.txt" }, - { 212L, 136L, (short)1, "https://raw.githubusercontent.com/betterwebleon/slovenian-list/master/filters.txt" }, - { 213L, 136L, (short)2, "https://gitcdn.xyz/repo/betterwebleon/slovenian-list/master/filters.txt" }, - { 214L, 136L, (short)3, "https://rawcdn.githack.com/betterwebleon/slovenian-list/master/filters.txt" }, - { 215L, 137L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/data/StevenBlack/hosts" }, - { 216L, 137L, (short)2, "https://gitcdn.xyz/repo/StevenBlack/hosts/master/data/StevenBlack/hosts" }, - { 217L, 137L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/data/StevenBlack/hosts" }, - { 221L, 139L, (short)1, "https://raw.githubusercontent.com/Spam404/lists/master/main-blacklist.txt" }, - { 222L, 139L, (short)2, "https://gitcdn.xyz/repo/Spam404/lists/master/main-blacklist.txt" }, - { 223L, 139L, (short)3, "https://rawcdn.githack.com/Spam404/lists/master/main-blacklist.txt" }, - { 224L, 140L, (short)1, "https://raw.githubusercontent.com/Spam404/lists/master/adblock-list.txt" }, - { 225L, 140L, (short)2, "https://gitcdn.xyz/repo/Spam404/lists/master/adblock-list.txt" }, - { 226L, 140L, (short)3, "https://rawcdn.githack.com/Spam404/lists/master/adblock-list.txt" }, - { 227L, 141L, (short)1, "https://shopping.mileageplus.com/adBlockWhitelist.php" }, - { 228L, 142L, (short)1, "https://web.archive.org/web/20160221140104if_/http://adblock.gjtech.net/?format=adblock-plus" }, - { 229L, 143L, (short)1, "https://rapidrewardsshopping.southwest.com/adBlockWhitelist.php" }, - { 230L, 144L, (short)1, "https://www.aadvantageeshopping.com/adBlockWhitelist.php" }, - { 231L, 145L, (short)1, "https://www.mileageplanshopping.com/adBlockWhitelist.php" }, - { 232L, 146L, (short)1, "https://web.archive.org/web/20121106002043if_/http://www.schuzak.jp:80/other/abp.conf" }, - { 233L, 147L, (short)1, "https://adblock.dk/block.csv" }, - { 234L, 147L, (short)2, "https://adblock.schack.dk/block.txt" }, - { 235L, 150L, (short)1, "https://easylist-downloads.adblockplus.org/cntblock.txt" }, - { 236L, 151L, (short)1, "https://www.barclaycardrewardsboost.com/adBlockWhitelist.php" }, - { 237L, 152L, (short)1, "https://pastebin.com/raw/r9a5WrZa" }, - { 238L, 155L, (short)1, "https://filters.adtidy.org/extension/chromium/filters/10.txt" }, - { 239L, 156L, (short)1, "https://filters.adtidy.org/extension/chromium/filters/13.txt" }, - { 240L, 157L, (short)1, "https://filters.adtidy.org/extension/chromium/filters/3.txt" }, - { 241L, 158L, (short)1, "https://filters.adtidy.org/extension/chromium/filters/9.txt" }, - { 242L, 159L, (short)1, "https://filters.adtidy.org/extension/chromium/filters/4.txt" }, - { 243L, 160L, (short)1, "https://filters.adtidy.org/mac/filters/12.txt" }, - { 244L, 161L, (short)1, "https://filters.adtidy.org/extension/chromium/filters/1.txt" }, - { 245L, 162L, (short)1, "https://filters.adtidy.org/android/filters/11.txt" }, - { 246L, 163L, (short)1, "https://filters.adtidy.org/extension/chromium/filters/7.txt" }, - { 247L, 164L, (short)1, "https://filters.adtidy.org/extension/chromium/filters/6.txt" }, - { 248L, 165L, (short)1, "https://filters.adtidy.org/extension/chromium/filters/5.txt" }, - { 249L, 166L, (short)1, "https://filters.adtidy.org/extension/chromium/filters/2.txt" }, - { 250L, 167L, (short)1, "https://filters.adtidy.org/extension/chromium/filters/8.txt" }, - { 251L, 168L, (short)1, "https://filters.adtidy.org/windows/filters/15.txt" }, - { 252L, 169L, (short)1, "https://filters.adtidy.org/extension/chromium/filters/14.txt" }, - { 253L, 170L, (short)1, "https://hg.adblockplus.org/adwarefilters/raw-file/tip/adwarefilters.txt" }, - { 254L, 171L, (short)1, "https://dl.dropboxusercontent.com/s/1ybzw9lb7m1qiyl/AAs.txt" }, - { 255L, 173L, (short)1, "http://rlwpx.free.fr/WPFF/hmis.7z" }, - { 256L, 175L, (short)1, "https://raw.githubusercontent.com/r4vi/block-the-eu-cookie-shit-list/master/filterlist.txt" }, - { 257L, 175L, (short)2, "https://gitcdn.xyz/repo/r4vi/block-the-eu-cookie-shit-list/master/filterlist.txt" }, - { 258L, 175L, (short)3, "https://rawcdn.githack.com/r4vi/block-the-eu-cookie-shit-list/master/filterlist.txt" }, - { 259L, 176L, (short)1, "https://raw.githubusercontent.com/anarki999/Adblock-List-Archive/master/Better.fyiTrackersBlocklist.txt" }, - { 260L, 176L, (short)2, "https://gitcdn.xyz/repo/anarki999/Adblock-List-Archive/master/Better.fyiTrackersBlocklist.txt" }, - { 261L, 176L, (short)3, "https://rawcdn.githack.com/anarki999/Adblock-List-Archive/master/Better.fyiTrackersBlocklist.txt" }, - { 262L, 177L, (short)1, "https://paulgb.github.io/BarbBlock/blacklists/hosts-file.txt" }, - { 263L, 178L, (short)1, "https://raw.githubusercontent.com/rebelion76/bankiru_plus_adblock_list/master/bankiru_plus.txt" }, - { 264L, 178L, (short)2, "https://gitcdn.xyz/repo/rebelion76/bankiru_plus_adblock_list/master/bankiru_plus.txt" }, - { 265L, 178L, (short)3, "https://rawcdn.githack.com/rebelion76/bankiru_plus_adblock_list/master/bankiru_plus.txt" }, - { 266L, 179L, (short)1, "https://www.hostsfile.org/Downloads/hosts.txt" }, - { 267L, 181L, (short)1, "http://git.sourceforge.jp/view?p=ayucat-list/ayucat-list.git;a=blob_plain;f=ayucat-list.txt;hb=b254c74c132832a3ade7b9d42c2ef8d3dd59fdb9" }, - { 268L, 181L, (short)2, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Ayucat Powerful List.txt" }, - { 269L, 183L, (short)1, "https://raw.githubusercontent.com/Yhonay/antipopads/master/popads.txt" }, - { 270L, 183L, (short)2, "https://gitcdn.xyz/repo/Yhonay/antipopads/master/popads.txt" }, - { 271L, 183L, (short)3, "https://rawcdn.githack.com/Yhonay/antipopads/master/popads.txt" }, - { 272L, 184L, (short)1, "https://fanboy.co.nz/fanboy-antifacebook.txt" }, - { 273L, 185L, (short)1, "http://rlwpx.free.fr/WPFF/hblc.7z" }, - { 274L, 186L, (short)1, "http://rlwpx.free.fr/WPFF/hrsk.7z" }, - { 275L, 186L, (short)2, "https://v.firebog.net/hosts/Airelle-hrsk.txt" }, - { 276L, 187L, (short)1, "http://rlwpx.free.fr/WPFF/htrc.7z" }, - { 277L, 187L, (short)2, "https://v.firebog.net/hosts/Airelle-trc.txt" }, - { 278L, 188L, (short)1, "http://rlwpx.free.fr/WPFF/hsex.7z" }, - { 279L, 189L, (short)1, "http://rlwpx.free.fr/WPFF/hpub.7z" }, - { 280L, 190L, (short)1, "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.Spam/hosts" }, - { 281L, 190L, (short)2, "https://gitcdn.xyz/repo/FadeMind/hosts.extras/master/add.Spam/hosts" }, - { 282L, 190L, (short)3, "https://gitcdn.link/repo/FadeMind/hosts.extras/master/add.Spam/hosts" }, - { 283L, 191L, (short)1, "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.Risk/hosts" }, - { 284L, 191L, (short)2, "https://gitcdn.xyz/repo/FadeMind/hosts.extras/master/add.Risk/hosts" }, - { 285L, 191L, (short)3, "https://gitcdn.link/repo/FadeMind/hosts.extras/master/add.Risk/hosts" }, - { 286L, 192L, (short)1, "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.Dead/hosts" }, - { 287L, 192L, (short)2, "https://gitcdn.xyz/repo/FadeMind/hosts.extras/master/add.Dead/hosts" }, - { 288L, 192L, (short)3, "https://gitcdn.link/repo/FadeMind/hosts.extras/master/add.Dead/hosts" }, - { 289L, 197L, (short)1, "https://easylist-downloads.adblockplus.org/abpindo+easylist.txt" }, - { 290L, 198L, (short)1, "https://raw.githubusercontent.com/ABPindo/indonesianadblockrules/master/subscriptions/abpindo.txt" }, - { 291L, 198L, (short)2, "https://raw.githubusercontent.com/heradhis/indonesianadblockrules/master/subscriptions/abpindo.txt" }, - { 292L, 198L, (short)3, "https://gitcdn.xyz/repo/ABPindo/indonesianadblockrules/master/subscriptions/abpindo.txt" }, - { 293L, 199L, (short)1, "https://raw.githubusercontent.com/gioxx/xfiles/master/facebook.txt" }, - { 294L, 199L, (short)2, "https://gitcdn.xyz/repo/gioxx/xfiles/master/facebook.txt" }, - { 295L, 199L, (short)3, "https://rawcdn.githack.com/gioxx/xfiles/master/facebook.txt" }, - { 296L, 200L, (short)1, "https://raw.githubusercontent.com/gioxx/xfiles/master/siteblock.txt" }, - { 297L, 200L, (short)2, "https://gitcdn.xyz/repo/gioxx/xfiles/master/siteblock.txt" }, - { 298L, 200L, (short)3, "https://rawcdn.githack.com/gioxx/xfiles/master/siteblock.txt" }, - { 299L, 201L, (short)1, "https://raw.githubusercontent.com/gioxx/xfiles/master/filtri.txt" }, - { 300L, 201L, (short)2, "https://gitcdn.xyz/repo/gioxx/xfiles/master/filtri.txt" }, - { 301L, 201L, (short)3, "https://rawcdn.githack.com/gioxx/xfiles/master/filtri.txt" }, - { 302L, 202L, (short)1, "https://raw.githubusercontent.com/k2jp/abp-japanese-filters/master/abpjf_paranoid.txt" }, - { 303L, 202L, (short)2, "https://gitcdn.xyz/repo/k2jp/abp-japanese-filters/master/abpjf_paranoid.txt" }, - { 304L, 202L, (short)3, "https://rawcdn.githack.com/k2jp/abp-japanese-filters/master/abpjf_paranoid.txt" } + { 17L, 18L, (short)2, "https://raw.githubusercontent.com/StevenBlack/hosts/master/data/mvps.org/hosts" }, + { 17L, 19L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/data/mvps.org/hosts" }, + { 18L, 20L, (short)1, "https://raw.githubusercontent.com/taylr/linkedinsanity/master/linkedinsanity.txt" }, + { 18L, 21L, (short)2, "https://gitcdn.xyz/repo/taylr/linkedinsanity/master/linkedinsanity.txt" }, + { 18L, 22L, (short)3, "https://rawcdn.githack.com/taylr/linkedinsanity/master/linkedinsanity.txt" }, + { 19L, 23L, (short)1, "https://raw.githubusercontent.com/hoshsadiq/adblock-nocoin-list/master/nocoin.txt" }, + { 19L, 24L, (short)2, "https://gitcdn.xyz/repo/hoshsadiq/adblock-nocoin-list/master/nocoin.txt" }, + { 19L, 25L, (short)3, "https://rawcdn.githack.com/hoshsadiq/adblock-nocoin-list/master/nocoin.txt" }, + { 20L, 26L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianList.txt" }, + { 20L, 27L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianList.txt" }, + { 27L, 28L, (short)1, "https://raw.githubusercontent.com/metaphoricgiraffe/tracking-filters/master/trackingfilters.txt" }, + { 27L, 29L, (short)2, "https://gitcdn.xyz/repo/metaphoricgiraffe/tracking-filters/master/trackingfilters.txt" }, + { 27L, 30L, (short)3, "https://rawcdn.githack.com/metaphoricgiraffe/tracking-filters/master/trackingfilters.txt" }, + { 28L, 31L, (short)1, "https://raw.githubusercontent.com/liamja/Prebake/master/quiet.txt" }, + { 28L, 32L, (short)2, "https://gitcdn.xyz/repo/liamja/Prebake/master/quiet.txt" }, + { 28L, 33L, (short)3, "https://rawcdn.githack.com/liamja/Prebake/master/quiet.txt" }, + { 29L, 34L, (short)1, "https://raw.githubusercontent.com/liamja/Prebake/master/obtrusive.txt" }, + { 29L, 35L, (short)2, "https://gitcdn.xyz/repo/liamja/Prebake/master/obtrusive.txt" }, + { 29L, 36L, (short)3, "https://rawcdn.githack.com/liamja/Prebake/master/obtrusive.txt" }, + { 30L, 37L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PPB.txt" }, + { 30L, 38L, (short)2, "https://gitcdn.xyz/repo/FiltersHeroes/PolishAnnoyanceFilters/master/PPB.txt" }, + { 30L, 39L, (short)3, "https://rawcdn.githack.com/FiltersHeroes/PolishAnnoyanceFilters/master/PPB.txt" }, + { 31L, 40L, (short)1, "https://www.niecko.pl/adblock/adblock.txt" }, + { 32L, 41L, (short)1, "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=adblockplus&showintro=1&mimetype=plaintext" }, + { 33L, 42L, (short)1, "https://raw.githubusercontent.com/LordBadmintonofYorkshire/Overlay-Blocker/master/blocklist.txt" }, + { 33L, 43L, (short)2, "https://gitcdn.xyz/repo/LordBadmintonofYorkshire/Overlay-Blocker/master/blocklist.txt" }, + { 33L, 44L, (short)3, "https://rawcdn.githack.com/LordBadmintonofYorkshire/Overlay-Blocker/master/blocklist.txt" }, + { 34L, 45L, (short)1, "https://openphish.com/feed.txt" }, + { 36L, 46L, (short)1, "https://raw.githubusercontent.com/genediazjr/nopelist/master/nopelist.txt" }, + { 36L, 47L, (short)2, "https://gitcdn.xyz/repo/genediazjr/nopelist/master/nopelist.txt" }, + { 36L, 48L, (short)3, "https://rawcdn.githack.com/genediazjr/nopelist/master/nopelist.txt" }, + { 38L, 49L, (short)1, "https://raw.githubusercontent.com/Rpsl/adblock-leadgenerator-list/master/list/list.txt" }, + { 38L, 50L, (short)2, "https://gitcdn.xyz/repo/Rpsl/adblock-leadgenerator-list/master/list/list.txt" }, + { 38L, 51L, (short)3, "https://rawcdn.githack.com/Rpsl/adblock-leadgenerator-list/master/list/list.txt" }, + { 39L, 52L, (short)1, "https://notabug.org/latvian-list/adblock-latvian/raw/master/lists/latvian-list.txt" }, + { 47L, 53L, (short)1, "https://raw.githubusercontent.com/NanoMeow/UltimateMirror/master/archive/hphosts.txt" }, + { 47L, 54L, (short)2, "https://v.firebog.net/hosts/static/HPHosts/HostsAdServers.txt" }, + { 49L, 55L, (short)1, "https://sites.google.com/site/hosts2ch/ja?attredirects=0" }, + { 50L, 56L, (short)1, "https://raw.githubusercontent.com/HexxiumCreations/threat-list/gh-pages/hexxiumthreatlist.txt" }, + { 50L, 57L, (short)2, "https://gitcdn.xyz/repo/HexxiumCreations/threat-list/gh-pages/hexxiumthreatlist.txt" }, + { 50L, 58L, (short)3, "https://rawcdn.githack.com/HexxiumCreations/threat-list/gh-pages/hexxiumthreatlist.txt" }, + { 51L, 59L, (short)1, "https://raw.githubusercontent.com/kargig/greek-adblockplus-filter/master/void-gr-filters.txt" }, + { 51L, 60L, (short)2, "https://gitcdn.xyz/repo/kargig/greek-adblockplus-filter/master/void-gr-filters.txt" }, + { 51L, 61L, (short)3, "https://rawcdn.githack.com/kargig/greek-adblockplus-filter/master/void-gr-filters.txt" }, + { 52L, 62L, (short)1, "https://gnuzilla.gnu.org/filters/blacklist.txt" }, + { 53L, 63L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/gmbkslist (Hosts).txt" }, + { 53L, 64L, (short)3, "https://gitcdn.xyz/repo/DandelionSprout/adfilt/master/AncientLibrary/gmbkslist (Hosts).txt" }, + { 54L, 65L, (short)1, "https://web.archive.org/web/20160221140034if_/http://adblock.gjtech.net/?format=unix-hosts" }, + { 56L, 66L, (short)1, "https://easylist-downloads.adblockplus.org/latvianlist+easylist.txt" }, + { 59L, 67L, (short)1, "https://raw.githubusercontent.com/gfmaster/adblock-korea-contrib/master/filter.txt" }, + { 59L, 68L, (short)2, "https://gitcdn.xyz/repo/gfmaster/adblock-korea-contrib/master/filter.txt" }, + { 59L, 69L, (short)3, "https://rawcdn.githack.com/gfmaster/adblock-korea-contrib/master/filter.txt" }, + { 60L, 70L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/KADhosts/master/KADhosts.txt" }, + { 60L, 71L, (short)2, "https://gitcdn.xyz/repo/FiltersHeroes/KADhosts/master/KADhosts.txt" }, + { 60L, 72L, (short)3, "https://rawcdn.githack.com/FiltersHeroes/KADhosts/master/KADhosts.txt" }, + { 61L, 73L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/KAD/master/KAD.txt" }, + { 61L, 74L, (short)2, "https://gitcdn.xyz/repo/FiltersHeroes/KAD/master/KAD.txt" }, + { 61L, 75L, (short)3, "https://rawcdn.githack.com/FiltersHeroes/KAD/master/KAD.txt" }, + { 62L, 76L, (short)1, "https://qme.mydns.jp/data/AdblockV2.txt" }, + { 63L, 77L, (short)1, "https://qme.mydns.jp/data/Adblock.txt" }, + { 64L, 78L, (short)1, "https://raw.githubusercontent.com/lewisje/jansal/master/adblock/hostslt" }, + { 64L, 79L, (short)2, "https://gitcdn.xyz/repo/lewisje/jansal/master/adblock/hostslt" }, + { 64L, 80L, (short)3, "https://gitcdn.link/repo/lewisje/jansal/master/adblock/hostslt" }, + { 65L, 81L, (short)1, "https://raw.githubusercontent.com/lewisje/jansal/master/adblock/hosts" }, + { 65L, 82L, (short)2, "https://gitcdn.xyz/repo/lewisje/jansal/master/adblock/hosts" }, + { 65L, 83L, (short)3, "https://gitcdn.link/repo/lewisje/jansal/master/adblock/hosts" }, + { 66L, 84L, (short)1, "https://www.jabcreations.com/downloads/adblock-filters.php" }, + { 67L, 85L, (short)1, "https://raw.githubusercontent.com/piperun/iploggerfilter/master/filterlist" }, + { 67L, 86L, (short)2, "https://gitcdn.xyz/repo/piperun/iploggerfilter/master/filterlist" }, + { 67L, 87L, (short)3, "https://gitcdn.link/repo/piperun/iploggerfilter/master/filterlist" }, + { 68L, 88L, (short)1, "https://raw.githubusercontent.com/ilyakatz/adblock_filters/master/inpage_popups.txt" }, + { 68L, 89L, (short)2, "https://gitcdn.xyz/repo/ilyakatz/adblock_filters/master/inpage_popups.txt" }, + { 68L, 90L, (short)3, "https://rawcdn.githack.com/ilyakatz/adblock_filters/master/inpage_popups.txt" }, + { 69L, 91L, (short)1, "https://adblock.gardar.net/is.abp.txt" }, + { 70L, 92L, (short)1, "https://raw.githubusercontent.com/Rudloff/adblock-imokwithcookies/master/filters.txt" }, + { 70L, 93L, (short)2, "https://gitcdn.xyz/repo/Rudloff/adblock-imokwithcookies/master/filters.txt" }, + { 70L, 94L, (short)3, "https://rawcdn.githack.com/Rudloff/adblock-imokwithcookies/master/filters.txt" }, + { 71L, 95L, (short)1, "https://www.i-dont-care-about-cookies.eu/abp/" }, + { 72L, 96L, (short)1, "https://raw.githubusercontent.com/hufilter/hufilter/master/hufilter.txt" }, + { 72L, 97L, (short)2, "https://repo.or.cz/Adblock-list-backups-hufilter.git/blob_plain/refs/heads/master:/hufilter.txt" }, + { 72L, 98L, (short)3, "https://gitcdn.xyz/repo/hufilter/hufilter/master/hufilter.txt" }, + { 78L, 99L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts" }, + { 78L, 100L, (short)2, "http://sbc.io/hosts/alternates/gambling-porn/hosts" }, + { 78L, 101L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/gambling-porn/hosts" }, + { 79L, 102L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts" }, + { 79L, 103L, (short)2, "http://sbc.io/hosts/alternates/gambling/hosts" }, + { 79L, 104L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/gambling/hosts" }, + { 80L, 105L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts" }, + { 80L, 106L, (short)2, "http://sbc.io/hosts/hosts" }, + { 80L, 107L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/hosts" }, + { 81L, 108L, (short)1, "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/UncheckyAds/hosts" }, + { 81L, 109L, (short)2, "https://raw.githubusercontent.com/StevenBlack/hosts/master/data/UncheckyAds/hosts" }, + { 81L, 110L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/data/UncheckyAds/hosts" }, + { 82L, 111L, (short)1, "https://raw.githubusercontent.com/uBlock-user/uBO-Personal-Filters/master/uPF.txt" }, + { 82L, 112L, (short)2, "https://gitcdn.xyz/repo/uBlock-user/uBO-Personal-Filters/master/uPF.txt" }, + { 82L, 113L, (short)3, "https://rawcdn.githack.com/uBlock-user/uBO-Personal-Filters/master/uPF.txt" }, + { 83L, 114L, (short)1, "https://raw.githubusercontent.com/NanoAdblocker/NanoFilters/master/NanoMirror/NanoDefender.txt" }, + { 83L, 115L, (short)2, "https://rawcdn.githack.com/NanoAdblocker/NanoFilters/master/NanoMirror/NanoDefender.txt" }, + { 84L, 116L, (short)1, "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock_ublock.txt" }, + { 84L, 117L, (short)2, "https://gitcdn.xyz/repo/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock_ublock.txt" }, + { 84L, 118L, (short)3, "https://rawcdn.githack.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock_ublock.txt" }, + { 85L, 119L, (short)1, "https://raw.githubusercontent.com/IDKwhattoputhere/uBlock-Filters-Plus/master/uBlock-Filters-Plus.txt" }, + { 85L, 120L, (short)2, "https://gitcdn.xyz/repo/IDKwhattoputhere/uBlock-Filters-Plus/master/uBlock-Filters-Plus.txt" }, + { 85L, 121L, (short)3, "https://rawcdn.githack.com/IDKwhattoputhere/uBlock-Filters-Plus/master/uBlock-Filters-Plus.txt" }, + { 86L, 122L, (short)1, "https://raw.githubusercontent.com/byaka/ublock-antiskimming-list/master/build/data.txt" }, + { 86L, 123L, (short)2, "https://gitcdn.xyz/repo/byaka/ublock-antiskimming-list/master/build/data.txt" }, + { 86L, 124L, (short)3, "https://rawcdn.githack.com/byaka/ublock-antiskimming-list/master/build/data.txt" }, + { 87L, 125L, (short)1, "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/unbreak.txt" }, + { 87L, 126L, (short)2, "https://gitcdn.xyz/repo/uBlockOrigin/uAssets/master/filters/unbreak.txt" }, + { 87L, 127L, (short)3, "https://rawcdn.githack.com/uBlockOrigin/uAssets/master/filters/unbreak.txt" }, + { 88L, 128L, (short)1, "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/privacy.txt" }, + { 88L, 129L, (short)2, "https://gitcdn.xyz/repo/uBlockOrigin/uAssets/master/filters/privacy.txt" }, + { 88L, 130L, (short)3, "https://rawcdn.githack.com/uBlockOrigin/uAssets/master/filters/privacy.txt" }, + { 89L, 131L, (short)1, "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/filters.txt" }, + { 89L, 132L, (short)2, "https://gitcdn.xyz/repo/uBlockOrigin/uAssets/master/filters/filters.txt" }, + { 89L, 133L, (short)3, "https://rawcdn.githack.com/uBlockOrigin/uAssets/master/filters/filters.txt" }, + { 91L, 137L, (short)1, "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/badware.txt" }, + { 91L, 138L, (short)2, "https://gitcdn.xyz/repo/uBlockOrigin/uAssets/master/filters/badware.txt" }, + { 91L, 139L, (short)3, "https://rawcdn.githack.com/uBlockOrigin/uAssets/master/filters/badware.txt" }, + { 93L, 140L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts" }, + { 93L, 141L, (short)2, "http://sbc.io/hosts/alternates/gambling-porn-social/hosts" }, + { 93L, 142L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/gambling-porn-social/hosts" }, + { 94L, 143L, (short)1, "https://www.topcashback.com/Misc/AdBlockWhiteList.aspx" }, + { 95L, 144L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts" }, + { 95L, 145L, (short)2, "http://sbc.io/hosts/alternates/gambling-social/hosts" }, + { 95L, 146L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/gambling-social/hosts" }, + { 96L, 147L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts" }, + { 96L, 148L, (short)2, "http://sbc.io/hosts/alternates/porn-social/hosts" }, + { 96L, 149L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/porn-social/hosts" }, + { 97L, 151L, (short)1, "https://hg.adblockplus.org/youtubefilters/raw-file/default/yt_annoyances_full.txt" }, + { 98L, 153L, (short)1, "https://hg.adblockplus.org/youtubefilters/raw-file/default/yt_annoyances_other.txt" }, + { 99L, 154L, (short)1, "https://raw.githubusercontent.com/yous/YousList/master/youslist.txt" }, + { 99L, 155L, (short)2, "https://gitcdn.xyz/repo/yous/YousList/master/youslist.txt" }, + { 99L, 156L, (short)3, "https://rawcdn.githack.com/yous/YousList/master/youslist.txt" }, + { 100L, 157L, (short)1, "https://raw.githubusercontent.com/wiltteri/subscriptions/master/wiltteri-reborn.txt" }, + { 100L, 158L, (short)2, "https://gitcdn.xyz/repo/wiltteri/subscriptions/master/wiltteri-reborn.txt" }, + { 100L, 159L, (short)3, "https://rawcdn.githack.com/wiltteri/subscriptions/master/wiltteri-reborn.txt" }, + { 101L, 160L, (short)1, "https://raw.githubusercontent.com/wiltteri/subscriptions/master/wiltteri.txt" }, + { 101L, 161L, (short)2, "https://gitcdn.xyz/repo/wiltteri/subscriptions/master/wiltteri.txt" }, + { 101L, 162L, (short)3, "https://rawcdn.githack.com/wiltteri/subscriptions/master/wiltteri.txt" }, + { 102L, 163L, (short)1, "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/ultralist.txt" }, + { 102L, 164L, (short)2, "https://gitcdn.xyz/repo/yourduskquibbles/webannoyances/master/ultralist.txt" }, + { 102L, 165L, (short)3, "https://rawcdn.githack.com/yourduskquibbles/webannoyances/master/ultralist.txt" }, + { 103L, 166L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts" }, + { 103L, 167L, (short)2, "http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts" }, + { 103L, 168L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-gambling-porn-social/hosts" }, + { 104L, 169L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts" }, + { 104L, 170L, (short)2, "http://sbc.io/hosts/alternates/fakenews-porn-social/hosts" }, + { 104L, 171L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-porn-social/hosts" }, + { 105L, 172L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts" }, + { 105L, 173L, (short)2, "http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts" }, + { 105L, 174L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-gambling-social/hosts" }, + { 106L, 175L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts" }, + { 106L, 176L, (short)2, "http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts" }, + { 106L, 177L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-gambling-porn/hosts" }, + { 107L, 178L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts" }, + { 107L, 179L, (short)2, "http://sbc.io/hosts/alternates/fakenews-social/hosts" }, + { 107L, 180L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-social/hosts" }, + { 108L, 181L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts" }, + { 108L, 182L, (short)2, "http://sbc.io/hosts/alternates/fakenews-porn/hosts" }, + { 108L, 183L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-porn/hosts" }, + { 109L, 184L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts" }, + { 109L, 185L, (short)2, "http://sbc.io/hosts/alternates/fakenews-gambling/hosts" }, + { 109L, 186L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-gambling/hosts" }, + { 110L, 187L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts" }, + { 110L, 188L, (short)2, "http://sbc.io/hosts/alternates/fakenews/hosts" }, + { 110L, 189L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews/hosts" }, + { 111L, 190L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts" }, + { 111L, 191L, (short)2, "http://sbc.io/hosts/alternates/social/hosts" }, + { 111L, 192L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/social/hosts" }, + { 112L, 193L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts" }, + { 112L, 194L, (short)2, "http://sbc.io/hosts/alternates/porn/hosts" }, + { 112L, 195L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/porn/hosts" }, + { 113L, 196L, (short)1, "https://raw.githubusercontent.com/tofukko/filter/master/Adblock_Plus_list.txt" }, + { 114L, 197L, (short)1, "https://raw.githubusercontent.com/thoughtconverge/abf/master/abf.txt" }, + { 114L, 198L, (short)2, "https://gitcdn.xyz/repo/thoughtconverge/abf/master/abf.txt" }, + { 114L, 199L, (short)3, "https://rawcdn.githack.com/thoughtconverge/abf/master/abf.txt" }, + { 115L, 200L, (short)1, "https://hostsfile.mine.nu/hosts0.txt" }, + { 116L, 201L, (short)1, "https://www.zoso.ro/pages/rolist2.txt" }, + { 117L, 202L, (short)1, "https://easylist-downloads.adblockplus.org/rolist+easylist.txt" }, + { 118L, 203L, (short)1, "https://www.zoso.ro/pages/rolist.txt" }, + { 119L, 204L, (short)1, "https://road.adblock.ro/lista.txt" }, + { 119L, 205L, (short)2, "https://raw.githubusercontent.com/tcptomato/ROad-Block/master/road-block-filters-light.txt" }, + { 119L, 206L, (short)3, "https://gitcdn.xyz/repo/tcptomato/ROad-Block/master/road-block-filters-light.txt" }, + { 131L, 207L, (short)1, "https://easylist-downloads.adblockplus.org/advblock.txt" }, + { 132L, 208L, (short)1, "http://denis-ovs.narod.ru/adblock.txt" }, + { 133L, 209L, (short)1, "https://easylist-downloads.adblockplus.org/ruadlist+easylist.txt" }, + { 134L, 210L, (short)1, "https://easylist-downloads.adblockplus.org/bitblock.txt" }, + { 135L, 211L, (short)1, "https://hostsfile.mine.nu/downloads/adblock.txt" }, + { 136L, 212L, (short)1, "https://raw.githubusercontent.com/betterwebleon/slovenian-list/master/filters.txt" }, + { 136L, 213L, (short)2, "https://gitcdn.xyz/repo/betterwebleon/slovenian-list/master/filters.txt" }, + { 136L, 214L, (short)3, "https://rawcdn.githack.com/betterwebleon/slovenian-list/master/filters.txt" }, + { 137L, 215L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/data/StevenBlack/hosts" }, + { 137L, 216L, (short)2, "https://gitcdn.xyz/repo/StevenBlack/hosts/master/data/StevenBlack/hosts" }, + { 137L, 217L, (short)3, "https://gitlab.com/StevenBlack/hosts/raw/master/data/StevenBlack/hosts" }, + { 139L, 221L, (short)1, "https://raw.githubusercontent.com/Spam404/lists/master/main-blacklist.txt" }, + { 139L, 222L, (short)2, "https://gitcdn.xyz/repo/Spam404/lists/master/main-blacklist.txt" }, + { 139L, 223L, (short)3, "https://rawcdn.githack.com/Spam404/lists/master/main-blacklist.txt" }, + { 140L, 224L, (short)1, "https://raw.githubusercontent.com/Spam404/lists/master/adblock-list.txt" }, + { 140L, 225L, (short)2, "https://gitcdn.xyz/repo/Spam404/lists/master/adblock-list.txt" }, + { 140L, 226L, (short)3, "https://rawcdn.githack.com/Spam404/lists/master/adblock-list.txt" }, + { 141L, 227L, (short)1, "https://shopping.mileageplus.com/adBlockWhitelist.php" }, + { 142L, 228L, (short)1, "https://web.archive.org/web/20160221140104if_/http://adblock.gjtech.net/?format=adblock-plus" }, + { 143L, 229L, (short)1, "https://rapidrewardsshopping.southwest.com/adBlockWhitelist.php" }, + { 144L, 230L, (short)1, "https://www.aadvantageeshopping.com/adBlockWhitelist.php" }, + { 145L, 231L, (short)1, "https://www.mileageplanshopping.com/adBlockWhitelist.php" }, + { 146L, 232L, (short)1, "https://web.archive.org/web/20121106002043if_/http://www.schuzak.jp:80/other/abp.conf" }, + { 147L, 233L, (short)1, "https://adblock.dk/block.csv" }, + { 147L, 234L, (short)2, "https://adblock.schack.dk/block.txt" }, + { 150L, 235L, (short)1, "https://easylist-downloads.adblockplus.org/cntblock.txt" }, + { 151L, 236L, (short)1, "https://www.barclaycardrewardsboost.com/adBlockWhitelist.php" }, + { 152L, 237L, (short)1, "https://pastebin.com/raw/r9a5WrZa" }, + { 155L, 238L, (short)1, "https://filters.adtidy.org/extension/chromium/filters/10.txt" }, + { 156L, 239L, (short)1, "https://filters.adtidy.org/extension/chromium/filters/13.txt" }, + { 157L, 240L, (short)1, "https://filters.adtidy.org/extension/chromium/filters/3.txt" }, + { 158L, 241L, (short)1, "https://filters.adtidy.org/extension/chromium/filters/9.txt" }, + { 159L, 242L, (short)1, "https://filters.adtidy.org/extension/chromium/filters/4.txt" }, + { 160L, 243L, (short)1, "https://filters.adtidy.org/mac/filters/12.txt" }, + { 161L, 244L, (short)1, "https://filters.adtidy.org/extension/chromium/filters/1.txt" }, + { 162L, 245L, (short)1, "https://filters.adtidy.org/android/filters/11.txt" }, + { 163L, 246L, (short)1, "https://filters.adtidy.org/extension/chromium/filters/7.txt" }, + { 164L, 247L, (short)1, "https://filters.adtidy.org/extension/chromium/filters/6.txt" }, + { 165L, 248L, (short)1, "https://filters.adtidy.org/extension/chromium/filters/5.txt" }, + { 166L, 249L, (short)1, "https://filters.adtidy.org/extension/chromium/filters/2.txt" }, + { 167L, 250L, (short)1, "https://filters.adtidy.org/extension/chromium/filters/8.txt" }, + { 168L, 251L, (short)1, "https://filters.adtidy.org/windows/filters/15.txt" }, + { 169L, 252L, (short)1, "https://filters.adtidy.org/extension/chromium/filters/14.txt" }, + { 170L, 253L, (short)1, "https://hg.adblockplus.org/adwarefilters/raw-file/tip/adwarefilters.txt" }, + { 171L, 254L, (short)1, "https://dl.dropboxusercontent.com/s/1ybzw9lb7m1qiyl/AAs.txt" }, + { 173L, 255L, (short)1, "http://rlwpx.free.fr/WPFF/hmis.7z" }, + { 175L, 256L, (short)1, "https://raw.githubusercontent.com/r4vi/block-the-eu-cookie-shit-list/master/filterlist.txt" }, + { 175L, 257L, (short)2, "https://gitcdn.xyz/repo/r4vi/block-the-eu-cookie-shit-list/master/filterlist.txt" }, + { 175L, 258L, (short)3, "https://rawcdn.githack.com/r4vi/block-the-eu-cookie-shit-list/master/filterlist.txt" }, + { 176L, 259L, (short)1, "https://raw.githubusercontent.com/anarki999/Adblock-List-Archive/master/Better.fyiTrackersBlocklist.txt" }, + { 176L, 260L, (short)2, "https://gitcdn.xyz/repo/anarki999/Adblock-List-Archive/master/Better.fyiTrackersBlocklist.txt" }, + { 176L, 261L, (short)3, "https://rawcdn.githack.com/anarki999/Adblock-List-Archive/master/Better.fyiTrackersBlocklist.txt" }, + { 177L, 262L, (short)1, "https://paulgb.github.io/BarbBlock/blacklists/hosts-file.txt" }, + { 178L, 263L, (short)1, "https://raw.githubusercontent.com/rebelion76/bankiru_plus_adblock_list/master/bankiru_plus.txt" }, + { 178L, 264L, (short)2, "https://gitcdn.xyz/repo/rebelion76/bankiru_plus_adblock_list/master/bankiru_plus.txt" }, + { 178L, 265L, (short)3, "https://rawcdn.githack.com/rebelion76/bankiru_plus_adblock_list/master/bankiru_plus.txt" }, + { 179L, 266L, (short)1, "https://www.hostsfile.org/Downloads/hosts.txt" }, + { 181L, 267L, (short)1, "http://git.sourceforge.jp/view?p=ayucat-list/ayucat-list.git;a=blob_plain;f=ayucat-list.txt;hb=b254c74c132832a3ade7b9d42c2ef8d3dd59fdb9" }, + { 181L, 268L, (short)2, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Ayucat Powerful List.txt" }, + { 183L, 269L, (short)1, "https://raw.githubusercontent.com/Yhonay/antipopads/master/popads.txt" }, + { 183L, 270L, (short)2, "https://gitcdn.xyz/repo/Yhonay/antipopads/master/popads.txt" }, + { 183L, 271L, (short)3, "https://rawcdn.githack.com/Yhonay/antipopads/master/popads.txt" }, + { 184L, 272L, (short)1, "https://fanboy.co.nz/fanboy-antifacebook.txt" }, + { 185L, 273L, (short)1, "http://rlwpx.free.fr/WPFF/hblc.7z" }, + { 186L, 274L, (short)1, "http://rlwpx.free.fr/WPFF/hrsk.7z" }, + { 186L, 275L, (short)2, "https://v.firebog.net/hosts/Airelle-hrsk.txt" }, + { 187L, 276L, (short)1, "http://rlwpx.free.fr/WPFF/htrc.7z" }, + { 187L, 277L, (short)2, "https://v.firebog.net/hosts/Airelle-trc.txt" }, + { 188L, 278L, (short)1, "http://rlwpx.free.fr/WPFF/hsex.7z" }, + { 189L, 279L, (short)1, "http://rlwpx.free.fr/WPFF/hpub.7z" }, + { 190L, 280L, (short)1, "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.Spam/hosts" }, + { 190L, 281L, (short)2, "https://gitcdn.xyz/repo/FadeMind/hosts.extras/master/add.Spam/hosts" }, + { 190L, 282L, (short)3, "https://gitcdn.link/repo/FadeMind/hosts.extras/master/add.Spam/hosts" }, + { 191L, 283L, (short)1, "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.Risk/hosts" }, + { 191L, 284L, (short)2, "https://gitcdn.xyz/repo/FadeMind/hosts.extras/master/add.Risk/hosts" }, + { 191L, 285L, (short)3, "https://gitcdn.link/repo/FadeMind/hosts.extras/master/add.Risk/hosts" }, + { 192L, 286L, (short)1, "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.Dead/hosts" }, + { 192L, 287L, (short)2, "https://gitcdn.xyz/repo/FadeMind/hosts.extras/master/add.Dead/hosts" }, + { 192L, 288L, (short)3, "https://gitcdn.link/repo/FadeMind/hosts.extras/master/add.Dead/hosts" }, + { 197L, 289L, (short)1, "https://easylist-downloads.adblockplus.org/abpindo+easylist.txt" }, + { 198L, 290L, (short)1, "https://raw.githubusercontent.com/ABPindo/indonesianadblockrules/master/subscriptions/abpindo.txt" }, + { 198L, 291L, (short)2, "https://raw.githubusercontent.com/heradhis/indonesianadblockrules/master/subscriptions/abpindo.txt" }, + { 198L, 292L, (short)3, "https://gitcdn.xyz/repo/ABPindo/indonesianadblockrules/master/subscriptions/abpindo.txt" }, + { 198L, 2580L, (short)4, "https://gitlab.com/ABPindo/indonesianadblockrules/raw/master/subscriptions/abpindo.txt" }, + { 199L, 293L, (short)1, "https://raw.githubusercontent.com/gioxx/xfiles/master/facebook.txt" }, + { 199L, 294L, (short)2, "https://gitcdn.xyz/repo/gioxx/xfiles/master/facebook.txt" }, + { 199L, 295L, (short)3, "https://rawcdn.githack.com/gioxx/xfiles/master/facebook.txt" }, + { 200L, 296L, (short)1, "https://raw.githubusercontent.com/gioxx/xfiles/master/siteblock.txt" }, + { 200L, 297L, (short)2, "https://gitcdn.xyz/repo/gioxx/xfiles/master/siteblock.txt" }, + { 200L, 298L, (short)3, "https://rawcdn.githack.com/gioxx/xfiles/master/siteblock.txt" }, + { 201L, 299L, (short)1, "https://raw.githubusercontent.com/gioxx/xfiles/master/filtri.txt" }, + { 201L, 300L, (short)2, "https://gitcdn.xyz/repo/gioxx/xfiles/master/filtri.txt" }, + { 201L, 301L, (short)3, "https://rawcdn.githack.com/gioxx/xfiles/master/filtri.txt" }, + { 202L, 302L, (short)1, "https://raw.githubusercontent.com/k2jp/abp-japanese-filters/master/abpjf_paranoid.txt" }, + { 202L, 303L, (short)2, "https://gitcdn.xyz/repo/k2jp/abp-japanese-filters/master/abpjf_paranoid.txt" } }); migrationBuilder.InsertData( table: "filter_list_view_urls", - columns: new[] { "id", "filter_list_id", "primariness", "url" }, + columns: new[] { "filter_list_id", "id", "primariness", "url" }, values: new object[,] { - { 305L, 203L, (short)1, "https://raw.githubusercontent.com/k2jp/abp-japanese-filters/master/abpjf.txt" }, - { 306L, 203L, (short)2, "https://gitcdn.xyz/repo/k2jp/abp-japanese-filters/master/abpjf.txt" }, - { 307L, 203L, (short)3, "https://rawcdn.githack.com/k2jp/abp-japanese-filters/master/abpjf.txt" }, - { 308L, 204L, (short)1, "https://raw.githubusercontent.com/k2jp/abp-japanese-filters/master/abpjf_element_hiding.txt" }, - { 309L, 204L, (short)2, "https://gitcdn.xyz/repo/k2jp/abp-japanese-filters/master/abpjf_element_hiding.txt" }, - { 310L, 204L, (short)3, "https://rawcdn.githack.com/k2jp/abp-japanese-filters/master/abpjf_element_hiding.txt" }, - { 311L, 205L, (short)1, "https://raw.githubusercontent.com/k2jp/abp-japanese-filters/master/abpjf_3rd_party_sns.txt" }, - { 312L, 205L, (short)2, "https://gitcdn.xyz/repo/k2jp/abp-japanese-filters/master/abpjf_3rd_party_sns.txt" }, - { 313L, 205L, (short)3, "https://rawcdn.githack.com/k2jp/abp-japanese-filters/master/abpjf_3rd_party_sns.txt" }, - { 314L, 206L, (short)1, "https://raw.githubusercontent.com/abpvn/abpvn/master/filter/abpvn.txt" }, - { 315L, 206L, (short)2, "https://gitcdn.xyz/repo/abpvn/abpvn/master/filter/abpvn.txt" }, - { 316L, 206L, (short)3, "https://rawcdn.githack.com/abpvn/abpvn/master/filter/abpvn.txt" }, - { 317L, 207L, (short)1, "https://raw.githubusercontent.com/reek/anti-adblock-killer/master/anti-adblock-killer-filters.txt" }, - { 318L, 207L, (short)2, "https://gitcdn.xyz/repo/reek/anti-adblock-killer/master/anti-adblock-killer-filters.txt" }, - { 319L, 207L, (short)3, "https://rawcdn.githack.com/reek/anti-adblock-killer/master/anti-adblock-killer-filters.txt" }, - { 320L, 212L, (short)1, "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.2o7Net/hosts" }, - { 321L, 212L, (short)2, "https://gitcdn.xyz/repo/FadeMind/hosts.extras/master/add.2o7Net/hosts" }, - { 322L, 212L, (short)3, "https://gitcdn.link/repo/FadeMind/hosts.extras/master/add.2o7Net/hosts" }, - { 323L, 213L, (short)1, "https://raw.githubusercontent.com/kbinani/adblock-youtube-ads/master/signed.txt" }, - { 324L, 213L, (short)2, "https://gitcdn.xyz/repo/kbinani/adblock-youtube-ads/master/signed.txt" }, - { 325L, 213L, (short)3, "https://rawcdn.githack.com/kbinani/adblock-youtube-ads/master/signed.txt" }, - { 326L, 214L, (short)1, "https://easylist-msie.adblockplus.org/antiadblockfilters.txt" }, - { 327L, 215L, (short)1, "https://raw.githubusercontent.com/adblockpolska/Adblock_PL_List/master/adblock_polska.txt" }, - { 328L, 215L, (short)2, "https://gitcdn.xyz/repo/adblockpolska/Adblock_PL_List/master/adblock_polska.txt" }, - { 329L, 215L, (short)3, "https://rawcdn.githack.com/adblockpolska/Adblock_PL_List/master/adblock_polska.txt" }, - { 330L, 216L, (short)1, "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/adblock_social_filters/adblock_social_list.txt" }, - { 331L, 216L, (short)2, "https://gitcdn.xyz/repo/MajkiIT/polish-ads-filter/master/adblock_social_filters/adblock_social_list.txt" }, - { 332L, 216L, (short)3, "https://rawcdn.githack.com/MajkiIT/polish-ads-filter/master/adblock_social_filters/adblock_social_list.txt" }, - { 333L, 217L, (short)1, "https://ideone.com/plain/K452p" }, - { 334L, 220L, (short)1, "https://web.archive.org/web/20160411115130if_/http://adblock-korea.googlecode.com:80/git/adblock-korea.txt" }, - { 335L, 221L, (short)1, "https://gurud.ee/ab.txt" }, - { 336L, 222L, (short)1, "https://raw.githubusercontent.com/SlashArash/adblockfa/master/adblockfa.txt" }, - { 337L, 222L, (short)2, "https://gitcdn.xyz/repo/SlashArash/adblockfa/master/adblockfa.txt" }, - { 338L, 222L, (short)3, "https://rawcdn.githack.com/SlashArash/adblockfa/master/adblockfa.txt" }, - { 339L, 223L, (short)1, "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock.txt" }, - { 340L, 223L, (short)2, "https://gitcdn.xyz/repo/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock.txt" }, - { 341L, 223L, (short)3, "https://rawcdn.githack.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock.txt" }, - { 342L, 224L, (short)1, "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/cookies_filters/adblock_cookies.txt" }, - { 343L, 224L, (short)2, "https://gitcdn.xyz/repo/MajkiIT/polish-ads-filter/master/cookies_filters/adblock_cookies.txt" }, - { 344L, 224L, (short)3, "https://rawcdn.githack.com/MajkiIT/polish-ads-filter/master/cookies_filters/adblock_cookies.txt" }, - { 345L, 225L, (short)1, "https://sites.google.com/site/logroid/files/hosts.txt?attredirects=0" }, - { 346L, 226L, (short)1, "https://adaway.org/hosts.txt" }, - { 347L, 227L, (short)1, "https://easylist-downloads.adblockplus.org/exceptionrules.txt" }, - { 348L, 228L, (short)1, "https://raw.githubusercontent.com/farrokhi/adblock-iran/master/filter.txt" }, - { 349L, 228L, (short)2, "https://rawcdn.githack.com/farrokhi/adblock-iran/master/filter.txt" }, - { 351L, 229L, (short)1, "https://hg.adblockplus.org/youtubefilters/raw-file/default/yt_annoyances_comments.txt" }, - { 352L, 232L, (short)1, "https://raw.githubusercontent.com/ryanbr/fanboy-adblock/master/fake-news.txt" }, - { 354L, 233L, (short)1, "https://hg.adblockplus.org/facebookfilters/raw-file/default/fb_annoyances_sidebar.txt" }, - { 355L, 234L, (short)1, "http://www.squirrelconspiracy.net/abp/facebook-privacy-list.txt" }, - { 356L, 234L, (short)2, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Facebook Privacy List.txt" }, - { 358L, 235L, (short)1, "https://hg.adblockplus.org/facebookfilters/raw-file/default/fb_annoyances_newsfeed.txt" }, - { 360L, 236L, (short)1, "https://hg.adblockplus.org/facebookfilters/raw-file/default/fb_annoyances_full.txt" }, - { 361L, 237L, (short)1, "https://adblock.ee/list.php" }, - { 362L, 238L, (short)1, "https://www.ebates.com/whitelist/ebates-cash-back-shopping.txt" }, - { 363L, 239L, (short)1, "https://easylist-downloads.adblockplus.org/easytest.txt" }, - { 364L, 240L, (short)1, "https://easylist-downloads.adblockplus.org/easyprivacy_nointernational.txt" }, - { 365L, 241L, (short)1, "https://easylist-downloads.adblockplus.org/easyprivacy+easylist.txt" }, - { 366L, 242L, (short)1, "https://easylist.to/easylist/easyprivacy.txt" }, - { 367L, 242L, (short)2, "https://fanboy.co.nz/easyprivacy.txt" }, - { 368L, 242L, (short)3, "https://easylist-downloads.adblockplus.org/easyprivacy.txt" }, - { 369L, 243L, (short)1, "https://easylist-downloads.adblockplus.org/easylist_noadult.txt" }, - { 370L, 244L, (short)1, "https://easylist-downloads.adblockplus.org/easylist_noelemhide.txt" }, - { 371L, 245L, (short)1, "https://raw.githubusercontent.com/easylist-thailand/easylist-thailand/master/subscription/easylist-thailand.txt" }, - { 372L, 246L, (short)1, "https://easylist-downloads.adblockplus.org/easylistspanish.txt" }, - { 373L, 247L, (short)1, "https://easylist-downloads.adblockplus.org/fanboy-annoyance.txt" }, - { 374L, 247L, (short)2, "https://fanboy.co.nz/fanboy-annoyance.txt" }, - { 375L, 247L, (short)3, "https://easylist.to/easylist/fanboy-annoyance.txt" }, - { 376L, 248L, (short)1, "https://easylist-downloads.adblockplus.org/easylistlithuania+easylist.txt" }, - { 377L, 249L, (short)1, "https://fanboy.co.nz/fanboy-antifonts.txt" }, - { 378L, 250L, (short)1, "https://easylist-downloads.adblockplus.org/easylist-cookie.txt" }, - { 380L, 251L, (short)1, "https://raw.githubusercontent.com/mozillahispano/nauscopio-filtros/master/filtros.txt" }, - { 381L, 252L, (short)1, "https://filtri-dns.ga/filtri.txt" }, - { 382L, 253L, (short)1, "https://raw.githubusercontent.com/hant0508/uBlock-filters/master/filters.txt" }, - { 383L, 254L, (short)1, "https://fanboy.co.nz/fanboy-vietnam.txt" }, - { 384L, 255L, (short)1, "https://fanboy.co.nz/r/fanboy-ultimate.txt" }, - { 385L, 256L, (short)1, "https://fanboy.co.nz/fanboy-turkish.txt" }, - { 386L, 257L, (short)1, "https://fanboy.co.nz/fanboy-swedish.txt" }, - { 387L, 258L, (short)1, "https://fanboy.co.nz/fanboy-espanol.txt" }, - { 388L, 259L, (short)1, "https://easylist-downloads.adblockplus.org/fanboy-social.txt" }, - { 389L, 259L, (short)2, "https://fanboy.co.nz/fanboy-social.txt" }, - { 390L, 260L, (short)1, "https://fanboy.co.nz/fanboy-polish.txt" }, - { 391L, 261L, (short)1, "https://fanboy.co.nz/fanboy-korean.txt" }, - { 392L, 262L, (short)1, "https://fanboy.co.nz/fanboy-japanese.txt" }, - { 393L, 263L, (short)1, "https://fanboy.co.nz/israelilist/IsraelList.txt" }, - { 394L, 264L, (short)1, "https://fanboy.co.nz/fanboy-indian.txt" }, - { 395L, 265L, (short)1, "https://fanboy.co.nz/enhancedstats.txt" }, - { 396L, 266L, (short)1, "https://fanboy.co.nz/r/fanboy-complete.txt" }, - { 397L, 267L, (short)1, "https://raw.githubusercontent.com/EasyList-Lithuania/easylist_lithuania/master/easylistlithuania.txt" }, - { 398L, 268L, (short)1, "https://raw.githubusercontent.com/cjx82630/cjxlist/master/cjxlist.txt" }, - { 399L, 268L, (short)2, "https://gitee.com/cjx82630/cjxlist/raw/master/cjxlist.txt" }, - { 400L, 269L, (short)1, "https://easylist-downloads.adblockplus.org/easylistitaly+easylist.txt" }, - { 403L, 272L, (short)1, "https://s3.amazonaws.com/lists.disconnect.me/simple_tracking.txt" }, - { 404L, 274L, (short)1, "https://s3.amazonaws.com/lists.disconnect.me/simple_malvertising.txt" }, - { 405L, 275L, (short)1, "https://s3.amazonaws.com/lists.disconnect.me/simple_ad.txt" }, - { 406L, 276L, (short)1, "https://someonewhocares.org/hosts/zero/hosts" }, - { 407L, 276L, (short)2, "https://raw.githubusercontent.com/StevenBlack/hosts/master/data/someonewhocares.org/hosts" }, - { 408L, 277L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Czech Filters for Adblock Plus" }, - { 409L, 278L, (short)1, "https://raw.githubusercontent.com/nicedirector/ADBlock/master/Adblock_Filter.txt" }, - { 410L, 279L, (short)1, "https://www.eff.org/files/cookieblocklist.txt" }, - { 411L, 280L, (short)1, "https://raw.githubusercontent.com/cpeterso/clickbait-blocklist/master/clickbait-blocklist.txt" }, - { 412L, 281L, (short)1, "https://raw.githubusercontent.com/cjx82630/cjxlist/master/cjx-annoyance.txt" }, - { 413L, 281L, (short)2, "https://gitee.com/cjx82630/cjxlist/raw/master/cjx-annoyance.txt" }, - { 414L, 282L, (short)1, "https://sysctl.org/cameleon/hosts" }, - { 415L, 283L, (short)1, "https://easylist-downloads.adblockplus.org/bulgarian_list+easylist.txt" }, - { 416L, 284L, (short)1, "https://stanev.org/abp/adblock_bg.txt" }, - { 417L, 285L, (short)1, "http://malwaredomains.lehigh.edu/files/dynamic_dns.txt" }, - { 422L, 288L, (short)1, "http://malwaredomains.lehigh.edu/files/immortal_domains.txt" }, - { 424L, 289L, (short)1, "https://easylist-downloads.adblockplus.org/easylistitaly.txt" }, - { 425L, 290L, (short)1, "https://easylist-downloads.adblockplus.org/israellist+easylist.txt" }, - { 426L, 291L, (short)1, "https://raw.githubusercontent.com/easylist/EasyListHebrew/master/EasyListHebrew.txt" }, - { 427L, 292L, (short)1, "https://easylist-downloads.adblockplus.org/easylistgermany+easylist.txt" }, - { 428L, 293L, (short)1, "https://easylist-downloads.adblockplus.org/easylistgermany.txt" }, - { 429L, 293L, (short)2, "https://easylist.to/easylistgermany/easylistgermany.txt" }, - { 430L, 294L, (short)1, "https://easylist-downloads.adblockplus.org/easylistdutch+easylist.txt" }, - { 431L, 295L, (short)1, "https://easylist-downloads.adblockplus.org/easylistdutch.txt" }, - { 432L, 297L, (short)1, "https://easylist-downloads.adblockplus.org/easylistczechslovak+easylist.txt" }, - { 433L, 298L, (short)1, "https://raw.githubusercontent.com/nfer/easylistchina_it/master/easylistchina_it.txt" }, - { 434L, 299L, (short)1, "https://easylist-downloads.adblockplus.org/easylistchina+easylist.txt" }, - { 435L, 300L, (short)1, "https://easylist-downloads.adblockplus.org/easylistchina.txt" }, - { 436L, 301L, (short)1, "https://easylist.to/easylist/easylist.txt" }, - { 437L, 301L, (short)2, "https://fanboy.co.nz/easylist.txt" }, - { 438L, 301L, (short)3, "https://easylist-downloads.adblockplus.org/easylist.txt" }, - { 439L, 302L, (short)1, "https://feeds.dshield.org/block.txt" }, - { 442L, 305L, (short)1, "https://raw.githubusercontent.com/tomasko126/easylistczechandslovak/master/filters.txt" }, - { 444L, 306L, (short)1, "https://hg.adblockplus.org/youtubefilters/raw-file/default/yt_annoyances_suggestions.txt" }, - { 445L, 307L, (short)1, "https://raw.githubusercontent.com/taylr/linkedinsanity/master/spies-dislike-us.txt" }, - { 446L, 308L, (short)1, "https://raw.githubusercontent.com/hoshsadiq/adblock-nocoin-list/master/hosts.txt" }, - { 447L, 309L, (short)1, "https://raw.githubusercontent.com/badmojr/1Hosts/master/complete/hosts.txt" }, - { 448L, 311L, (short)1, "https://raw.githubusercontent.com/elypter/generic_annoying_stickybar_filter/master/generic_header_list.txt" }, - { 449L, 312L, (short)1, "https://raw.githubusercontent.com/elypter/filter_processor/master/generated_filterlists/blockhead(decoy_generic_extraction).txt" }, - { 450L, 313L, (short)1, "https://raw.githubusercontent.com/elypter/filter_processor/master/generated_filterlists/blockhead(decoy_generic_selection).txt" }, - { 451L, 315L, (short)1, "https://alleblock.pl/alleblock/alleblock.txt" }, - { 452L, 316L, (short)1, "https://raw.githubusercontent.com/bkrucarci/turk-adlist/master/hosts" }, - { 453L, 317L, (short)1, "https://raw.githubusercontent.com/anudeepND/blacklist/master/adservers.txt" }, - { 454L, 318L, (short)1, "https://raw.githubusercontent.com/anudeepND/blacklist/master/CoinMiner.txt" }, - { 455L, 319L, (short)1, "https://raw.githubusercontent.com/anudeepND/youtubeadsblacklist/master/domainlist.txt" }, - { 456L, 320L, (short)1, "https://raw.githubusercontent.com/anudeepND/youtubeadsblacklist/master/hosts.txt" }, - { 457L, 321L, (short)1, "https://raw.githubusercontent.com/anudeepND/whitelist/master/domains/whitelist.txt" }, - { 458L, 322L, (short)1, "https://raw.githubusercontent.com/anudeepND/whitelist/master/domains/referral-sites.txt" }, - { 459L, 323L, (short)1, "https://raw.githubusercontent.com/anudeepND/whitelist/master/domains/optional-list.txt" }, - { 460L, 324L, (short)1, "https://raw.githubusercontent.com/arcetera/Minimal-Hosts-Blocker/master/etc/MinimalHostsBlocker/minimalhosts" }, - { 461L, 325L, (short)1, "https://raw.githubusercontent.com/bjornstar/hosts/master/hosts" }, - { 462L, 327L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/stayingonbrowser/Staying On The Phone Browser" }, - { 463L, 327L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/stayingonbrowser/Staying On The Phone Browser" }, - { 464L, 329L, (short)1, "https://raw.githubusercontent.com/VeleSila/yhosts/master/hosts.txt" }, - { 465L, 330L, (short)1, "https://raw.githubusercontent.com/kowith337/ThaiConsentHosts/master/ThaiConsentHosts.txt" }, - { 466L, 330L, (short)2, "https://gitlab.com/kowith337/ThaiConsentHosts/raw/master/ThaiConsentHosts.txt" }, - { 467L, 331L, (short)1, "https://raw.githubusercontent.com/kowith337/ThaiParanoidBlock/master/ThaiParanoid.txt" }, - { 468L, 331L, (short)2, "https://gitlab.com/kowith337/ThaiParanoidBlock/raw/master/ThaiParanoid.txt" }, - { 469L, 332L, (short)1, "https://raw.githubusercontent.com/kowith337/ThaiAntiForceLike/master/AntiForceLike.txt" }, - { 470L, 333L, (short)1, "https://raw.githubusercontent.com/pureexe/LeeCh-List/master/anime.txt" }, - { 471L, 334L, (short)1, "https://warui.intaa.net/adhosts/hosts.txt" }, - { 472L, 335L, (short)1, "https://raw.githubusercontent.com/multiverse2011/adawaylist-jp/master/hosts" }, - { 473L, 336L, (short)1, "https://sites.google.com/site/cosmonoteshosts/hosts_for_Windows8.txt" }, - { 474L, 337L, (short)1, "https://sites.google.com/site/cosmonoteshosts/hosts_for_Adaway.txt" }, - { 475L, 338L, (short)1, "https://sites.google.com/site/cosmonoteshosts/hosts_Ultimate.txt" }, - { 476L, 339L, (short)1, "https://raw.githubusercontent.com/Lerist/Go-Hosts/master/hosts-ad" }, - { 477L, 340L, (short)1, "https://raw.githubusercontent.com/Lerist/Go-Hosts/master/hosts" }, - { 478L, 341L, (short)1, "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/adblock_social_filters/social_filters_uB_AG.txt" }, - { 480L, 343L, (short)1, "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/cookies_filters/cookies_uB_AG.txt" }, - { 482L, 345L, (short)1, "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock_adguard.txt" }, - { 483L, 346L, (short)1, "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock_test.txt" }, - { 484L, 347L, (short)1, "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-pihole-filters/hostfile.txt" }, - { 485L, 348L, (short)1, "http://vxvault.net/URL_List.php" }, - { 486L, 349L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/KADhosts/master/KADhosts_without_controversies.txt" }, - { 487L, 349L, (short)2, "https://gitcdn.xyz/repo/FiltersHeroes/KADhosts/master/KADhosts_without_controversies.txt" }, - { 488L, 349L, (short)3, "https://rawcdn.githack.com/FiltersHeroes/KADhosts/master/KADhosts_without_controversies.txt" }, - { 489L, 350L, (short)1, "https://filters.adtidy.org/extension/chromium/filters/16.txt" }, - { 490L, 352L, (short)1, "https://raw.githubusercontent.com/eladkarako/hosts/master/build/hosts_adblock.txt" }, - { 491L, 353L, (short)1, "https://raw.githubusercontent.com/eladkarako/hosts/master/build/hosts_adblock_anti_annoyances_block.txt" }, - { 492L, 354L, (short)1, "https://raw.githubusercontent.com/eladkarako/hosts/master/build/hosts_adblock_anti_annoyances_block_inline_script.txt" }, - { 493L, 355L, (short)1, "https://raw.githubusercontent.com/eladkarako/hosts/master/build/hosts_adblock_anti_annoyances_hide.txt" }, - { 494L, 356L, (short)1, "https://raw.githubusercontent.com/eladkarako/hosts/master/build/hosts_adblock_anti_annoyances_style_inject.txt" }, - { 495L, 357L, (short)1, "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/list.txt" }, - { 496L, 358L, (short)1, "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/list_optional.txt" }, - { 497L, 359L, (short)1, "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/list_browser.txt" }, - { 498L, 360L, (short)1, "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/hosts" }, - { 499L, 361L, (short)1, "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/hosts_optional" }, - { 500L, 362L, (short)1, "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/hosts_browser" }, - { 501L, 363L, (short)1, "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/list_browser_UBO.txt" }, - { 502L, 367L, (short)1, "https://raw.githubusercontent.com/uMatrix-Rules/uMatrix-Rules-Domain/master/rules.txt" }, - { 503L, 368L, (short)1, "https://raw.githubusercontent.com/uMatrix-Rules/uMatrix-Rules-Site/master/rules.txt" }, - { 504L, 369L, (short)1, "https://raw.githubusercontent.com/tomasko126/easylistczechandslovak/master/filters_ublock.txt" }, - { 505L, 370L, (short)1, "https://easylist-msie.adblockplus.org/easylistczechslovak+easylist.tpl" }, - { 506L, 371L, (short)1, "https://raw.githubusercontent.com/AFNIL-AntiFakeNewsInternationalList/AFNIL/master/AFNIL-ABP-uBO.txt" }, - { 507L, 372L, (short)1, "https://raw.githubusercontent.com/Hubird-au/Adversity/master/Adversity.txt" }, - { 508L, 373L, (short)1, "https://raw.githubusercontent.com/Hubird-au/Adversity/master/Antisocial.txt" }, - { 509L, 374L, (short)1, "https://raw.githubusercontent.com/Hubird-au/Adversity/master/Extreme-Measures.txt" }, - { 510L, 375L, (short)1, "https://raw.githubusercontent.com/hl2guide/All-in-One-Customized-Adblock-List/master/aio.txt" }, - { 511L, 376L, (short)1, "https://raw.githubusercontent.com/haykam821/Blocklists/master/mmo.txt" }, - { 512L, 377L, (short)1, "https://raw.githubusercontent.com/cb-software/CB-Malicious-Domains/master/block_lists/adblock_plus.txt" }, - { 513L, 378L, (short)1, "https://raw.githubusercontent.com/cb-software/CB-Malicious-Domains/master/block_lists/hosts" }, - { 514L, 379L, (short)1, "https://gist.githubusercontent.com/gorhill/ef1b62d606473c68d524/raw/f8181faac18cb5172c7c9bca8e5a3b22f0c925d0/gistfile1.txt" }, - { 515L, 380L, (short)1, "https://raw.githubusercontent.com/toshiya44/myAssets/master/filters-exp.txt" }, - { 516L, 381L, (short)1, "https://rickrolldb.com/ricklist.txt" }, - { 517L, 383L, (short)1, "https://austinhuang.me/0131-block-list/list.txt" }, - { 518L, 385L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Username Hider for Compilation Creators.txt" }, - { 519L, 385L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Username Hider for Compilation Creators.txt" }, - { 520L, 388L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/DandelionSproutsNorskeFiltre.tpl" }, - { 521L, 388L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/DandelionSproutsNorskeFiltre.tpl" }, - { 522L, 390L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/PolishAntiAnnoyingSpecialSupplement/master/polish_rss_filters.txt" }, - { 523L, 391L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/IHateOverpromotedGames.txt" }, - { 524L, 391L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/IHateOverpromotedGames.txt" }, - { 525L, 392L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/BrowseWebsitesWithoutLoggingIn.txt" }, - { 526L, 392L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/BrowseWebsitesWithoutLoggingIn.txt" }, - { 527L, 393L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Dandelion Sprout-s Redirector Assistant List/DandelionSproutRedirectorList.json" }, - { 528L, 393L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Dandelion Sprout-s Redirector Assistant List/DandelionSproutRedirectorList.json" }, - { 529L, 395L, (short)1, "https://raw.githubusercontent.com/raghavdua1995/DNSlock-PiHole-whitelist/master/whitelist.list" }, - { 530L, 396L, (short)1, "https://raw.githubusercontent.com/NanoAdblocker/NanoFilters/master/NanoFilters/NanoBase.txt" }, - { 531L, 397L, (short)1, "https://raw.githubusercontent.com/NanoAdblocker/NanoFilters/master/NanoFilters/NanoWhitelist.txt" }, - { 532L, 398L, (short)1, "https://raw.githubusercontent.com/NanoAdblocker/NanoFilters/master/NanoFilters/NanoAnnoyance.txt" }, - { 533L, 399L, (short)1, "https://raw.githubusercontent.com/lassekongo83/Frellwits-filter-lists/master/Frellwits-Swedish-Filter.txt" }, - { 534L, 399L, (short)2, "https://repo.or.cz/Adblock-list-backups-Frellwits-filter-lists.git/blob_plain/refs/heads/master:/Frellwits-Swedish-Filter.txt" }, - { 535L, 400L, (short)1, "https://raw.githubusercontent.com/notracking/hosts-blocklists/master/domains.txt" }, - { 536L, 401L, (short)1, "https://raw.githubusercontent.com/notracking/hosts-blocklists/master/hostnames.txt" }, - { 537L, 403L, (short)1, "https://raw.githubusercontent.com/lassekongo83/Frellwits-filter-lists/master/emoji-filter.txt" }, - { 538L, 403L, (short)2, "https://repo.or.cz/Adblock-list-backups-Frellwits-filter-lists.git/blob_plain/refs/heads/master:/emoji-filter.txt" }, - { 539L, 405L, (short)1, "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/annoyances.txt" }, - { 540L, 410L, (short)1, "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/resource-abuse.txt" }, - { 541L, 412L, (short)1, "https://gist.githubusercontent.com/BBcan177/d7105c242f17f4498f81/raw/201968fa11b1f409d408a129a0774ffedb1560e2/MS-3" }, - { 542L, 413L, (short)1, "https://gist.githubusercontent.com/BBcan177/b6df57cef74e28d90acf1eec93d62d3b/raw/f0996cf5248657ada2adb396f3636be8716b99eb/MS-4" }, - { 543L, 414L, (short)1, "https://gist.githubusercontent.com/BBcan177/4a8bf37c131be4803cb2/raw/343ff780e15205b4dd0de37c86af34cfb26b2fbe/MS-2" }, - { 544L, 415L, (short)1, "https://gist.githubusercontent.com/BBcan177/bf29d47ea04391cb3eb0/raw/7290e0681bcd07415420b5c80a253652fd13f840/MS-1" }, - { 545L, 416L, (short)1, "https://gist.githubusercontent.com/BBcan177/2a9fc2548c3c5a5e2dc86e580b5795d2/raw/2f5c90ffb3bd02199ace1b16a0bd9f53b29f0879/EasyList_DE" }, - { 546L, 417L, (short)1, "https://raw.githubusercontent.com/matomo-org/referrer-spam-blacklist/master/spammers.txt" }, - { 547L, 418L, (short)1, "https://raw.githubusercontent.com/desbma/referer-spam-domains-blacklist/master/spammers.txt" }, - { 548L, 419L, (short)1, "https://www.joewein.net/dl/bl/dom-bl-base.txt" }, - { 549L, 420L, (short)1, "https://www.joewein.net/dl/bl/from-bl.txt" }, - { 550L, 421L, (short)1, "https://gitlab.com/Kurobeats/phishing_hosts/raw/master/hosts" }, - { 551L, 422L, (short)1, "https://raw.githubusercontent.com/ligyxy/Blocklist/master/BLOCKLIST" }, - { 552L, 424L, (short)1, "https://gist.githubusercontent.com/MOxFIVE/4730cac715ef406bd8eac7b29335be4a/raw/d21fa08e97963edde372d0d3e50703c783c9c32e/Personal%2520Blocklist.txt" }, - { 553L, 425L, (short)1, "https://raw.githubusercontent.com/nabble/semalt-blocker/master/domains/blocked" }, - { 554L, 426L, (short)1, "https://osint.bambenekconsulting.com/feeds/c2-ipmasterlist.txt" }, - { 555L, 427L, (short)1, "http://phishing.mailscanner.info/phishing.bad.sites.conf" }, - { 556L, 428L, (short)1, "https://www.threatcrowd.org/feeds/domains.txt" }, - { 557L, 429L, (short)1, "https://raw.githubusercontent.com/betterwebleon/international-list/master/filters.txt" }, - { 558L, 430L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/AdawayHosts" }, - { 559L, 430L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/AdawayHosts" }, - { 560L, 431L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Dandelion Sprout's Website Stretcher.txt" }, - { 561L, 431L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Dandelion Sprout%27s Website Stretcher.txt" }, - { 562L, 432L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-FіМ List.txt" }, - { 563L, 432L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-FіМ List.txt" }, - { 564L, 433L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-IMDB List.txt" }, - { 565L, 433L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-IMDB List.txt" }, - { 566L, 434L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/StopAutoplayOnYouTube.txt" }, - { 567L, 434L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/StopAutoplayOnYouTube.txt" }, - { 568L, 435L, (short)1, "https://raw.githubusercontent.com/googlehosts/hosts/master/hosts-files/hosts" }, - { 569L, 435L, (short)2, "https://git.qvq.network/googlehosts/hosts/raw/master/hosts-files/hosts" }, - { 570L, 436L, (short)1, "https://raw.githubusercontent.com/lassekongo83/Frellwits-filter-lists/master/i-dont-want-your-app.txt" }, - { 571L, 436L, (short)2, "https://repo.or.cz/Adblock-list-backups-Frellwits-filter-lists.git/blob_plain/refs/heads/master:/i-dont-want-your-app.txt" }, - { 572L, 437L, (short)1, "https://raw.githubusercontent.com/easylistbrasil/easylistbrasil/filtro/easylistbrasil.txt" }, - { 573L, 438L, (short)1, "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/SessionReplay.txt" }, - { 574L, 439L, (short)1, "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/SmartTV.txt" }, - { 575L, 440L, (short)1, "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/android-tracking.txt" }, - { 576L, 441L, (short)1, "https://v.firebog.net/hosts/static/w3kbl.txt" }, - { 577L, 442L, (short)1, "https://v.firebog.net/hosts/BillStearns.txt" }, - { 578L, 445L, (short)1, "https://v.firebog.net/hosts/Easyprivacy.txt" }, - { 579L, 446L, (short)1, "https://v.firebog.net/hosts/Prigent-Ads.txt" }, - { 580L, 447L, (short)1, "https://gitlab.com/quidsup/notrack-blocklists/raw/master/notrack-blocklist.txt" }, - { 581L, 448L, (short)1, "https://gitlab.com/quidsup/notrack-blocklists/raw/master/notrack-malware.txt" }, - { 582L, 449L, (short)1, "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/hosts/spy.txt" }, - { 583L, 450L, (short)1, "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/hosts/update.txt" }, - { 584L, 451L, (short)1, "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/hosts/extra.txt" }, - { 585L, 465L, (short)1, "https://v.firebog.net/hosts/Shalla-mal.txt" }, - { 586L, 465L, (short)2, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Shalla-Malicious.txt" }, - { 587L, 467L, (short)1, "https://raw.githubusercontent.com/kano1/I/master/badway.txt" }, - { 588L, 468L, (short)1, "https://raw.githubusercontent.com/kano1/I/master/adware.txt" }, - { 589L, 469L, (short)1, "https://raw.githubusercontent.com/kano1/Kano/master/Spyware.txt" }, - { 590L, 470L, (short)1, "https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/firehol_level1.netset" }, - { 591L, 471L, (short)1, "https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/firehol_level2.netset" }, - { 592L, 472L, (short)1, "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/pinterest/all" }, - { 593L, 473L, (short)1, "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/cloudflare/all" }, - { 594L, 474L, (short)1, "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/facebook/all" }, - { 595L, 475L, (short)1, "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/mozilla/all" }, - { 596L, 476L, (short)1, "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/microsoft/all" }, - { 597L, 477L, (short)1, "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/google/non_localized" }, - { 598L, 478L, (short)1, "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/google/localized" }, - { 599L, 479L, (short)1, "https://easylist-downloads.adblockplus.org/easylistpolish.txt" }, - { 600L, 480L, (short)1, "https://raw.githubusercontent.com/yecarrillo/adblock-colombia/master/adblock_co.txt" }, - { 601L, 481L, (short)1, "https://block.energized.pro/spark/formats/hosts.txt" }, - { 602L, 482L, (short)1, "https://block.energized.pro/bluGo/formats/hosts.txt" }, - { 603L, 482L, (short)2, "https://block.energized.pro/bluGo/formats/hosts.txt" }, - { 604L, 483L, (short)1, "https://block.energized.pro/blu/formats/hosts.txt" }, - { 605L, 484L, (short)1, "https://block.energized.pro/basic/formats/hosts.txt" }, - { 606L, 485L, (short)1, "https://block.energized.pro/porn/formats/hosts.txt" }, - { 607L, 486L, (short)1, "https://block.energized.pro/ultimate/formats/hosts.txt" }, - { 608L, 487L, (short)1, "https://block.energized.pro/unified/formats/hosts.txt" }, - { 609L, 490L, (short)1, "https://raw.githubusercontent.com/CyanideBrother/anti-pr0n/master/hosts" }, - { 610L, 491L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/extensions/porn/clefspeare13/hosts" }, - { 611L, 492L, (short)1, "https://raw.githubusercontent.com/mhxion/pornaway/master/hosts/porn_sites.txt" }, - { 612L, 493L, (short)1, "https://raw.githubusercontent.com/mhxion/pornaway/master/hosts/porn_ads.txt" }, - { 613L, 494L, (short)1, "https://raw.githubusercontent.com/mitchellkrogza/Badd-Boyz-Hosts/master/hosts" }, - { 614L, 495L, (short)1, "https://raw.githubusercontent.com/MetaMask/eth-phishing-detect/master/src/hosts.txt" }, - { 615L, 496L, (short)1, "https://raw.githubusercontent.com/MrThreat/Confirmed-Phish/master/phish.txt" }, - { 616L, 504L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Adblock list templates/Adblock list template -Beginner-.txt" }, - { 617L, 504L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Adblock list templates/Adblock list template -Beginner-.txt" }, - { 618L, 505L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Adblock list templates/Adblock list template -Novice-.txt" }, - { 619L, 505L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Adblock list templates/Adblock list template -Novice-.txt" }, - { 620L, 506L, (short)1, "https://easylist-downloads.adblockplus.org/exceptionrules-privacy-friendly.txt" }, - { 621L, 507L, (short)1, "https://easylist-msie.adblockplus.org/easylist.tpl" }, - { 623L, 509L, (short)1, "https://raw.githubusercontent.com/endolith/clickbait/master/clickbait.txt" }, - { 624L, 510L, (short)1, "https://raw.githubusercontent.com/UnluckyLuke/BlockUnderRadarJunk/master/blockunderradarjunk-list.txt" }, - { 625L, 512L, (short)1, "https://raw.githubusercontent.com/xd4rker/MinerBlock/master/assets/filters.txt" }, - { 626L, 513L, (short)1, "https://raw.githubusercontent.com/hit3shjain/Andromeda-ublock-list/master/hosts.txt" }, - { 628L, 515L, (short)1, "https://paulgb.github.io/BarbBlock/blacklists/ublock-origin.txt" }, - { 629L, 516L, (short)1, "https://paulgb.github.io/BarbBlock/blacklists/domain-list.txt" }, - { 630L, 517L, (short)1, "https://paulgb.github.io/BarbBlock/blacklists/adblock-plus.txt" }, - { 631L, 518L, (short)1, "https://www.dshield.org/feeds/suspiciousdomains_Low.txt" }, - { 632L, 519L, (short)1, "https://www.dshield.org/feeds/suspiciousdomains_Medium.txt" }, - { 633L, 519L, (short)2, "https://isc.sans.edu/feeds/suspiciousdomains_Medium.txt" }, - { 634L, 520L, (short)1, "https://www.dshield.org/feeds/suspiciousdomains_High.txt" }, - { 635L, 521L, (short)1, "https://list.kwbt.de/kwbtlist.txt" }, - { 636L, 522L, (short)1, "https://list.kwbt.de/kwbtlist.txt" }, - { 637L, 525L, (short)1, "https://raw.githubusercontent.com/chadmayfield/my-pihole-blocklists/master/lists/pi_blocklist_porn_top1m.list" }, - { 638L, 525L, (short)2, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Chad-Mayfield-Porn-Blocklist-Light.txt" }, - { 639L, 526L, (short)1, "https://raw.githubusercontent.com/chadmayfield/my-pihole-blocklists/master/lists/pi_blocklist_porn_all.list" }, - { 640L, 526L, (short)2, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Chad-Mayfield-Porn-Blocklist-Heavy.txt" }, - { 641L, 562L, (short)1, "https://raw.githubusercontent.com/xinggsf/Adblock-Plus-Rule/master/ABP-FX.txt" }, - { 642L, 563L, (short)1, "https://raw.githubusercontent.com/andromedarabbit/List-KR/master/filter.txt" }, - { 643L, 564L, (short)1, "https://fanboy.co.nz/fanboy-problematic-sites.txt" }, - { 644L, 565L, (short)1, "https://cdn.adblockcdn.com/filters/easylist_lite.txt" }, - { 645L, 566L, (short)1, "https://easylist-msie.adblockplus.org/abp-filters-anti-cv.txt" }, - { 646L, 569L, (short)1, "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/chinese.txt" }, - { 647L, 570L, (short)1, "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/czech.txt" }, - { 648L, 573L, (short)1, "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/english.txt" }, - { 649L, 574L, (short)1, "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/french.txt" }, - { 650L, 575L, (short)1, "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/german.txt" }, - { 651L, 583L, (short)1, "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/portuguese.txt" }, - { 652L, 585L, (short)1, "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/russian.txt" }, - { 653L, 586L, (short)1, "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/spanish.txt" }, - { 654L, 589L, (short)1, "https://raw.githubusercontent.com/Sinfonietta/hostfiles/master/gambling-hosts" }, - { 655L, 590L, (short)1, "https://raw.githubusercontent.com/Sinfonietta/hostfiles/master/pornography-hosts" }, - { 656L, 591L, (short)1, "https://raw.githubusercontent.com/Sinfonietta/hostfiles/master/snuff-hosts" }, - { 657L, 592L, (short)1, "https://raw.githubusercontent.com/Sinfonietta/hostfiles/master/social-hosts" }, - { 658L, 593L, (short)1, "https://raw.githubusercontent.com/marktron/fakenews/master/fakenews" }, - { 659L, 595L, (short)1, "https://www.github.developerdan.com/hosts/lists/ads-and-tracking-extended.txt" }, - { 660L, 596L, (short)1, "https://www.github.developerdan.com/hosts/lists/tracking-aggressive-extended.txt" }, - { 661L, 598L, (short)1, "https://raw.githubusercontent.com/bigdargon/hostsVN/master/hosts" }, - { 662L, 599L, (short)1, "https://abpvn.com/android/abpvn.txt" }, - { 663L, 600L, (short)1, "https://raw.githubusercontent.com/abpvn/abpvn/master/filter/abpvn_noelemhide.txt" }, - { 664L, 601L, (short)1, "https://raw.githubusercontent.com/kowith337/ThaiAntiTokenSites/master/AntiPumpSites.txt" }, - { 665L, 601L, (short)2, "https://gitlab.com/kowith337/ThaiAntiTokenSites/raw/master/AntiPumpSites.txt" }, - { 666L, 602L, (short)1, "https://raw.githubusercontent.com/kowith337/ThaiAntiTokenSites/master/AntiPumpSites_hosts.txt" }, - { 667L, 602L, (short)2, "https://gitlab.com/kowith337/ThaiAntiTokenSites/raw/master/AntiPumpSites_hosts.txt" }, - { 668L, 603L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-Elsagate List.txt" }, - { 669L, 603L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-Elsagate List.txt" }, - { 670L, 604L, (short)1, "https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/stopforumspam_30d.ipset" }, - { 671L, 605L, (short)1, "https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/firehol_level3.netset" }, - { 672L, 606L, (short)1, "https://raw.githubusercontent.com/jerryn70/GoodbyeAds/master/Hosts/GoodbyeAds.txt" }, - { 673L, 607L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_newsletters.txt" }, - { 674L, 608L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_arrows.txt" }, - { 675L, 609L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_push.txt" }, - { 676L, 610L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_scrolling_videos.txt" }, - { 677L, 611L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_backgrounds_self-advertising.txt" }, - { 678L, 612L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_pop-ups.txt" }, - { 679L, 613L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_contact_feedback_widgets.txt" }, - { 680L, 614L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_tagged_internal_links.txt" }, - { 681L, 616L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_other_widgets.txt" }, - { 682L, 617L, (short)1, "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=hosts&showintro=1&mimetype=plaintext" }, - { 683L, 617L, (short)2, "https://raw.githubusercontent.com/StevenBlack/hosts/master/data/yoyo.org/hosts" }, - { 684L, 618L, (short)1, "https://bitbucket.org/ethanr/dns-blacklists/raw/8575c9f96e5b4a1308f2f12394abd86d0927a4a0/bad_lists/Mandiant_APT1_Report_Appendix_D.txt" }, - { 685L, 618L, (short)2, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Mandiant-APT1-Report.txt" }, - { 686L, 619L, (short)1, "https://raw.githubusercontent.com/HenningVanRaumle/pihole-ytadblock/master/ytadblock.txt" }, - { 687L, 625L, (short)1, "https://raw.githubusercontent.com/nathanaccidentally/SystemHostsBlocker/master/hosts" }, - { 688L, 626L, (short)1, "https://raw.githubusercontent.com/tyzbit/hosts/master/data/tyzbit/hosts" }, - { 689L, 628L, (short)1, "https://raw.githubusercontent.com/TakoYachty/Gift-Card-Killer/master/Untrusted Hosts Blocker.txt" }, - { 690L, 630L, (short)1, "https://v.firebog.net/hosts/AdguardDNS.txt" }, - { 691L, 631L, (short)1, "https://v.firebog.net/hosts/Prigent-Phishing.txt" }, - { 692L, 631L, (short)2, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Prigent-Phishing.txt" }, - { 693L, 632L, (short)1, "https://v.firebog.net/hosts/static/SamsungSmart.txt" }, - { 694L, 658L, (short)1, "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/filters/generic_filters.txt" }, - { 695L, 659L, (short)1, "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/filters/modal_filters.txt" }, - { 696L, 660L, (short)1, "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/filters/newsletter_filters.txt" }, - { 697L, 661L, (short)1, "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/filters/social_filters.txt" }, - { 698L, 663L, (short)1, "https://raw.githubusercontent.com/nmtrung/FMSF-2.0/master/fmsf_2.0.txt" }, - { 699L, 664L, (short)1, "https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/AdguardMobileAds.txt" }, - { 700L, 665L, (short)1, "https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/AdguardMobileSpyware.txt" }, - { 701L, 666L, (short)1, "https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/AdguardApps.txt" }, - { 702L, 667L, (short)1, "https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/AdguardDNS.txt" }, - { 703L, 668L, (short)1, "https://tgc.cloud/downloads/iOSAds.txt" }, - { 704L, 669L, (short)1, "https://tgc.cloud/downloads/hosts.txt" }, - { 705L, 670L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/LittleSnitchNorwegianList.lsrules" }, - { 706L, 670L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/LittleSnitchNorwegianList.lsrules" }, - { 707L, 671L, (short)1, "https://obdev.at/resources/littlesnitch/blocklist-example.lsrules" }, - { 708L, 672L, (short)1, "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=littlesnitch-rule-group-subscriptions;showintro=1&mimetype=plaintext" }, - { 709L, 673L, (short)1, "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=msfilter&showintro=1&mimetype=plaintext" }, - { 710L, 674L, (short)1, "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=nohtml&showintro=1&mimetype=plaintext" }, - { 711L, 675L, (short)1, "https://pgl.yoyo.org/adservers/iplist.php?ipformat=plain&showintro=1&mimetype=plaintext" }, - { 712L, 676L, (short)1, "https://pgl.yoyo.org/as/serverlist.php?hostformat=junkbuster;showintro=1&mimetype=plaintext" }, - { 713L, 677L, (short)1, "https://pgl.yoyo.org/as/serverlist.php?hostformat=adblock;showintro=1&mimetype=plaintext" }, - { 714L, 678L, (short)1, "https://gist.githubusercontent.com/sx2008/2766874/raw/c12a305decef3332663d1e04efa80b881211cfac/user.action" }, - { 715L, 679L, (short)1, "https://raw.githubusercontent.com/fdb/privoxy-config/master/block-trackers.action" }, - { 716L, 680L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/DandelionSproutsNorskeFiltreDomains.txt" }, - { 717L, 680L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/DandelionSproutsNorskeFiltreDomains.txt" }, - { 718L, 681L, (short)1, "https://www.malwaredomainlist.com/hostslist/ip.txt" }, - { 719L, 682L, (short)1, "https://malc0de.com/bl/IP_Blacklist.txt" }, - { 720L, 683L, (short)1, "http://www.urlvir.com/export-ip-addresses/" }, - { 721L, 684L, (short)1, "http://www.urlvir.com/export-hosts/" }, - { 724L, 686L, (short)1, "https://cdn.adblockcdn.com/filters/adblock_custom.txt" }, - { 725L, 687L, (short)1, "http://www.quero.at/download/adblock-hosts.zip" }, - { 726L, 689L, (short)1, "https://raw.githubusercontent.com/xxcriticxx/.pl-host-file/master/hosts.txt" }, - { 727L, 690L, (short)1, "https://raw.githubusercontent.com/mitchellkrogza/Suspicious.Snooping.Sniffing.Hacking.IP.Addresses/master/ips.list" }, - { 728L, 691L, (short)1, "https://raw.githubusercontent.com/mitchellkrogza/Top-Attacking-IP-Addresses-Against-Wordpress-Sites/master/wordpress-attacking-ips.txt" }, - { 729L, 692L, (short)1, "https://raw.githubusercontent.com/mitchellkrogza/The-Big-List-of-Hacked-Malware-Web-Sites/master/hacked-domains.list" }, - { 730L, 693L, (short)1, "https://hosts.ubuntu101.co.za/hosts" }, - { 731L, 694L, (short)1, "https://hosts.ubuntu101.co.za/domains.list" }, - { 732L, 696L, (short)1, "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/dan-pollock-someonewhocares-org.txt" }, - { 733L, 697L, (short)1, "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/mvps-hosts-file.txt" }, - { 734L, 698L, (short)1, "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/malware-domain-list.txt" }, - { 735L, 699L, (short)1, "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/nocoin.txt" }, - { 736L, 700L, (short)1, "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/easylist.txt" }, - { 737L, 703L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/KADhosts/master/KADomains.txt" }, - { 738L, 704L, (short)1, "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/steven-blacks-ad-hoc-list.txt" }, - { 739L, 705L, (short)1, "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/coinblocker.txt" }, - { 740L, 706L, (short)1, "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/add-2o7net.txt" }, - { 741L, 707L, (short)1, "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/add-dead.txt" }, - { 742L, 708L, (short)1, "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/add-risk.txt" }, - { 743L, 709L, (short)1, "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/add-spam.txt" }, - { 744L, 710L, (short)1, "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/tyzbit.txt" }, - { 745L, 710L, (short)2, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Tyzbit.txt" }, - { 746L, 711L, (short)1, "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/uncheckyads.txt" }, - { 747L, 712L, (short)1, "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/spotifyads.txt" }, - { 748L, 715L, (short)1, "https://raw.githubusercontent.com/highsea/Hosts/master/host-include-appale/hosts" }, - { 750L, 717L, (short)1, "https://raw.githubusercontent.com/superliaoyong/hosts/master/hosts" }, - { 751L, 718L, (short)1, "https://raw.githubusercontent.com/popcorner/cernet-ipv6-hosts/hosts/hosts" }, - { 752L, 719L, (short)1, "https://ads-for-open-source.readthedocs.io/en/latest/_static/lists/opensource-ads.txt" }, - { 753L, 720L, (short)1, "https://nonio.pt/antinonio.txt" }, - { 754L, 721L, (short)1, "https://raw.githubusercontent.com/brunomiguel/antinonio/master/antinonio.txt" }, - { 755L, 722L, (short)1, "https://gist.githubusercontent.com/balupton/6960605/raw/16bfeff88761b16296ed3ee15fbacf6840f1701a/filter-twitterdrama.txt" }, - { 756L, 723L, (short)1, "https://gist.githubusercontent.com/balupton/6960605/raw/16bfeff88761b16296ed3ee15fbacf6840f1701a/filter-feedlyads.txt" }, - { 757L, 724L, (short)1, "https://gist.githubusercontent.com/balupton/6960605/raw/16bfeff88761b16296ed3ee15fbacf6840f1701a/filter-facebookdrama.txt" }, - { 758L, 726L, (short)1, "https://raw.githubusercontent.com/whtsky/abp-rules/master/rules.txt" }, - { 759L, 726L, (short)2, "https://abp.tt.codes/rules.txt" }, - { 760L, 728L, (short)1, "https://raw.githubusercontent.com/realodix/AdBlockID/master/output/adblockid.txt" }, - { 761L, 729L, (short)1, "https://raw.githubusercontent.com/theel0ja/CrapBlock/master/crapblock-annoyances.txt" }, - { 762L, 729L, (short)2, "https://crapblock.theel0ja.info/crapblock-annoyances.txt" }, - { 763L, 729L, (short)3, "https://gitlab.com/theel0ja/crapblock/raw/master/crapblock-annoyances.txt" }, - { 764L, 730L, (short)1, "https://raw.githubusercontent.com/theel0ja/CrapBlock/master/block-googlefonts.txt" }, - { 765L, 730L, (short)2, "https://crapblock.theel0ja.info/block-googlefonts.txt" }, - { 766L, 730L, (short)3, "https://gitlab.com/theel0ja/crapblock/raw/master/block-googlefonts.txt" }, - { 767L, 731L, (short)1, "https://raw.githubusercontent.com/NeeEoo/AdBlockNeeEoo/master/List.txt" }, - { 769L, 734L, (short)1, "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/imageboard/GelboLube.txt" }, - { 770L, 734L, (short)2, "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/imageboard/GelboLube.txt" }, - { 771L, 735L, (short)1, "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/specific/AntiAPKMirrorCountdown.txt" }, - { 772L, 735L, (short)2, "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/specific/AntiAPKMirrorCountdown.txt" }, - { 773L, 736L, (short)1, "https://raw.githubusercontent.com/OsborneSystems/Columbia/master/Columbia.txt" }, - { 774L, 743L, (short)1, "https://raw.githubusercontent.com/akopachov/uBlock-AK-filter-rules/master/entertainment" }, - { 775L, 744L, (short)1, "https://raw.githubusercontent.com/Hunter-Github/the-best-stack-overflow/master/se_filters.txt" }, - { 776L, 746L, (short)1, "https://raw.githubusercontent.com/Hakame-kun/uBlock-Filters-Indonesia/master/uBlock Indo/ubindo.txt" }, - { 777L, 747L, (short)1, "https://raw.githubusercontent.com/nimasaj/uBOPa/master/uBOPa.txt" }, - { 778L, 747L, (short)2, "https://mynext.pro/uBOPa.txt" }, - { 779L, 748L, (short)1, "https://www.microsoft.com/cms/api/am/binary/RWilsQ" }, - { 780L, 749L, (short)1, "https://easylist-msie.adblockplus.org/malwaredomains_full.tpl" }, - { 781L, 750L, (short)1, "https://easy-tracking-protection.truste.com/easy.tpl" }, - { 782L, 751L, (short)1, "https://jansal.net/tpl/ricklist.tpl" }, - { 783L, 752L, (short)1, "https://jansal.net/tpl/popup-block.tpl" }, - { 784L, 753L, (short)1, "https://jansal.net/tpl/obtrusive.tpl" }, - { 785L, 754L, (short)1, "https://jansal.net/tpl/malpatrol.tpl" }, - { 786L, 755L, (short)1, "https://jansal.net/tpl/m.tpl" }, - { 787L, 756L, (short)1, "https://jansal.net/tpl/latvian-list.tpl" }, - { 788L, 757L, (short)1, "https://jansal.net/tpl/facebook-connect-optout-adblockplusfilter.tpl" }, - { 789L, 758L, (short)1, "https://jansal.net/tpl/adblock-persian.tpl" }, - { 790L, 759L, (short)1, "https://jansal.net/tpl/IsraelList.tpl" }, - { 791L, 760L, (short)1, "https://jansal.net/tpl/Adversity/Antisocial.tpl" }, - { 792L, 761L, (short)1, "https://jansal.net/tpl/Adversity/Adversity.tpl" }, - { 793L, 762L, (short)1, "https://www.fanboy.co.nz/adblock/ie/fanboy-noele.tpl" }, - { 794L, 763L, (short)1, "https://www.fanboy.co.nz/adblock/ie/fanboy-tracking.tpl" }, - { 795L, 764L, (short)1, "https://jansal.net/tpl/fanboy/enhancedstats-addon.tpl" }, - { 796L, 765L, (short)1, "https://jansal.net/tpl/fanboy/fanboy-adult.tpl" }, - { 797L, 766L, (short)1, "https://raw.githubusercontent.com/lilydjwg/abp-rules/master/list.txt" }, - { 798L, 767L, (short)1, "https://raw.githubusercontent.com/OwlStudioCN/owl-abp-rules/master/owl-abp-rules.txt" }, - { 799L, 769L, (short)1, "https://raw.githubusercontent.com/Manu1400/i-don-t-care-about-newsletters/master/adp.txt" }, - { 800L, 770L, (short)1, "https://adp.magnobiet.com/list.txt" }, - { 801L, 772L, (short)1, "https://raw.githubusercontent.com/kbinani/adblock-wikipedia/master/signed.txt" }, - { 802L, 773L, (short)1, "https://easylist-msie.adblockplus.org/easylistgermany+easylist.tpl" }, - { 803L, 774L, (short)1, "https://easylist-msie.adblockplus.org/fanboy-annoyance.tpl" }, - { 804L, 775L, (short)1, "https://easylist-msie.adblockplus.org/easylistlithuania+easylist.tpl" }, - { 805L, 776L, (short)1, "https://easylist-msie.adblockplus.org/bulgarian_list+easylist.tpl" }, - { 806L, 777L, (short)1, "https://easylist-msie.adblockplus.org/latvianlist+easylist.tpl" }, - { 807L, 778L, (short)1, "https://easylist-msie.adblockplus.org/easyprivacy+easylist.tpl" }, - { 808L, 779L, (short)1, "https://easylist-msie.adblockplus.org/easylistitaly+easylist.tpl" }, - { 809L, 780L, (short)1, "https://easylist-msie.adblockplus.org/israellist+easylist.tpl" }, - { 810L, 781L, (short)1, "https://easylist-msie.adblockplus.org/easylistchina+easylist.tpl" }, - { 811L, 782L, (short)1, "https://easylist-msie.adblockplus.org/easylistdutch+easylist.tpl" }, - { 812L, 783L, (short)1, "https://easylist-msie.adblockplus.org/rolist+easylist.tpl" }, - { 813L, 784L, (short)1, "https://easylist-msie.adblockplus.org/wiltteri+easylist.tpl" }, - { 814L, 785L, (short)1, "https://easylist-msie.adblockplus.org/fanboy-social.tpl" }, - { 815L, 786L, (short)1, "https://easylist-msie.adblockplus.org/liste_ar+liste_fr+easylist.tpl" }, - { 816L, 787L, (short)1, "https://easylist-msie.adblockplus.org/ruadlist+easylist.tpl" }, - { 817L, 788L, (short)1, "https://easylist-msie.adblockplus.org/Liste_AR.tpl" }, - { 818L, 789L, (short)1, "https://easylist-msie.adblockplus.org/easylistdutch.tpl" }, - { 819L, 790L, (short)1, "https://easylist-msie.adblockplus.org/easyprivacy_nointernational.tpl" }, - { 820L, 791L, (short)1, "https://easylist-msie.adblockplus.org/advblock.tpl" }, - { 821L, 792L, (short)1, "https://easylist-msie.adblockplus.org/easylist_noadult.tpl" }, - { 822L, 793L, (short)1, "https://easylist-msie.adblockplus.org/easylistspanish.tpl" }, - { 823L, 794L, (short)1, "https://easylist-msie.adblockplus.org/easylistchina.tpl" }, - { 824L, 795L, (short)1, "https://easylist-msie.adblockplus.org/liste_fr.tpl" }, - { 825L, 796L, (short)1, "https://easylist-msie.adblockplus.org/easylistgermany.tpl" }, - { 826L, 797L, (short)1, "https://easylist-msie.adblockplus.org/antiadblockfilters.tpl" }, - { 827L, 798L, (short)1, "https://easylist-msie.adblockplus.org/liste_fr+easylist.tpl" }, - { 828L, 799L, (short)1, "https://easylist-msie.adblockplus.org/easylistitaly.tpl" }, - { 829L, 800L, (short)1, "https://easylist-msie.adblockplus.org/easylistspanish+easylist.tpl" }, - { 830L, 801L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/ABP Macedonian List.txt" }, - { 831L, 802L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Liste DZ.txt" }, - { 832L, 803L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Snaevar87's Icelandic filter.txt" }, - { 833L, 804L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/TamilFriends List.txt" }, - { 834L, 805L, (short)1, "https://easylist-downloads.adblockplus.org/advblock+cssfixes.txt" }, - { 835L, 806L, (short)1, "https://easylist-downloads.adblockplus.org/easylistportuguese.txt" }, - { 836L, 807L, (short)1, "https://raw.githubusercontent.com/luigimannoni/m5s-ublock-filter/master/filter-list.txt" }, - { 837L, 808L, (short)1, "https://ajnasz.hu/adblock/recent" }, - { 838L, 809L, (short)1, "https://www.ergensin.nl/adblock/nlblock.txt" }, - { 839L, 809L, (short)2, "http://www.verzijlbergh.com/adblock/nlblock.txt" }, - { 840L, 810L, (short)1, "https://raw.githubusercontent.com/badmojr/1Hosts/master/complete/domains.txt" }, - { 841L, 811L, (short)1, "https://raw.githubusercontent.com/badmojr/1Hosts/master/mini/hosts.txt" }, - { 842L, 812L, (short)1, "https://raw.githubusercontent.com/badmojr/1Hosts/master/mini/domains.txt" }, - { 843L, 813L, (short)1, "https://raw.githubusercontent.com/jwinnie/acceptable-ads/master/filters.txt" }, - { 844L, 814L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/gmbkslist.txt" }, - { 845L, 815L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Adblocking Open Filter JP" }, - { 846L, 816L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/I Don't Want to Download Your Browser.txt" }, - { 847L, 816L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/I Don't Want to Download Your Browser.txt" }, - { 848L, 817L, (short)1, "https://raw.githubusercontent.com/lassekongo83/Frellwits-filter-lists/master/Frellwits-Swedish-Hosts-File.txt" }, - { 849L, 817L, (short)2, "https://repo.or.cz/Adblock-list-backups-Frellwits-filter-lists.git/blob_plain/refs/heads/master:/Frellwits-Swedish-Hosts-File.txt" }, - { 850L, 818L, (short)1, "https://easylist-downloads.adblockplus.org/indianlist.txt" }, - { 851L, 819L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/YouTubeEvenMorePureVideoExperience.txt" }, - { 852L, 819L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/YouTubeEvenMorePureVideoExperience.txt" }, - { 854L, 821L, (short)1, "https://raw.githubusercontent.com/brave/adblock-lists/master/brave-unbreak.txt" }, - { 855L, 822L, (short)1, "https://raw.githubusercontent.com/VeleSila/VELE-SILA-List/gh-pages/KaFanList.txt" }, - { 856L, 823L, (short)1, "https://raw.githubusercontent.com/gasull/adblock-nsa/master/filters.txt" }, - { 857L, 824L, (short)1, "https://raw.githubusercontent.com/mistalaba/popover-blocklist/master/blocklist.txt" }, - { 858L, 825L, (short)1, "https://raw.githubusercontent.com/jasonbarone/membership-app-block-list/master/membership-app-block-list.txt" }, - { 859L, 826L, (short)1, "https://raw.githubusercontent.com/w13d/adblockListABP-PiHole/master/Spotify.txt" }, - { 860L, 827L, (short)1, "https://raw.githubusercontent.com/w13d/adblockListABP-PiHole/master/list.txt" }, - { 861L, 828L, (short)1, "https://raw.githubusercontent.com/evenxzero/Raajje-AdList/master/filter.txt" }, - { 862L, 829L, (short)1, "https://raw.githubusercontent.com/miyurusankalpa/adblock-list-sri-lanka/master/lkfilter.txt" }, - { 863L, 830L, (short)1, "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/adblock.conf" }, - { 864L, 831L, (short)1, "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/ads01.conf" }, - { 865L, 832L, (short)1, "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/facebookblock.conf" }, - { 866L, 833L, (short)1, "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/fastclick.conf" }, - { 867L, 834L, (short)1, "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/google.conf" }, - { 868L, 835L, (short)1, "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/microsoftblock.conf" }, - { 869L, 836L, (short)1, "https://raw.githubusercontent.com/Recon/romanian-media-propaganda-adblock-list/master/ro-media-blocklist.txt" }, - { 870L, 837L, (short)1, "https://raw.githubusercontent.com/duskwuff/syndicationblock/master/filters.txt" }, - { 872L, 839L, (short)1, "https://raw.githubusercontent.com/Manu1400/i-don-t-care-about-gotoup-btns/master/list-gotoup-btns.txt" }, - { 873L, 840L, (short)1, "https://raw.githubusercontent.com/KCaglarCoskun/enur-filter-list/master/enur-filter-list.txt" }, - { 874L, 841L, (short)1, "https://raw.githubusercontent.com/LinuxLowell/chat-annoyances/master/chat-annoyances.txt" }, - { 875L, 842L, (short)1, "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=dnsmasq&showintro=1&mimetype=plaintext" }, - { 876L, 843L, (short)1, "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/facebook/FacebookZuckestionKiller.txt" }, - { 877L, 843L, (short)2, "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/facebook/FacebookZuckestionKiller.txt" }, - { 878L, 844L, (short)1, "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/facebook/FacebookCommands.txt" }, - { 879L, 844L, (short)2, "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/facebook/FacebookCommands.txt" }, - { 880L, 845L, (short)1, "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/hosts/hosts_google_adservice_id.txt" }, - { 881L, 845L, (short)2, "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/hosts/hosts_google_adservice_id.txt" }, - { 882L, 846L, (short)1, "https://raw.githubusercontent.com/kowith337/ThaiParanoidBlock/maximum/ThaiParanoid.txt" }, - { 883L, 846L, (short)2, "https://gitlab.com/kowith337/ThaiParanoidBlock/raw/maximum/ThaiParanoid.txt" }, - { 884L, 847L, (short)1, "https://raw.githubusercontent.com/sipp11/th_ad_filters/master/th_list.txt" }, - { 885L, 848L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/TwitchPureViewingExperience.txt" }, - { 886L, 848L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/TwitchPureViewingExperience.txt" }, - { 887L, 850L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAbusePorn.txt" }, - { 888L, 850L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAbusePorn.txt" }, - { 889L, 851L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/WikiaPureBrowsingExperience.txt" }, - { 890L, 851L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/WikiaPureBrowsingExperience.txt" }, - { 891L, 852L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/YouTubeYetEvenMorePureVideoExperience.txt" }, - { 892L, 852L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/YouTubeYetEvenMorePureVideoExperience.txt" }, - { 893L, 853L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/VeryThoroughWebsiteCleaner.txt" }, - { 894L, 853L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/VeryThoroughWebsiteCleaner.txt" }, - { 895L, 855L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/MeWe Pink Theme.txt" }, - { 896L, 855L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/MeWe Pink Theme.txt" }, - { 897L, 856L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Pro-LED List.txt" }, - { 898L, 856L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Pro-LED List.txt" }, - { 899L, 857L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Dandelion Sprout-s Redirector Assistant List/TorRedirectorList.json" }, - { 900L, 857L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Dandelion Sprout-s Redirector Assistant List/TorRedirectorList.json" }, - { 904L, 859L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-Futa List.txt" }, - { 905L, 859L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-Futa List.txt" }, - { 906L, 860L, (short)1, "https://bitbucket.org/nicktabick/adblock-rules/raw/master/nt-adblock.txt" }, - { 907L, 860L, (short)2, "https://raw.githubusercontent.com/nicktabick/adblock-rules/master/nt-adblock.txt" }, - { 908L, 860L, (short)3, "https://gitlab.com/nicktabick/adblock-rules/raw/master/nt-adblock.txt" }, - { 909L, 861L, (short)1, "https://raw.githubusercontent.com/bogachenko/filterlist/master/filterlist.txt" }, - { 910L, 862L, (short)1, "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/other/SurvivedTrackingLinkWarning.txt" }, - { 911L, 862L, (short)2, "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/other/SurvivedTrackingLinkWarning.txt" }, - { 912L, 863L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-'Christmas carols' List.txt" }, - { 913L, 863L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-'Christmas carols' List.txt" }, - { 914L, 866L, (short)1, "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/hosts/hosts_facebook0.txt" }, - { 915L, 866L, (short)2, "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/hosts/hosts_facebook0.txt" }, - { 918L, 868L, (short)1, "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/mochi_filter.txt" }, - { 919L, 869L, (short)1, "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/mochi_filter_2gun.txt" }, - { 920L, 870L, (short)1, "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/mochi_filter_amazon.txt" }, - { 921L, 871L, (short)1, "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/mochi_filter_extended.txt" }, - { 922L, 872L, (short)1, "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/negi_filter.txt" }, - { 923L, 873L, (short)1, "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/negi_google_hplogo_block.txt" }, - { 924L, 874L, (short)1, "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/negi_twitter_allow_save_multi_images.txt" }, - { 925L, 875L, (short)1, "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/kame_filter.txt" }, - { 926L, 876L, (short)1, "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/kotori_filter.txt" }, - { 927L, 877L, (short)1, "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/kujira_filter.txt" }, - { 928L, 878L, (short)1, "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/ichigo_filter.txt" }, - { 929L, 879L, (short)1, "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/tamago_filter.txt" }, - { 930L, 881L, (short)1, "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/youtube_wo_tonikaku_filter.txt" }, - { 931L, 882L, (short)1, "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/all.txt" }, - { 932L, 884L, (short)1, "https://raw.githubusercontent.com/finnish-easylist-addition/finnish-easylist-addition/master/Finland_adb.txt" }, - { 933L, 885L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Afghanistan.txt" }, - { 934L, 886L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Aland.txt" }, - { 935L, 887L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Albania.txt" }, - { 936L, 888L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Algeria.txt" }, - { 937L, 889L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/AmericanSamoa.txt" }, - { 938L, 890L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Andorra.txt" }, - { 939L, 891L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Angola.txt" }, - { 940L, 892L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Anguilla.txt" }, - { 941L, 893L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Antarctica.txt" }, - { 942L, 894L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/AntiguaAndBarbuda.txt" }, - { 943L, 895L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Argentina.txt" }, - { 944L, 896L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Armenia.txt" }, - { 945L, 897L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/AscensionIsland.txt" }, - { 946L, 898L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Australia.txt" }, - { 947L, 899L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Austria.txt" }, - { 948L, 900L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Azerbaijan.txt" }, - { 949L, 901L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bahamas.txt" }, - { 950L, 902L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bahrain.txt" }, - { 951L, 903L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bangladesh.txt" }, - { 952L, 904L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Belarus.txt" }, - { 953L, 905L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Belgium.txt" }, - { 954L, 906L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Belize.txt" }, - { 955L, 907L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bermuda.txt" }, - { 956L, 908L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bhutan.txt" }, - { 957L, 909L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bolivia.txt" }, - { 958L, 910L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bonaire.txt" }, - { 959L, 911L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/BosniaAndHerzegovina.txt" }, - { 960L, 912L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Botswana.txt" }, - { 961L, 913L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Brazil.txt" }, - { 962L, 914L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/BritishIndianOceanTerritory.txt" }, - { 963L, 915L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/BritishVirginIslands.txt" }, - { 964L, 916L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bulgaria.txt" }, - { 965L, 917L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/BurkinaFaso.txt" }, - { 966L, 918L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Burundi.txt" }, - { 967L, 919L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Cambodia.txt" }, - { 968L, 920L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Cameroon.txt" }, - { 969L, 921L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Canada.txt" }, - { 970L, 922L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CapeVerde.txt" }, - { 971L, 923L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Catalonia.txt" }, - { 972L, 924L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CaymanIslands.txt" }, - { 973L, 925L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CentralAfricanRepublic.txt" }, - { 974L, 926L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Chile.txt" }, - { 975L, 927L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/ChinaPeoplesRepublicof.txt" }, - { 976L, 928L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/ChristmasIsland.txt" }, - { 977L, 929L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CocosKeelingIslands.txt" }, - { 978L, 930L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Colombia.txt" }, - { 979L, 931L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CongoKinshasa.txt" }, - { 980L, 932L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CookIslands.txt" }, - { 981L, 933L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CostaRica.txt" }, - { 982L, 934L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Croatia.txt" }, - { 983L, 935L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Cuba.txt" }, - { 984L, 936L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Cyprus.txt" }, - { 985L, 937L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CzechRepublic.txt" }, - { 986L, 938L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Denmark.txt" }, - { 987L, 939L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Djibouti.txt" }, - { 988L, 940L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Dominica.txt" }, - { 989L, 941L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/DominicanRepublic.txt" }, - { 990L, 942L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Ecuador.txt" }, - { 991L, 943L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Egypt.txt" }, - { 992L, 944L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/ElSalvador.txt" }, - { 993L, 945L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/EquatorialGuinea.txt" }, - { 994L, 946L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Estonia.txt" }, - { 995L, 947L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/EuropeanUnion.txt" }, - { 996L, 948L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/FaeroeIslands.txt" }, - { 997L, 949L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/FederatedStatesOfMicronesia.txt" }, - { 998L, 950L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Fiji.txt" }, - { 999L, 951L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Finland.txt" }, - { 1000L, 952L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/France.txt" }, - { 1001L, 953L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/FrenchPolynesia.txt" }, - { 1002L, 954L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/FrenchSouthernAndAntarcticLands.txt" }, - { 1003L, 955L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/GaboneseRepublic.txt" }, - { 1004L, 956L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Gambia.txt" }, - { 1005L, 957L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/GazaStrip.txt" }, - { 1006L, 958L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Georgia.txt" }, - { 1007L, 959L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Germany.txt" }, - { 1008L, 960L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Ghana.txt" }, - { 1009L, 961L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Greece.txt" }, - { 1010L, 962L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Greenland.txt" }, - { 1011L, 963L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Grenada.txt" }, - { 1012L, 964L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guadeloupe.txt" }, - { 1013L, 965L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guam.txt" }, - { 1014L, 966L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guatemala.txt" }, - { 1015L, 967L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guernsey.txt" }, - { 1016L, 968L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guinea.txt" }, - { 1017L, 969L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guyana.txt" }, - { 1018L, 970L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Haiti.txt" }, - { 1019L, 971L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/HeardIslandAndMcDonaldIslands.txt" }, - { 1020L, 972L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Honduras.txt" }, - { 1021L, 973L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/HongKong.txt" }, - { 1022L, 974L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Hungary.txt" }, - { 1023L, 975L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Iceland.txt" }, - { 1024L, 976L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/India.txt" }, - { 1025L, 977L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Indonesia.txt" }, - { 1026L, 978L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Iran.txt" }, - { 1027L, 979L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Iraq.txt" }, - { 1028L, 980L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Ireland.txt" }, - { 1029L, 981L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/IsleofMan.txt" }, - { 1030L, 982L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Israel.txt" }, - { 1031L, 983L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Italy.txt" }, - { 1032L, 984L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/IvoryCoast.txt" }, - { 1033L, 985L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Japan.txt" }, - { 1034L, 986L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Jersey.txt" }, - { 1035L, 987L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Jordan.txt" }, - { 1036L, 988L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Kazakhstan.txt" }, - { 1037L, 989L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Kenya.txt" }, - { 1038L, 990L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Kiribati.txt" }, - { 1039L, 991L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Kuwait.txt" }, - { 1040L, 992L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Kyrgyzstan.txt" }, - { 1041L, 993L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Laos.txt" }, - { 1042L, 994L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Latvia.txt" }, - { 1043L, 995L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Lebanon.txt" }, - { 1044L, 996L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Libya.txt" }, - { 1045L, 997L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Liechtenstein.txt" }, - { 1046L, 998L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Lithuania.txt" }, - { 1047L, 999L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Luxembourg.txt" }, - { 1048L, 1000L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Macau.txt" }, - { 1049L, 1001L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Macedonia.txt" }, - { 1050L, 1002L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Madagascar.txt" }, - { 1051L, 1003L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Malawi.txt" }, - { 1052L, 1004L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Malaysia.txt" }, - { 1053L, 1005L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mali.txt" }, - { 1054L, 1006L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Malta.txt" }, - { 1055L, 1007L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mauritania.txt" }, - { 1056L, 1008L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mauritius.txt" }, - { 1057L, 1009L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mayotte.txt" }, - { 1058L, 1010L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mexico.txt" }, - { 1059L, 1011L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Moldova.txt" }, - { 1060L, 1012L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mongolia.txt" }, - { 1061L, 1013L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Montenegro.txt" }, - { 1062L, 1014L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Montserrat.txt" }, - { 1063L, 1015L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Morocco.txt" }, - { 1064L, 1016L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mozambique.txt" }, - { 1065L, 1017L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Namibia.txt" }, - { 1066L, 1018L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Nauru.txt" }, - { 1067L, 1019L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Nepal.txt" }, - { 1068L, 1020L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Netherlands.txt" }, - { 1069L, 1021L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/NewCaledonia.txt" }, - { 1070L, 1022L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/NewZealand.txt" }, - { 1071L, 1023L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Nicaragua.txt" }, - { 1072L, 1024L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Niger.txt" }, - { 1073L, 1025L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Nigeria.txt" }, - { 1074L, 1026L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Niue.txt" }, - { 1075L, 1027L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/NorfolkIsland.txt" }, - { 1076L, 1028L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/NorthernMarianaIslands.txt" }, - { 1077L, 1029L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Norway.txt" }, - { 1078L, 1030L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Oman.txt" }, - { 1079L, 1031L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Pakistan.txt" }, - { 1080L, 1032L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Palau.txt" }, - { 1081L, 1033L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Palestine.txt" }, - { 1082L, 1034L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Panama.txt" }, - { 1083L, 1035L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Paraguay.txt" }, - { 1084L, 1036L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Peru.txt" }, - { 1085L, 1037L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Philippines.txt" }, - { 1086L, 1038L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/PitcairnIslands.txt" }, - { 1087L, 1039L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Poland.txt" }, - { 1088L, 1040L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Portugal.txt" }, - { 1089L, 1041L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/PuertoRico.txt" }, - { 1090L, 1042L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Qatar.txt" }, - { 1091L, 1043L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Romania.txt" }, - { 1092L, 1044L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Russia.txt" }, - { 1093L, 1045L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Rwanda.txt" }, - { 1094L, 1047L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaintHelena.txt" }, - { 1095L, 1048L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaintLucia.txt" }, - { 1096L, 1049L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaintPierreAndMiquelon.txt" }, - { 1097L, 1050L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaintVincentAndGrenadines.txt" }, - { 1098L, 1051L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Samoa.txt" }, - { 1099L, 1052L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SanMarino.txt" }, - { 1100L, 1053L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaoTomeAndPrincipe.txt" }, - { 1101L, 1054L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaudiArabia.txt" }, - { 1102L, 1055L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Senegal.txt" }, - { 1103L, 1056L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Serbia.txt" }, - { 1104L, 1057L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Seychelles.txt" }, - { 1105L, 1058L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SierraLeone.txt" }, - { 1106L, 1059L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Singapore.txt" }, - { 1107L, 1060L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SintMaarten.txt" }, - { 1108L, 1061L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Slovakia.txt" }, - { 1109L, 1062L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Slovenia.txt" }, - { 1110L, 1063L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Somalia.txt" }, - { 1111L, 1064L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SouthAfrica.txt" }, - { 1112L, 1065L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SouthGeorgiaAndSouthSandwichIslands.txt" }, - { 1113L, 1066L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SouthKorea.txt" }, - { 1114L, 1067L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Spain.txt" }, - { 1115L, 1068L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SriLanka.txt" }, - { 1116L, 1069L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Sudan.txt" }, - { 1117L, 1070L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Suriname.txt" }, - { 1118L, 1071L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Sweden.txt" }, - { 1119L, 1072L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Switzerland.txt" }, - { 1120L, 1073L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Syria.txt" }, - { 1121L, 1074L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Taiwan.txt" }, - { 1122L, 1075L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tajikistan.txt" }, - { 1123L, 1076L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tanzania.txt" }, - { 1124L, 1077L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Thailand.txt" }, - { 1125L, 1078L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/TimorLeste.txt" }, - { 1126L, 1079L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Togo.txt" }, - { 1127L, 1080L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tokelau.txt" }, - { 1128L, 1081L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tonga.txt" }, - { 1129L, 1082L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/TrinidadAndTobago.txt" }, - { 1130L, 1083L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tunisia.txt" }, - { 1131L, 1084L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Turkey.txt" }, - { 1132L, 1085L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Turkmenistan.txt" }, - { 1133L, 1086L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/TurksAndCaicosIslands.txt" }, - { 1134L, 1087L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tuvalu.txt" }, - { 1135L, 1088L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Uganda.txt" }, - { 1136L, 1089L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Ukraine.txt" }, - { 1137L, 1090L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/UnitedArabEmirates.txt" }, - { 1138L, 1091L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/UnitedKingdom.txt" }, - { 1139L, 1092L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/UnitedStatesofAmerica.txt" }, - { 1140L, 1093L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Uruguay.txt" }, - { 1141L, 1094L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Uzbekistan.txt" }, - { 1142L, 1095L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Vanuatu.txt" }, - { 1143L, 1096L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Venezuela.txt" }, - { 1144L, 1097L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Vietnam.txt" }, - { 1145L, 1098L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/WallisandFutuna.txt" }, - { 1146L, 1099L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/WesternSahara.txt" }, - { 1147L, 1100L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Zambia.txt" }, - { 1148L, 1101L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Zimbabwe.txt" }, - { 1149L, 1102L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-Bulgarian-List.txt" }, - { 1150L, 1103L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-Clickbait-Blocklist.txt" }, - { 1151L, 1104L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-Japanese-3rd-Party-SNS-Filters.txt" }, - { 1152L, 1105L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-Japanese-Filters.txt" }, - { 1153L, 1106L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-Japanese-Paranoid-Filters.txt" }, - { 1154L, 1107L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-X-Files.txt" }, - { 1155L, 1108L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABPindo.txt" }, - { 1156L, 1109L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/AakList.txt" }, - { 1157L, 1110L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/AdAway-Default-Blocklist.txt" }, - { 1158L, 1111L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-Filters-by-Gurudee.txt" }, - { 1159L, 1112L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-Iran.txt" }, - { 1160L, 1113L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-Korea.txt" }, - { 1161L, 1114L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-Persian.txt" }, - { 1162L, 1115L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-Polska.txt" }, - { 1163L, 1116L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-YouTube-Ads.txt" }, - { 1164L, 1117L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-uBlock-Polish-Filters.txt" }, - { 1165L, 1118L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adguard-English-Filter.txt" }, - { 1166L, 1119L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adware-Filters.txt" }, - { 1167L, 1120L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/AntiPubWeb.txt" }, - { 1168L, 1121L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Anudeep-Youtube.txt" }, - { 1169L, 1122L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Ayucat-Powerful.txt" }, - { 1170L, 1123L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/BLOGRAM-Analysis-Block-Filter-List-for-Japan.txt" }, - { 1171L, 1124L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/BLOGRAM-Basic-Filter-List-for-Japan.txt" }, - { 1173L, 1126L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Block-EU-Cookie-Shit-List.txt" }, - { 1174L, 1127L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Blockzilla.txt" }, - { 1175L, 1128L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/BreakingTheNews.txt" }, - { 1176L, 1130L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/CAMELEON-Hosts.txt" }, - { 1177L, 1133L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/CryptoWall-Ransomware-C2-Domain-blocklist.txt" }, - { 1178L, 1135L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/DNS-BH-Malware-Domains.txt" }, - { 1179L, 1139L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Disconnect-Malware-Filter.txt" }, - { 1180L, 1140L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Dshield-Suspicious-High.txt" }, - { 1181L, 1141L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Dshield-Suspicious-Low.txt" }, - { 1182L, 1142L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Dshield-Suspicious-Medium.txt" }, - { 1183L, 1143L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/EasyList-Czech-Slovak.txt" }, - { 1184L, 1144L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/EasyList-Dutch.txt" }, - { 1185L, 1146L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/EasyList-Italy.txt" }, - { 1186L, 1148L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/EasyList-Liste-FR.txt" }, - { 1187L, 1149L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/EasyList-Thailand.txt" }, - { 1188L, 1151L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/FadeMind-addSpam.txt" }, - { 1189L, 1152L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Fanboy-Annoyances-List.txt" }, - { 1190L, 1153L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Filtros-Nauscopicos.txt" }, - { 1191L, 1154L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Finnish-AntiSocial.txt" }, - { 1192L, 1155L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/GandJ-Hosts.txt" }, - { 1193L, 1156L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Greek-AdBlock-Filter.txt" }, - { 1194L, 1157L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Hant05080-Filters.txt" }, - { 1195L, 1158L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Henning-VanRaumle-Youtube.txt" }, - { 1196L, 1159L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Hufilter.txt" }, - { 1197L, 1160L, (short)1, "https://raw.githubusercontent.com/HorusTeknoloji/TR-PhishingList/master/url-lists.txt" }, - { 1198L, 1161L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ImmortalMalwareDomains.txt" }, - { 1199L, 1162L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/JapaneseSiteAdblockFilterver2.txt" }, - { 1200L, 1163L, (short)1, "https://phishing.army/download/phishing_army_blocklist_extended.txt" }, - { 1201L, 1164L, (short)1, "https://raw.githubusercontent.com/HorusTeknoloji/TR-PhishingList/master/ip-lists.txt" }, - { 1202L, 1165L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/LatvianList.txt" }, - { 1203L, 1166L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Lead-Generator.txt" }, - { 1204L, 1167L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ListeAR.txt" }, - { 1205L, 1168L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Locky-Ransomware-C2-Domain-Blocklist.txt" }, - { 1206L, 1169L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Malware-Domains-Just-Domains.txt" }, - { 1207L, 1172L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Mat1th-DNS-add-block.txt" }, - { 1208L, 1173L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Mayvs-Private-Adblock-Filters.txt" }, - { 1209L, 1174L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Metaphoricgiraffe-Privacy-Filters.txt" }, - { 1210L, 1175L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Michael-Trimms-Hosts.txt" }, - { 1211L, 1176L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Mitchell-Krogs-Badd-Boyz-Hosts.txt" }, - { 1212L, 1179L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Notracking-hostnames.txt" }, - { 1213L, 1180L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/PLgeneral.txt" }, - { 1214L, 1182L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Piwik-Spam.txt" }, - { 1215L, 1183L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/PopupBlocker.txt" }, - { 1216L, 1184L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Prebake-Obtrusive.txt" }, - { 1217L, 1185L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Prigent-Malware.txt" }, - { 1218L, 1187L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Quidsup-Malicious.txt" }, - { 1219L, 1189L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ROad-Block.txt" }, - { 1220L, 1190L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/RU-AdList.txt" }, - { 1221L, 1191L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/RUAdListBitBlock.txt" }, - { 1222L, 1192L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/RUAdListCounters.txt" }, - { 1223L, 1193L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Ransomware-Domain-Blocklist.txt" }, - { 1224L, 1194L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/SVN-Slovenian.txt" }, - { 1225L, 1196L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/SatterlysAdblockPlusFilters.txt" }, - { 1226L, 1197L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Schacks-Adblock-Plus-Liste.txt" }, - { 1227L, 1199L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Spam-Assassin-Bill-Stearns.txt" }, - { 1228L, 1202L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Fakenews.txt" }, - { 1229L, 1203L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Gambling.txt" }, - { 1230L, 1204L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Hosts.txt" }, - { 1231L, 1205L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Porn.txt" }, - { 1232L, 1206L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Risky-Hosts.txt" }, - { 1233L, 1207L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Trackers.txt" }, - { 1234L, 1209L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Unified-Hosts.txt" }, - { 1235L, 1210L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/TakoYachty-Gift-Card-Killer.txt" }, - { 1236L, 1211L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/TeslaCrypt-Ransomware-C2-Domain-Blocklist.txt" }, - { 1237L, 1212L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/TeslaCrypt-Ransomware-Payment-Sites-Domain-Blocklist.txt" }, - { 1238L, 1213L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/The-Hosts-File-Project.txt" }, - { 1239L, 1214L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Thoughtconverge-AdBlock-Filters.txt" }, - { 1240L, 1215L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Tofu-Filter.txt" }, - { 1241L, 1216L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/TorrentLocker-Ransomware-C2-Domain-Blocklist.txt" }, - { 1242L, 1217L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/TorrentLocker-Ransomware-Payment-Sites-Domain-Blocklist.txt" }, - { 1243L, 1218L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Turk-adlist.txt" }, - { 1244L, 1220L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Wiltteri.txt" }, - { 1245L, 1221L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/WindowsSpyBlocker7.txt" }, - { 1246L, 1222L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/WindowsSpyBlocker81.txt" }, - { 1247L, 1223L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Yhonay-AntiPopAds.txt" }, - { 1248L, 1224L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/YousList.txt" }, - { 1249L, 1225L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ZeuS-Domain-Blocklist-Bad-Domains.txt" }, - { 1250L, 1226L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/uAssetsFilters.txt" }, - { 1251L, 1227L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/uAssetsPrivacy.txt" }, - { 1252L, 1228L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/uAssetsUnbreak.txt" }, - { 1253L, 1229L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/uBOPersonalFilters.txt" }, - { 1254L, 1230L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/uBlockFiltersPlus.txt" }, - { 1264L, 1243L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CombinedBlacklists/CombinedBlackLists.txt" }, - { 1265L, 1244L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CombinedBlacklists/DeathbybandaidList.txt" }, - { 1266L, 1245L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CombinedWhitelists/CombinedWhiteLists.txt" }, - { 1267L, 1247L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-'Battle Royale' List.txt" }, - { 1268L, 1247L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-'Battle Royale' List.txt" }, - { 1269L, 1278L, (short)1, "https://better.fyi/blockerList.txt" }, - { 1270L, 1279L, (short)1, "https://raw.githubusercontent.com/olegwukr/polish-privacy-filters/master/adblock.txt" }, - { 1271L, 1280L, (short)1, "https://raw.githubusercontent.com/olegwukr/polish-privacy-filters/master/anti-adblock.txt" }, - { 1272L, 1281L, (short)1, "https://raw.githubusercontent.com/olegwukr/polish-privacy-filters/master/anti-adblock-suplement.txt" }, - { 1273L, 1282L, (short)1, "https://raw.githubusercontent.com/koenrh/little-snitch-rules/master/apps.lsrules" }, - { 1274L, 1283L, (short)1, "https://raw.githubusercontent.com/AnXh3L0/blocklist/master/albanian-easylist-addition/Albania.txt" }, - { 1275L, 1284L, (short)1, "https://raw.githubusercontent.com/finnish-easylist-addition/finnish-easylist-addition/master/annoyances/Finland_annoyances.txt" }, - { 1276L, 1285L, (short)1, "https://raw.githubusercontent.com/theel0ja/uMatrix-rules/master/my-umatrix-rules.txt" }, - { 1277L, 1286L, (short)1, "https://raw.githubusercontent.com/PoorPocketsMcNewHold/steamscamsites/master/steamscamsite.txt" }, - { 1278L, 1288L, (short)1, "https://raw.githubusercontent.com/NanoAdblockerLab/NanoContrib/master/dist/placeholder-buster.txt" }, - { 1279L, 1288L, (short)2, "https://gitcdn.xyz/repo/NanoAdblockerLab/NanoContrib/master/dist/placeholder-buster.txt" }, - { 1280L, 1289L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/KnowYourMemePureBrowsingExperience.txt" }, - { 1281L, 1289L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/KnowYourMemePureBrowsingExperience.txt" }, - { 1282L, 1290L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Dandelion Sprout's Anti-Malware List.txt" }, - { 1283L, 1290L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Dandelion Sprout's Anti-Malware List.txt" }, - { 1284L, 1291L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/Twitter De-Politificator.txt" }, - { 1285L, 1291L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/Twitter De-Politificator.txt" }, - { 1286L, 1292L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Android Scum Class — Fake notification counters.txt" }, - { 1287L, 1292L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Android Scum Class — Fake notification counters.txt" }, - { 1288L, 1293L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Adblock list templates/Adblock list template -Hosts and uBlock Origin-.txt" }, - { 1289L, 1293L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Adblock list templates/Adblock list template -Hosts and uBlock Origin-.txt" }, - { 1290L, 1294L, (short)1, "https://crapblock.theel0ja.info/even-cleaner-news-sites.txt" }, - { 1291L, 1295L, (short)1, "https://gitlab.com/intr0/iVOID.GitLab.io/raw/master/iVOID.hosts" }, - { 1292L, 1295L, (short)2, "https://notabug.org/-intr0/iVOID/raw/master/iVOID.hosts" }, - { 1293L, 1295L, (short)3, "http://w2caclgy62idhzyut23ucimqw5tsmfbl4b2iyjzpvngatast2fiqxbyd.onion/ivoid/iVOID.hosts" }, - { 1294L, 1296L, (short)1, "https://gitlab.com/intr0/DomainVoider/raw/master/DomainVoider" }, - { 1295L, 1296L, (short)2, "https://notabug.org/-intr0/DomainVoider/raw/master/DomainVoider" }, + { 202L, 304L, (short)3, "https://rawcdn.githack.com/k2jp/abp-japanese-filters/master/abpjf_paranoid.txt" }, + { 203L, 305L, (short)1, "https://raw.githubusercontent.com/k2jp/abp-japanese-filters/master/abpjf.txt" }, + { 203L, 306L, (short)2, "https://gitcdn.xyz/repo/k2jp/abp-japanese-filters/master/abpjf.txt" }, + { 203L, 307L, (short)3, "https://rawcdn.githack.com/k2jp/abp-japanese-filters/master/abpjf.txt" }, + { 204L, 308L, (short)1, "https://raw.githubusercontent.com/k2jp/abp-japanese-filters/master/abpjf_element_hiding.txt" }, + { 204L, 309L, (short)2, "https://gitcdn.xyz/repo/k2jp/abp-japanese-filters/master/abpjf_element_hiding.txt" }, + { 204L, 310L, (short)3, "https://rawcdn.githack.com/k2jp/abp-japanese-filters/master/abpjf_element_hiding.txt" }, + { 205L, 311L, (short)1, "https://raw.githubusercontent.com/k2jp/abp-japanese-filters/master/abpjf_3rd_party_sns.txt" }, + { 205L, 312L, (short)2, "https://gitcdn.xyz/repo/k2jp/abp-japanese-filters/master/abpjf_3rd_party_sns.txt" }, + { 205L, 313L, (short)3, "https://rawcdn.githack.com/k2jp/abp-japanese-filters/master/abpjf_3rd_party_sns.txt" }, + { 206L, 314L, (short)1, "https://raw.githubusercontent.com/abpvn/abpvn/master/filter/abpvn.txt" }, + { 206L, 315L, (short)2, "https://gitcdn.xyz/repo/abpvn/abpvn/master/filter/abpvn.txt" }, + { 206L, 316L, (short)3, "https://rawcdn.githack.com/abpvn/abpvn/master/filter/abpvn.txt" }, + { 207L, 317L, (short)1, "https://raw.githubusercontent.com/reek/anti-adblock-killer/master/anti-adblock-killer-filters.txt" }, + { 207L, 318L, (short)2, "https://gitcdn.xyz/repo/reek/anti-adblock-killer/master/anti-adblock-killer-filters.txt" }, + { 207L, 319L, (short)3, "https://rawcdn.githack.com/reek/anti-adblock-killer/master/anti-adblock-killer-filters.txt" }, + { 212L, 320L, (short)1, "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.2o7Net/hosts" }, + { 212L, 321L, (short)2, "https://gitcdn.xyz/repo/FadeMind/hosts.extras/master/add.2o7Net/hosts" }, + { 212L, 322L, (short)3, "https://gitcdn.link/repo/FadeMind/hosts.extras/master/add.2o7Net/hosts" }, + { 213L, 323L, (short)1, "https://raw.githubusercontent.com/kbinani/adblock-youtube-ads/master/signed.txt" }, + { 213L, 324L, (short)2, "https://gitcdn.xyz/repo/kbinani/adblock-youtube-ads/master/signed.txt" }, + { 213L, 325L, (short)3, "https://rawcdn.githack.com/kbinani/adblock-youtube-ads/master/signed.txt" }, + { 214L, 326L, (short)1, "https://easylist-msie.adblockplus.org/antiadblockfilters.txt" }, + { 214L, 2595L, (short)2, "https://easylist-downloads.adblockplus.org/antiadblockfilters.txt" }, + { 215L, 327L, (short)1, "https://raw.githubusercontent.com/adblockpolska/Adblock_PL_List/master/adblock_polska.txt" }, + { 215L, 328L, (short)2, "https://gitcdn.xyz/repo/adblockpolska/Adblock_PL_List/master/adblock_polska.txt" }, + { 215L, 329L, (short)3, "https://rawcdn.githack.com/adblockpolska/Adblock_PL_List/master/adblock_polska.txt" }, + { 216L, 330L, (short)1, "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/adblock_social_filters/adblock_social_list.txt" }, + { 216L, 331L, (short)2, "https://gitcdn.xyz/repo/MajkiIT/polish-ads-filter/master/adblock_social_filters/adblock_social_list.txt" }, + { 216L, 332L, (short)3, "https://rawcdn.githack.com/MajkiIT/polish-ads-filter/master/adblock_social_filters/adblock_social_list.txt" }, + { 217L, 333L, (short)1, "https://ideone.com/plain/K452p" }, + { 220L, 334L, (short)1, "https://web.archive.org/web/20160411115130if_/http://adblock-korea.googlecode.com:80/git/adblock-korea.txt" }, + { 221L, 335L, (short)1, "https://gurud.ee/ab.txt" }, + { 222L, 336L, (short)1, "https://raw.githubusercontent.com/SlashArash/adblockfa/master/adblockfa.txt" }, + { 222L, 337L, (short)2, "https://gitcdn.xyz/repo/SlashArash/adblockfa/master/adblockfa.txt" }, + { 222L, 338L, (short)3, "https://rawcdn.githack.com/SlashArash/adblockfa/master/adblockfa.txt" }, + { 223L, 339L, (short)1, "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock.txt" }, + { 223L, 340L, (short)2, "https://gitcdn.xyz/repo/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock.txt" }, + { 223L, 341L, (short)3, "https://rawcdn.githack.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock.txt" }, + { 224L, 342L, (short)1, "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/cookies_filters/adblock_cookies.txt" }, + { 224L, 343L, (short)2, "https://gitcdn.xyz/repo/MajkiIT/polish-ads-filter/master/cookies_filters/adblock_cookies.txt" }, + { 224L, 344L, (short)3, "https://rawcdn.githack.com/MajkiIT/polish-ads-filter/master/cookies_filters/adblock_cookies.txt" }, + { 225L, 345L, (short)1, "https://sites.google.com/site/logroid/files/hosts.txt?attredirects=0" }, + { 226L, 346L, (short)1, "https://adaway.org/hosts.txt" }, + { 227L, 347L, (short)1, "https://easylist-downloads.adblockplus.org/exceptionrules.txt" }, + { 228L, 348L, (short)1, "https://raw.githubusercontent.com/farrokhi/adblock-iran/master/filter.txt" }, + { 228L, 349L, (short)2, "https://rawcdn.githack.com/farrokhi/adblock-iran/master/filter.txt" }, + { 229L, 351L, (short)1, "https://hg.adblockplus.org/youtubefilters/raw-file/default/yt_annoyances_comments.txt" }, + { 232L, 352L, (short)1, "https://raw.githubusercontent.com/ryanbr/fanboy-adblock/master/fake-news.txt" }, + { 233L, 354L, (short)1, "https://hg.adblockplus.org/facebookfilters/raw-file/default/fb_annoyances_sidebar.txt" }, + { 234L, 355L, (short)1, "http://www.squirrelconspiracy.net/abp/facebook-privacy-list.txt" }, + { 234L, 356L, (short)2, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Facebook Privacy List.txt" }, + { 235L, 358L, (short)1, "https://hg.adblockplus.org/facebookfilters/raw-file/default/fb_annoyances_newsfeed.txt" }, + { 236L, 360L, (short)1, "https://hg.adblockplus.org/facebookfilters/raw-file/default/fb_annoyances_full.txt" }, + { 237L, 361L, (short)1, "https://adblock.ee/list.php" }, + { 238L, 362L, (short)1, "https://www.ebates.com/whitelist/ebates-cash-back-shopping.txt" }, + { 239L, 363L, (short)1, "https://easylist-downloads.adblockplus.org/easytest.txt" }, + { 240L, 364L, (short)1, "https://easylist-downloads.adblockplus.org/easyprivacy_nointernational.txt" }, + { 241L, 365L, (short)1, "https://easylist-downloads.adblockplus.org/easyprivacy+easylist.txt" }, + { 242L, 366L, (short)1, "https://easylist.to/easylist/easyprivacy.txt" }, + { 242L, 367L, (short)2, "https://fanboy.co.nz/easyprivacy.txt" }, + { 242L, 368L, (short)3, "https://easylist-downloads.adblockplus.org/easyprivacy.txt" }, + { 243L, 369L, (short)1, "https://easylist-downloads.adblockplus.org/easylist_noadult.txt" }, + { 244L, 370L, (short)1, "https://easylist-downloads.adblockplus.org/easylist_noelemhide.txt" }, + { 245L, 371L, (short)1, "https://raw.githubusercontent.com/easylist-thailand/easylist-thailand/master/subscription/easylist-thailand.txt" }, + { 246L, 372L, (short)1, "https://easylist-downloads.adblockplus.org/easylistspanish.txt" }, + { 247L, 373L, (short)1, "https://easylist-downloads.adblockplus.org/fanboy-annoyance.txt" }, + { 247L, 374L, (short)2, "https://fanboy.co.nz/fanboy-annoyance.txt" }, + { 247L, 375L, (short)3, "https://easylist.to/easylist/fanboy-annoyance.txt" }, + { 248L, 376L, (short)1, "https://easylist-downloads.adblockplus.org/easylistlithuania+easylist.txt" }, + { 249L, 377L, (short)1, "https://fanboy.co.nz/fanboy-antifonts.txt" }, + { 250L, 378L, (short)1, "https://easylist-downloads.adblockplus.org/easylist-cookie.txt" }, + { 251L, 380L, (short)1, "https://raw.githubusercontent.com/mozillahispano/nauscopio-filtros/master/filtros.txt" }, + { 252L, 381L, (short)1, "https://filtri-dns.ga/filtri.txt" }, + { 253L, 382L, (short)1, "https://raw.githubusercontent.com/hant0508/uBlock-filters/master/filters.txt" }, + { 254L, 383L, (short)1, "https://fanboy.co.nz/fanboy-vietnam.txt" }, + { 255L, 384L, (short)1, "https://fanboy.co.nz/r/fanboy-ultimate.txt" }, + { 256L, 385L, (short)1, "https://fanboy.co.nz/fanboy-turkish.txt" }, + { 257L, 386L, (short)1, "https://fanboy.co.nz/fanboy-swedish.txt" }, + { 258L, 387L, (short)1, "https://fanboy.co.nz/fanboy-espanol.txt" }, + { 259L, 388L, (short)1, "https://easylist-downloads.adblockplus.org/fanboy-social.txt" }, + { 259L, 389L, (short)2, "https://fanboy.co.nz/fanboy-social.txt" }, + { 260L, 390L, (short)1, "https://fanboy.co.nz/fanboy-polish.txt" }, + { 261L, 391L, (short)1, "https://fanboy.co.nz/fanboy-korean.txt" }, + { 262L, 392L, (short)1, "https://fanboy.co.nz/fanboy-japanese.txt" }, + { 263L, 393L, (short)1, "https://fanboy.co.nz/israelilist/IsraelList.txt" }, + { 264L, 394L, (short)1, "https://fanboy.co.nz/fanboy-indian.txt" }, + { 265L, 395L, (short)1, "https://fanboy.co.nz/enhancedstats.txt" }, + { 266L, 396L, (short)1, "https://fanboy.co.nz/r/fanboy-complete.txt" }, + { 267L, 397L, (short)1, "https://raw.githubusercontent.com/EasyList-Lithuania/easylist_lithuania/master/easylistlithuania.txt" }, + { 268L, 398L, (short)1, "https://raw.githubusercontent.com/cjx82630/cjxlist/master/cjxlist.txt" }, + { 268L, 399L, (short)2, "https://gitee.com/cjx82630/cjxlist/raw/master/cjxlist.txt" }, + { 269L, 400L, (short)1, "https://easylist-downloads.adblockplus.org/easylistitaly+easylist.txt" }, + { 272L, 403L, (short)1, "https://s3.amazonaws.com/lists.disconnect.me/simple_tracking.txt" }, + { 274L, 404L, (short)1, "https://s3.amazonaws.com/lists.disconnect.me/simple_malvertising.txt" }, + { 275L, 405L, (short)1, "https://s3.amazonaws.com/lists.disconnect.me/simple_ad.txt" }, + { 276L, 406L, (short)1, "https://someonewhocares.org/hosts/zero/hosts" }, + { 276L, 407L, (short)2, "https://raw.githubusercontent.com/StevenBlack/hosts/master/data/someonewhocares.org/hosts" }, + { 277L, 408L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Czech Filters for Adblock Plus" }, + { 278L, 409L, (short)1, "https://raw.githubusercontent.com/nicedirector/ADBlock/master/Adblock_Filter.txt" }, + { 279L, 410L, (short)1, "https://www.eff.org/files/cookieblocklist.txt" }, + { 280L, 411L, (short)1, "https://raw.githubusercontent.com/cpeterso/clickbait-blocklist/master/clickbait-blocklist.txt" }, + { 281L, 412L, (short)1, "https://raw.githubusercontent.com/cjx82630/cjxlist/master/cjx-annoyance.txt" }, + { 281L, 413L, (short)2, "https://gitee.com/cjx82630/cjxlist/raw/master/cjx-annoyance.txt" }, + { 282L, 414L, (short)1, "https://sysctl.org/cameleon/hosts" }, + { 283L, 415L, (short)1, "https://easylist-downloads.adblockplus.org/bulgarian_list+easylist.txt" }, + { 284L, 416L, (short)1, "https://stanev.org/abp/adblock_bg.txt" }, + { 285L, 417L, (short)1, "http://malwaredomains.lehigh.edu/files/dynamic_dns.txt" }, + { 288L, 422L, (short)1, "http://malwaredomains.lehigh.edu/files/immortal_domains.txt" }, + { 289L, 424L, (short)1, "https://easylist-downloads.adblockplus.org/easylistitaly.txt" }, + { 290L, 425L, (short)1, "https://easylist-downloads.adblockplus.org/israellist+easylist.txt" }, + { 291L, 426L, (short)1, "https://raw.githubusercontent.com/easylist/EasyListHebrew/master/EasyListHebrew.txt" }, + { 292L, 427L, (short)1, "https://easylist-downloads.adblockplus.org/easylistgermany+easylist.txt" }, + { 293L, 428L, (short)1, "https://easylist-downloads.adblockplus.org/easylistgermany.txt" }, + { 293L, 429L, (short)2, "https://easylist.to/easylistgermany/easylistgermany.txt" }, + { 294L, 430L, (short)1, "https://easylist-downloads.adblockplus.org/easylistdutch+easylist.txt" }, + { 295L, 431L, (short)1, "https://easylist-downloads.adblockplus.org/easylistdutch.txt" }, + { 297L, 432L, (short)1, "https://easylist-downloads.adblockplus.org/easylistczechslovak+easylist.txt" }, + { 298L, 433L, (short)1, "https://raw.githubusercontent.com/nfer/easylistchina_it/master/easylistchina_it.txt" }, + { 299L, 434L, (short)1, "https://easylist-downloads.adblockplus.org/easylistchina+easylist.txt" }, + { 300L, 435L, (short)1, "https://easylist-downloads.adblockplus.org/easylistchina.txt" }, + { 301L, 436L, (short)1, "https://easylist.to/easylist/easylist.txt" }, + { 301L, 437L, (short)2, "https://fanboy.co.nz/easylist.txt" }, + { 301L, 438L, (short)3, "https://easylist-downloads.adblockplus.org/easylist.txt" }, + { 301L, 2750L, (short)4, "https://downloads.vivaldi.com/easylist/easylist-current.txt" }, + { 302L, 439L, (short)1, "https://feeds.dshield.org/block.txt" }, + { 305L, 442L, (short)1, "https://raw.githubusercontent.com/tomasko126/easylistczechandslovak/master/filters.txt" }, + { 306L, 444L, (short)1, "https://hg.adblockplus.org/youtubefilters/raw-file/default/yt_annoyances_suggestions.txt" }, + { 307L, 445L, (short)1, "https://raw.githubusercontent.com/taylr/linkedinsanity/master/spies-dislike-us.txt" }, + { 308L, 446L, (short)1, "https://raw.githubusercontent.com/hoshsadiq/adblock-nocoin-list/master/hosts.txt" }, + { 309L, 447L, (short)1, "https://raw.githubusercontent.com/badmojr/1Hosts/master/complete/hosts.txt" }, + { 311L, 448L, (short)1, "https://raw.githubusercontent.com/elypter/generic_annoying_stickybar_filter/master/generic_header_list.txt" }, + { 312L, 449L, (short)1, "https://raw.githubusercontent.com/elypter/filter_processor/master/generated_filterlists/blockhead(decoy_generic_extraction).txt" }, + { 313L, 450L, (short)1, "https://raw.githubusercontent.com/elypter/filter_processor/master/generated_filterlists/blockhead(decoy_generic_selection).txt" }, + { 315L, 451L, (short)1, "https://alleblock.pl/alleblock/alleblock.txt" }, + { 316L, 452L, (short)1, "https://raw.githubusercontent.com/bkrucarci/turk-adlist/master/hosts" }, + { 317L, 453L, (short)1, "https://raw.githubusercontent.com/anudeepND/blacklist/master/adservers.txt" }, + { 318L, 454L, (short)1, "https://raw.githubusercontent.com/anudeepND/blacklist/master/CoinMiner.txt" }, + { 319L, 455L, (short)1, "https://raw.githubusercontent.com/anudeepND/youtubeadsblacklist/master/domainlist.txt" }, + { 320L, 456L, (short)1, "https://raw.githubusercontent.com/anudeepND/youtubeadsblacklist/master/hosts.txt" }, + { 321L, 457L, (short)1, "https://raw.githubusercontent.com/anudeepND/whitelist/master/domains/whitelist.txt" }, + { 322L, 458L, (short)1, "https://raw.githubusercontent.com/anudeepND/whitelist/master/domains/referral-sites.txt" }, + { 323L, 459L, (short)1, "https://raw.githubusercontent.com/anudeepND/whitelist/master/domains/optional-list.txt" }, + { 324L, 460L, (short)1, "https://raw.githubusercontent.com/arcetera/Minimal-Hosts-Blocker/master/etc/MinimalHostsBlocker/minimalhosts" }, + { 325L, 461L, (short)1, "https://raw.githubusercontent.com/bjornstar/hosts/master/hosts" }, + { 327L, 462L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/stayingonbrowser/Staying On The Phone Browser" }, + { 327L, 463L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/stayingonbrowser/Staying On The Phone Browser" }, + { 329L, 464L, (short)1, "https://raw.githubusercontent.com/VeleSila/yhosts/master/hosts.txt" }, + { 330L, 465L, (short)1, "https://raw.githubusercontent.com/kowith337/ThaiConsentHosts/master/ThaiConsentHosts.txt" }, + { 330L, 466L, (short)2, "https://gitlab.com/kowith337/ThaiConsentHosts/raw/master/ThaiConsentHosts.txt" }, + { 331L, 467L, (short)1, "https://raw.githubusercontent.com/kowith337/ThaiParanoidBlock/master/ThaiParanoid.txt" }, + { 331L, 468L, (short)2, "https://gitlab.com/kowith337/ThaiParanoidBlock/raw/master/ThaiParanoid.txt" }, + { 332L, 469L, (short)1, "https://raw.githubusercontent.com/kowith337/ThaiAntiForceLike/master/AntiForceLike.txt" }, + { 333L, 470L, (short)1, "https://raw.githubusercontent.com/pureexe/LeeCh-List/master/anime.txt" }, + { 334L, 471L, (short)1, "https://warui.intaa.net/adhosts/hosts.txt" }, + { 335L, 472L, (short)1, "https://raw.githubusercontent.com/multiverse2011/adawaylist-jp/master/hosts" }, + { 336L, 473L, (short)1, "https://sites.google.com/site/cosmonoteshosts/hosts_for_Windows8.txt" }, + { 337L, 474L, (short)1, "https://sites.google.com/site/cosmonoteshosts/hosts_for_Adaway.txt" }, + { 338L, 475L, (short)1, "https://sites.google.com/site/cosmonoteshosts/hosts_Ultimate.txt" }, + { 339L, 476L, (short)1, "https://raw.githubusercontent.com/Lerist/Go-Hosts/master/hosts-ad" }, + { 340L, 477L, (short)1, "https://raw.githubusercontent.com/Lerist/Go-Hosts/master/hosts" }, + { 341L, 478L, (short)1, "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/adblock_social_filters/social_filters_uB_AG.txt" }, + { 343L, 480L, (short)1, "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/cookies_filters/cookies_uB_AG.txt" }, + { 345L, 482L, (short)1, "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock_adguard.txt" }, + { 346L, 483L, (short)1, "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock_test.txt" }, + { 347L, 484L, (short)1, "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-pihole-filters/hostfile.txt" }, + { 348L, 485L, (short)1, "http://vxvault.net/URL_List.php" }, + { 349L, 486L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/KADhosts/master/KADhosts_without_controversies.txt" }, + { 349L, 487L, (short)2, "https://gitcdn.xyz/repo/FiltersHeroes/KADhosts/master/KADhosts_without_controversies.txt" }, + { 349L, 488L, (short)3, "https://rawcdn.githack.com/FiltersHeroes/KADhosts/master/KADhosts_without_controversies.txt" }, + { 350L, 489L, (short)1, "https://filters.adtidy.org/extension/chromium/filters/16.txt" }, + { 352L, 490L, (short)1, "https://raw.githubusercontent.com/eladkarako/hosts/master/build/hosts_adblock.txt" }, + { 353L, 491L, (short)1, "https://raw.githubusercontent.com/eladkarako/hosts/master/build/hosts_adblock_anti_annoyances_block.txt" }, + { 354L, 492L, (short)1, "https://raw.githubusercontent.com/eladkarako/hosts/master/build/hosts_adblock_anti_annoyances_block_inline_script.txt" }, + { 355L, 493L, (short)1, "https://raw.githubusercontent.com/eladkarako/hosts/master/build/hosts_adblock_anti_annoyances_hide.txt" }, + { 356L, 494L, (short)1, "https://raw.githubusercontent.com/eladkarako/hosts/master/build/hosts_adblock_anti_annoyances_style_inject.txt" }, + { 357L, 495L, (short)1, "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/list.txt" }, + { 358L, 496L, (short)1, "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/list_optional.txt" }, + { 359L, 497L, (short)1, "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/list_browser.txt" }, + { 360L, 498L, (short)1, "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/hosts" }, + { 361L, 499L, (short)1, "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/hosts_optional" }, + { 362L, 500L, (short)1, "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/hosts_browser" }, + { 363L, 501L, (short)1, "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/list_browser_UBO.txt" }, + { 367L, 502L, (short)1, "https://raw.githubusercontent.com/uMatrix-Rules/uMatrix-Rules-Domain/master/rules.txt" }, + { 368L, 503L, (short)1, "https://raw.githubusercontent.com/uMatrix-Rules/uMatrix-Rules-Site/master/rules.txt" }, + { 369L, 504L, (short)1, "https://raw.githubusercontent.com/tomasko126/easylistczechandslovak/master/filters_ublock.txt" }, + { 370L, 505L, (short)1, "https://easylist-msie.adblockplus.org/easylistczechslovak+easylist.tpl" }, + { 371L, 506L, (short)1, "https://raw.githubusercontent.com/AFNIL-AntiFakeNewsInternationalList/AFNIL/master/AFNIL-ABP-uBO.txt" }, + { 372L, 507L, (short)1, "https://raw.githubusercontent.com/Hubird-au/Adversity/master/Adversity.txt" }, + { 373L, 508L, (short)1, "https://raw.githubusercontent.com/Hubird-au/Adversity/master/Antisocial.txt" }, + { 374L, 509L, (short)1, "https://raw.githubusercontent.com/Hubird-au/Adversity/master/Extreme-Measures.txt" }, + { 375L, 510L, (short)1, "https://raw.githubusercontent.com/hl2guide/All-in-One-Customized-Adblock-List/master/aio.txt" }, + { 376L, 511L, (short)1, "https://raw.githubusercontent.com/haykam821/Blocklists/master/mmo.txt" }, + { 377L, 512L, (short)1, "https://raw.githubusercontent.com/cb-software/CB-Malicious-Domains/master/block_lists/adblock_plus.txt" }, + { 378L, 513L, (short)1, "https://raw.githubusercontent.com/cb-software/CB-Malicious-Domains/master/block_lists/hosts" }, + { 379L, 514L, (short)1, "https://gist.githubusercontent.com/gorhill/ef1b62d606473c68d524/raw/f8181faac18cb5172c7c9bca8e5a3b22f0c925d0/gistfile1.txt" }, + { 380L, 515L, (short)1, "https://raw.githubusercontent.com/toshiya44/myAssets/master/filters-exp.txt" }, + { 381L, 516L, (short)1, "https://rickrolldb.com/ricklist.txt" }, + { 383L, 517L, (short)1, "https://austinhuang.me/0131-block-list/list.txt" }, + { 385L, 518L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Username Hider for Compilation Creators.txt" }, + { 385L, 519L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Username Hider for Compilation Creators.txt" }, + { 388L, 520L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/DandelionSproutsNorskeFiltre.tpl" }, + { 388L, 521L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/DandelionSproutsNorskeFiltre.tpl" }, + { 390L, 522L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/PolishAntiAnnoyingSpecialSupplement/master/polish_rss_filters.txt" }, + { 391L, 523L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/IHateOverpromotedGames.txt" }, + { 391L, 524L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/IHateOverpromotedGames.txt" }, + { 392L, 525L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/BrowseWebsitesWithoutLoggingIn.txt" }, + { 392L, 526L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/BrowseWebsitesWithoutLoggingIn.txt" }, + { 393L, 527L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Dandelion Sprout-s Redirector Assistant List/DandelionSproutRedirectorList.json" }, + { 393L, 528L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Dandelion Sprout-s Redirector Assistant List/DandelionSproutRedirectorList.json" }, + { 395L, 529L, (short)1, "https://raw.githubusercontent.com/raghavdua1995/DNSlock-PiHole-whitelist/master/whitelist.list" }, + { 396L, 530L, (short)1, "https://raw.githubusercontent.com/NanoAdblocker/NanoFilters/master/NanoFilters/NanoBase.txt" }, + { 397L, 531L, (short)1, "https://raw.githubusercontent.com/NanoAdblocker/NanoFilters/master/NanoFilters/NanoWhitelist.txt" }, + { 398L, 532L, (short)1, "https://raw.githubusercontent.com/NanoAdblocker/NanoFilters/master/NanoFilters/NanoAnnoyance.txt" }, + { 399L, 533L, (short)1, "https://raw.githubusercontent.com/lassekongo83/Frellwits-filter-lists/master/Frellwits-Swedish-Filter.txt" }, + { 399L, 534L, (short)2, "https://repo.or.cz/Adblock-list-backups-Frellwits-filter-lists.git/blob_plain/refs/heads/master:/Frellwits-Swedish-Filter.txt" }, + { 400L, 535L, (short)1, "https://raw.githubusercontent.com/notracking/hosts-blocklists/master/domains.txt" }, + { 401L, 536L, (short)1, "https://raw.githubusercontent.com/notracking/hosts-blocklists/master/hostnames.txt" }, + { 403L, 537L, (short)1, "https://raw.githubusercontent.com/lassekongo83/Frellwits-filter-lists/master/emoji-filter.txt" }, + { 403L, 538L, (short)2, "https://repo.or.cz/Adblock-list-backups-Frellwits-filter-lists.git/blob_plain/refs/heads/master:/emoji-filter.txt" }, + { 405L, 539L, (short)1, "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/annoyances.txt" }, + { 410L, 540L, (short)1, "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/resource-abuse.txt" }, + { 412L, 541L, (short)1, "https://gist.githubusercontent.com/BBcan177/d7105c242f17f4498f81/raw/201968fa11b1f409d408a129a0774ffedb1560e2/MS-3" }, + { 413L, 542L, (short)1, "https://gist.githubusercontent.com/BBcan177/b6df57cef74e28d90acf1eec93d62d3b/raw/f0996cf5248657ada2adb396f3636be8716b99eb/MS-4" }, + { 414L, 543L, (short)1, "https://gist.githubusercontent.com/BBcan177/4a8bf37c131be4803cb2/raw/343ff780e15205b4dd0de37c86af34cfb26b2fbe/MS-2" }, + { 415L, 544L, (short)1, "https://gist.githubusercontent.com/BBcan177/bf29d47ea04391cb3eb0/raw/7290e0681bcd07415420b5c80a253652fd13f840/MS-1" }, + { 416L, 545L, (short)1, "https://gist.githubusercontent.com/BBcan177/2a9fc2548c3c5a5e2dc86e580b5795d2/raw/2f5c90ffb3bd02199ace1b16a0bd9f53b29f0879/EasyList_DE" }, + { 417L, 546L, (short)1, "https://raw.githubusercontent.com/matomo-org/referrer-spam-blacklist/master/spammers.txt" }, + { 418L, 547L, (short)1, "https://raw.githubusercontent.com/desbma/referer-spam-domains-blacklist/master/spammers.txt" }, + { 419L, 548L, (short)1, "https://www.joewein.net/dl/bl/dom-bl-base.txt" }, + { 420L, 549L, (short)1, "https://www.joewein.net/dl/bl/from-bl.txt" }, + { 421L, 550L, (short)1, "https://gitlab.com/Kurobeats/phishing_hosts/raw/master/hosts" }, + { 422L, 551L, (short)1, "https://raw.githubusercontent.com/ligyxy/Blocklist/master/BLOCKLIST" }, + { 424L, 552L, (short)1, "https://gist.githubusercontent.com/MOxFIVE/4730cac715ef406bd8eac7b29335be4a/raw/d21fa08e97963edde372d0d3e50703c783c9c32e/Personal%2520Blocklist.txt" }, + { 425L, 553L, (short)1, "https://raw.githubusercontent.com/nabble/semalt-blocker/master/domains/blocked" }, + { 426L, 554L, (short)1, "https://osint.bambenekconsulting.com/feeds/c2-ipmasterlist.txt" }, + { 427L, 555L, (short)1, "http://phishing.mailscanner.info/phishing.bad.sites.conf" }, + { 428L, 556L, (short)1, "https://www.threatcrowd.org/feeds/domains.txt" }, + { 429L, 557L, (short)1, "https://raw.githubusercontent.com/betterwebleon/international-list/master/filters.txt" }, + { 430L, 558L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/AdawayHosts" }, + { 430L, 559L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/AdawayHosts" }, + { 431L, 560L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Dandelion Sprout's Website Stretcher.txt" }, + { 431L, 561L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Dandelion Sprout%27s Website Stretcher.txt" }, + { 432L, 562L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-FіМ List.txt" }, + { 432L, 563L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-FіМ List.txt" }, + { 433L, 564L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-IMDB List.txt" }, + { 433L, 565L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-IMDB List.txt" }, + { 434L, 566L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/StopAutoplayOnYouTube.txt" }, + { 434L, 567L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/StopAutoplayOnYouTube.txt" }, + { 435L, 568L, (short)1, "https://raw.githubusercontent.com/googlehosts/hosts/master/hosts-files/hosts" }, + { 435L, 569L, (short)2, "https://git.qvq.network/googlehosts/hosts/raw/master/hosts-files/hosts" }, + { 436L, 570L, (short)1, "https://raw.githubusercontent.com/lassekongo83/Frellwits-filter-lists/master/i-dont-want-your-app.txt" }, + { 436L, 571L, (short)2, "https://repo.or.cz/Adblock-list-backups-Frellwits-filter-lists.git/blob_plain/refs/heads/master:/i-dont-want-your-app.txt" }, + { 437L, 572L, (short)1, "https://raw.githubusercontent.com/easylistbrasil/easylistbrasil/filtro/easylistbrasil.txt" }, + { 438L, 573L, (short)1, "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/SessionReplay.txt" }, + { 439L, 574L, (short)1, "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/SmartTV.txt" }, + { 440L, 575L, (short)1, "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/android-tracking.txt" }, + { 441L, 576L, (short)1, "https://v.firebog.net/hosts/static/w3kbl.txt" }, + { 442L, 577L, (short)1, "https://v.firebog.net/hosts/BillStearns.txt" }, + { 445L, 578L, (short)1, "https://v.firebog.net/hosts/Easyprivacy.txt" }, + { 446L, 579L, (short)1, "https://v.firebog.net/hosts/Prigent-Ads.txt" }, + { 447L, 580L, (short)1, "https://gitlab.com/quidsup/notrack-blocklists/raw/master/notrack-blocklist.txt" }, + { 448L, 581L, (short)1, "https://gitlab.com/quidsup/notrack-blocklists/raw/master/notrack-malware.txt" }, + { 449L, 582L, (short)1, "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/hosts/spy.txt" }, + { 450L, 583L, (short)1, "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/hosts/update.txt" }, + { 451L, 584L, (short)1, "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/hosts/extra.txt" }, + { 465L, 585L, (short)1, "https://v.firebog.net/hosts/Shalla-mal.txt" }, + { 465L, 586L, (short)2, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Shalla-Malicious.txt" }, + { 467L, 587L, (short)1, "https://raw.githubusercontent.com/kano1/I/master/badway.txt" }, + { 468L, 588L, (short)1, "https://raw.githubusercontent.com/kano1/I/master/adware.txt" }, + { 469L, 589L, (short)1, "https://raw.githubusercontent.com/kano1/Kano/master/Spyware.txt" }, + { 470L, 590L, (short)1, "https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/firehol_level1.netset" }, + { 471L, 591L, (short)1, "https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/firehol_level2.netset" }, + { 472L, 592L, (short)1, "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/pinterest/all" }, + { 473L, 593L, (short)1, "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/cloudflare/all" }, + { 474L, 594L, (short)1, "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/facebook/all" }, + { 475L, 595L, (short)1, "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/mozilla/all" }, + { 476L, 596L, (short)1, "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/microsoft/all" }, + { 477L, 597L, (short)1, "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/google/non_localized" }, + { 478L, 598L, (short)1, "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/google/localized" }, + { 479L, 599L, (short)1, "https://easylist-downloads.adblockplus.org/easylistpolish.txt" }, + { 480L, 600L, (short)1, "https://raw.githubusercontent.com/yecarrillo/adblock-colombia/master/adblock_co.txt" }, + { 481L, 601L, (short)1, "https://block.energized.pro/spark/formats/hosts.txt" }, + { 482L, 602L, (short)1, "https://block.energized.pro/bluGo/formats/hosts.txt" }, + { 482L, 603L, (short)2, "https://block.energized.pro/bluGo/formats/hosts.txt" }, + { 483L, 604L, (short)1, "https://block.energized.pro/blu/formats/hosts.txt" }, + { 484L, 605L, (short)1, "https://block.energized.pro/basic/formats/hosts.txt" }, + { 485L, 606L, (short)1, "https://block.energized.pro/porn/formats/hosts.txt" }, + { 486L, 607L, (short)1, "https://block.energized.pro/ultimate/formats/hosts.txt" }, + { 487L, 608L, (short)1, "https://block.energized.pro/unified/formats/hosts.txt" }, + { 490L, 609L, (short)1, "https://raw.githubusercontent.com/CyanideBrother/anti-pr0n/master/hosts" }, + { 491L, 610L, (short)1, "https://raw.githubusercontent.com/StevenBlack/hosts/master/extensions/porn/clefspeare13/hosts" }, + { 492L, 611L, (short)1, "https://raw.githubusercontent.com/mhxion/pornaway/master/hosts/porn_sites.txt" }, + { 493L, 612L, (short)1, "https://raw.githubusercontent.com/mhxion/pornaway/master/hosts/porn_ads.txt" }, + { 494L, 613L, (short)1, "https://raw.githubusercontent.com/mitchellkrogza/Badd-Boyz-Hosts/master/hosts" }, + { 495L, 614L, (short)1, "https://raw.githubusercontent.com/MetaMask/eth-phishing-detect/master/src/hosts.txt" }, + { 496L, 615L, (short)1, "https://raw.githubusercontent.com/MrThreat/Confirmed-Phish/master/phish.txt" }, + { 504L, 616L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Adblock list templates/Adblock list template -Beginner-.txt" }, + { 504L, 617L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Adblock list templates/Adblock list template -Beginner-.txt" }, + { 505L, 618L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Adblock list templates/Adblock list template -Novice-.txt" }, + { 505L, 619L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Adblock list templates/Adblock list template -Novice-.txt" }, + { 506L, 620L, (short)1, "https://easylist-downloads.adblockplus.org/exceptionrules-privacy-friendly.txt" }, + { 507L, 621L, (short)1, "https://easylist-msie.adblockplus.org/easylist.tpl" }, + { 509L, 623L, (short)1, "https://raw.githubusercontent.com/endolith/clickbait/master/clickbait.txt" }, + { 510L, 624L, (short)1, "https://raw.githubusercontent.com/UnluckyLuke/BlockUnderRadarJunk/master/blockunderradarjunk-list.txt" }, + { 512L, 625L, (short)1, "https://raw.githubusercontent.com/xd4rker/MinerBlock/master/assets/filters.txt" }, + { 513L, 626L, (short)1, "https://raw.githubusercontent.com/hit3shjain/Andromeda-ublock-list/master/hosts.txt" }, + { 515L, 628L, (short)1, "https://paulgb.github.io/BarbBlock/blacklists/ublock-origin.txt" }, + { 516L, 629L, (short)1, "https://paulgb.github.io/BarbBlock/blacklists/domain-list.txt" }, + { 517L, 630L, (short)1, "https://paulgb.github.io/BarbBlock/blacklists/adblock-plus.txt" }, + { 518L, 631L, (short)1, "https://www.dshield.org/feeds/suspiciousdomains_Low.txt" }, + { 519L, 632L, (short)1, "https://www.dshield.org/feeds/suspiciousdomains_Medium.txt" }, + { 519L, 633L, (short)2, "https://isc.sans.edu/feeds/suspiciousdomains_Medium.txt" }, + { 520L, 634L, (short)1, "https://www.dshield.org/feeds/suspiciousdomains_High.txt" }, + { 521L, 635L, (short)1, "https://list.kwbt.de/kwbtlist.txt" }, + { 522L, 636L, (short)1, "https://list.kwbt.de/kwbtlist.txt" }, + { 525L, 637L, (short)1, "https://raw.githubusercontent.com/chadmayfield/my-pihole-blocklists/master/lists/pi_blocklist_porn_top1m.list" }, + { 525L, 638L, (short)2, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Chad-Mayfield-Porn-Blocklist-Light.txt" }, + { 526L, 639L, (short)1, "https://raw.githubusercontent.com/chadmayfield/my-pihole-blocklists/master/lists/pi_blocklist_porn_all.list" }, + { 526L, 640L, (short)2, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Chad-Mayfield-Porn-Blocklist-Heavy.txt" }, + { 562L, 641L, (short)1, "https://raw.githubusercontent.com/xinggsf/Adblock-Plus-Rule/master/ABP-FX.txt" }, + { 563L, 642L, (short)1, "https://raw.githubusercontent.com/andromedarabbit/List-KR/master/filter.txt" }, + { 564L, 643L, (short)1, "https://fanboy.co.nz/fanboy-problematic-sites.txt" }, + { 565L, 644L, (short)1, "https://cdn.adblockcdn.com/filters/easylist_lite.txt" }, + { 566L, 645L, (short)1, "https://easylist-msie.adblockplus.org/abp-filters-anti-cv.txt" }, + { 566L, 2596L, (short)2, "https://easylist-downloads.adblockplus.org/abp-filters-anti-cv.txt" }, + { 569L, 646L, (short)1, "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/chinese.txt" }, + { 570L, 647L, (short)1, "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/czech.txt" }, + { 573L, 648L, (short)1, "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/english.txt" }, + { 574L, 649L, (short)1, "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/french.txt" }, + { 575L, 650L, (short)1, "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/german.txt" }, + { 583L, 651L, (short)1, "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/portuguese.txt" }, + { 585L, 652L, (short)1, "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/russian.txt" }, + { 586L, 653L, (short)1, "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/spanish.txt" }, + { 589L, 654L, (short)1, "https://raw.githubusercontent.com/Sinfonietta/hostfiles/master/gambling-hosts" }, + { 590L, 655L, (short)1, "https://raw.githubusercontent.com/Sinfonietta/hostfiles/master/pornography-hosts" }, + { 591L, 656L, (short)1, "https://raw.githubusercontent.com/Sinfonietta/hostfiles/master/snuff-hosts" }, + { 592L, 657L, (short)1, "https://raw.githubusercontent.com/Sinfonietta/hostfiles/master/social-hosts" }, + { 593L, 658L, (short)1, "https://raw.githubusercontent.com/marktron/fakenews/master/fakenews" }, + { 595L, 659L, (short)1, "https://www.github.developerdan.com/hosts/lists/ads-and-tracking-extended.txt" }, + { 596L, 660L, (short)1, "https://www.github.developerdan.com/hosts/lists/tracking-aggressive-extended.txt" }, + { 598L, 661L, (short)1, "https://raw.githubusercontent.com/bigdargon/hostsVN/master/hosts" }, + { 599L, 662L, (short)1, "https://abpvn.com/android/abpvn.txt" }, + { 600L, 663L, (short)1, "https://raw.githubusercontent.com/abpvn/abpvn/master/filter/abpvn_noelemhide.txt" }, + { 601L, 664L, (short)1, "https://raw.githubusercontent.com/kowith337/ThaiAntiTokenSites/master/AntiPumpSites.txt" }, + { 601L, 665L, (short)2, "https://gitlab.com/kowith337/ThaiAntiTokenSites/raw/master/AntiPumpSites.txt" }, + { 602L, 666L, (short)1, "https://raw.githubusercontent.com/kowith337/ThaiAntiTokenSites/master/AntiPumpSites_hosts.txt" }, + { 602L, 667L, (short)2, "https://gitlab.com/kowith337/ThaiAntiTokenSites/raw/master/AntiPumpSites_hosts.txt" }, + { 603L, 668L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-Elsagate List.txt" }, + { 603L, 669L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-Elsagate List.txt" }, + { 604L, 670L, (short)1, "https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/stopforumspam_30d.ipset" }, + { 605L, 671L, (short)1, "https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/firehol_level3.netset" }, + { 606L, 672L, (short)1, "https://raw.githubusercontent.com/jerryn70/GoodbyeAds/master/Hosts/GoodbyeAds.txt" }, + { 607L, 673L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_newsletters.txt" }, + { 608L, 674L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_arrows.txt" }, + { 609L, 675L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_push.txt" }, + { 610L, 676L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_scrolling_videos.txt" }, + { 611L, 677L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_backgrounds_self-advertising.txt" }, + { 612L, 678L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_pop-ups.txt" }, + { 613L, 679L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_contact_feedback_widgets.txt" }, + { 614L, 680L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_tagged_internal_links.txt" }, + { 616L, 681L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_other_widgets.txt" }, + { 617L, 682L, (short)1, "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=hosts&showintro=1&mimetype=plaintext" }, + { 617L, 683L, (short)2, "https://raw.githubusercontent.com/StevenBlack/hosts/master/data/yoyo.org/hosts" }, + { 618L, 684L, (short)1, "https://bitbucket.org/ethanr/dns-blacklists/raw/8575c9f96e5b4a1308f2f12394abd86d0927a4a0/bad_lists/Mandiant_APT1_Report_Appendix_D.txt" }, + { 618L, 685L, (short)2, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Mandiant-APT1-Report.txt" }, + { 619L, 686L, (short)1, "https://raw.githubusercontent.com/HenningVanRaumle/pihole-ytadblock/master/ytadblock.txt" }, + { 625L, 687L, (short)1, "https://raw.githubusercontent.com/nathanaccidentally/SystemHostsBlocker/master/hosts" }, + { 626L, 688L, (short)1, "https://raw.githubusercontent.com/tyzbit/hosts/master/data/tyzbit/hosts" }, + { 628L, 689L, (short)1, "https://raw.githubusercontent.com/TakoYachty/Gift-Card-Killer/master/Untrusted Hosts Blocker.txt" }, + { 630L, 690L, (short)1, "https://v.firebog.net/hosts/AdguardDNS.txt" }, + { 631L, 691L, (short)1, "https://v.firebog.net/hosts/Prigent-Phishing.txt" }, + { 631L, 692L, (short)2, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Prigent-Phishing.txt" }, + { 632L, 693L, (short)1, "https://v.firebog.net/hosts/static/SamsungSmart.txt" }, + { 658L, 694L, (short)1, "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/filters/generic_filters.txt" }, + { 659L, 695L, (short)1, "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/filters/modal_filters.txt" }, + { 660L, 696L, (short)1, "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/filters/newsletter_filters.txt" }, + { 661L, 697L, (short)1, "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/filters/social_filters.txt" }, + { 663L, 698L, (short)1, "https://raw.githubusercontent.com/nmtrung/FMSF-2.0/master/fmsf_2.0.txt" }, + { 664L, 699L, (short)1, "https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/AdguardMobileAds.txt" }, + { 665L, 700L, (short)1, "https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/AdguardMobileSpyware.txt" }, + { 666L, 701L, (short)1, "https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/AdguardApps.txt" }, + { 667L, 702L, (short)1, "https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/AdguardDNS.txt" }, + { 668L, 703L, (short)1, "https://tgc.cloud/downloads/iOSAds.txt" }, + { 669L, 704L, (short)1, "https://tgc.cloud/downloads/hosts.txt" }, + { 670L, 705L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/LittleSnitchNorwegianList.lsrules" }, + { 670L, 706L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/LittleSnitchNorwegianList.lsrules" }, + { 671L, 707L, (short)1, "https://obdev.at/resources/littlesnitch/blocklist-example.lsrules" }, + { 672L, 708L, (short)1, "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=littlesnitch-rule-group-subscriptions;showintro=1&mimetype=plaintext" }, + { 673L, 709L, (short)1, "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=msfilter&showintro=1&mimetype=plaintext" }, + { 674L, 710L, (short)1, "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=nohtml&showintro=1&mimetype=plaintext" }, + { 675L, 711L, (short)1, "https://pgl.yoyo.org/adservers/iplist.php?ipformat=plain&showintro=1&mimetype=plaintext" }, + { 676L, 712L, (short)1, "https://pgl.yoyo.org/as/serverlist.php?hostformat=junkbuster;showintro=1&mimetype=plaintext" }, + { 677L, 713L, (short)1, "https://pgl.yoyo.org/as/serverlist.php?hostformat=adblock;showintro=1&mimetype=plaintext" }, + { 678L, 714L, (short)1, "https://gist.githubusercontent.com/sx2008/2766874/raw/c12a305decef3332663d1e04efa80b881211cfac/user.action" }, + { 679L, 715L, (short)1, "https://raw.githubusercontent.com/fdb/privoxy-config/master/block-trackers.action" }, + { 680L, 716L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/DandelionSproutsNorskeFiltreDomains.txt" }, + { 680L, 717L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/DandelionSproutsNorskeFiltreDomains.txt" }, + { 681L, 718L, (short)1, "https://www.malwaredomainlist.com/hostslist/ip.txt" }, + { 682L, 719L, (short)1, "https://malc0de.com/bl/IP_Blacklist.txt" }, + { 683L, 720L, (short)1, "http://www.urlvir.com/export-ip-addresses/" }, + { 684L, 721L, (short)1, "http://www.urlvir.com/export-hosts/" }, + { 686L, 724L, (short)1, "https://cdn.adblockcdn.com/filters/adblock_custom.txt" }, + { 687L, 725L, (short)1, "http://www.quero.at/download/adblock-hosts.zip" }, + { 689L, 726L, (short)1, "https://raw.githubusercontent.com/xxcriticxx/.pl-host-file/master/hosts.txt" }, + { 690L, 727L, (short)1, "https://raw.githubusercontent.com/mitchellkrogza/Suspicious.Snooping.Sniffing.Hacking.IP.Addresses/master/ips.list" }, + { 691L, 728L, (short)1, "https://raw.githubusercontent.com/mitchellkrogza/Top-Attacking-IP-Addresses-Against-Wordpress-Sites/master/wordpress-attacking-ips.txt" }, + { 692L, 729L, (short)1, "https://raw.githubusercontent.com/mitchellkrogza/The-Big-List-of-Hacked-Malware-Web-Sites/master/hacked-domains.list" }, + { 693L, 730L, (short)1, "https://hosts.ubuntu101.co.za/hosts" }, + { 694L, 731L, (short)1, "https://hosts.ubuntu101.co.za/domains.list" }, + { 696L, 732L, (short)1, "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/dan-pollock-someonewhocares-org.txt" }, + { 697L, 733L, (short)1, "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/mvps-hosts-file.txt" }, + { 698L, 734L, (short)1, "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/malware-domain-list.txt" }, + { 699L, 735L, (short)1, "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/nocoin.txt" }, + { 700L, 736L, (short)1, "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/easylist.txt" }, + { 703L, 737L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/KADhosts/master/KADomains.txt" }, + { 704L, 738L, (short)1, "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/steven-blacks-ad-hoc-list.txt" }, + { 705L, 739L, (short)1, "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/coinblocker.txt" }, + { 706L, 740L, (short)1, "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/add-2o7net.txt" }, + { 707L, 741L, (short)1, "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/add-dead.txt" }, + { 708L, 742L, (short)1, "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/add-risk.txt" }, + { 709L, 743L, (short)1, "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/add-spam.txt" }, + { 710L, 744L, (short)1, "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/tyzbit.txt" }, + { 710L, 745L, (short)2, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Tyzbit.txt" }, + { 711L, 746L, (short)1, "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/uncheckyads.txt" }, + { 712L, 747L, (short)1, "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/spotifyads.txt" }, + { 715L, 748L, (short)1, "https://raw.githubusercontent.com/highsea/Hosts/master/host-include-appale/hosts" }, + { 717L, 750L, (short)1, "https://raw.githubusercontent.com/superliaoyong/hosts/master/hosts" }, + { 718L, 751L, (short)1, "https://raw.githubusercontent.com/popcorner/cernet-ipv6-hosts/hosts/hosts" }, + { 719L, 752L, (short)1, "https://ads-for-open-source.readthedocs.io/en/latest/_static/lists/opensource-ads.txt" }, + { 720L, 753L, (short)1, "https://nonio.pt/antinonio.txt" }, + { 721L, 754L, (short)1, "https://raw.githubusercontent.com/brunomiguel/antinonio/master/antinonio.txt" }, + { 722L, 755L, (short)1, "https://gist.githubusercontent.com/balupton/6960605/raw/16bfeff88761b16296ed3ee15fbacf6840f1701a/filter-twitterdrama.txt" }, + { 723L, 756L, (short)1, "https://gist.githubusercontent.com/balupton/6960605/raw/16bfeff88761b16296ed3ee15fbacf6840f1701a/filter-feedlyads.txt" }, + { 724L, 757L, (short)1, "https://gist.githubusercontent.com/balupton/6960605/raw/16bfeff88761b16296ed3ee15fbacf6840f1701a/filter-facebookdrama.txt" }, + { 726L, 758L, (short)1, "https://raw.githubusercontent.com/whtsky/abp-rules/master/rules.txt" }, + { 726L, 759L, (short)2, "https://abp.tt.codes/rules.txt" }, + { 728L, 760L, (short)1, "https://raw.githubusercontent.com/realodix/AdBlockID/master/output/adblockid.txt" }, + { 729L, 761L, (short)1, "https://raw.githubusercontent.com/theel0ja/CrapBlock/master/crapblock-annoyances.txt" }, + { 729L, 762L, (short)2, "https://crapblock.theel0ja.info/crapblock-annoyances.txt" }, + { 729L, 763L, (short)3, "https://gitlab.com/theel0ja/crapblock/raw/master/crapblock-annoyances.txt" }, + { 730L, 764L, (short)1, "https://raw.githubusercontent.com/theel0ja/CrapBlock/master/block-googlefonts.txt" }, + { 730L, 765L, (short)2, "https://crapblock.theel0ja.info/block-googlefonts.txt" }, + { 730L, 766L, (short)3, "https://gitlab.com/theel0ja/crapblock/raw/master/block-googlefonts.txt" }, + { 731L, 767L, (short)1, "https://raw.githubusercontent.com/NeeEoo/AdBlockNeeEoo/master/List.txt" }, + { 734L, 769L, (short)1, "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/imageboard/GelboLube.txt" }, + { 734L, 770L, (short)2, "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/imageboard/GelboLube.txt" }, + { 735L, 771L, (short)1, "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/specific/AntiAPKMirrorCountdown.txt" }, + { 735L, 772L, (short)2, "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/specific/AntiAPKMirrorCountdown.txt" }, + { 736L, 773L, (short)1, "https://raw.githubusercontent.com/OsborneSystems/Columbia/master/Columbia.txt" }, + { 743L, 774L, (short)1, "https://raw.githubusercontent.com/akopachov/uBlock-AK-filter-rules/master/entertainment" }, + { 744L, 775L, (short)1, "https://raw.githubusercontent.com/Hunter-Github/the-best-stack-overflow/master/se_filters.txt" }, + { 746L, 776L, (short)1, "https://raw.githubusercontent.com/Hakame-kun/uBlock-Filters-Indonesia/master/uBlock Indo/ubindo.txt" }, + { 747L, 777L, (short)1, "https://raw.githubusercontent.com/nimasaj/uBOPa/master/uBOPa.txt" }, + { 747L, 778L, (short)2, "https://mynext.pro/uBOPa.txt" }, + { 748L, 779L, (short)1, "https://www.microsoft.com/cms/api/am/binary/RWilsQ" }, + { 749L, 780L, (short)1, "https://easylist-msie.adblockplus.org/malwaredomains_full.tpl" }, + { 750L, 781L, (short)1, "https://easy-tracking-protection.truste.com/easy.tpl" }, + { 751L, 782L, (short)1, "https://jansal.net/tpl/ricklist.tpl" }, + { 752L, 783L, (short)1, "https://jansal.net/tpl/popup-block.tpl" }, + { 753L, 784L, (short)1, "https://jansal.net/tpl/obtrusive.tpl" }, + { 754L, 785L, (short)1, "https://jansal.net/tpl/malpatrol.tpl" }, + { 755L, 786L, (short)1, "https://jansal.net/tpl/m.tpl" }, + { 756L, 787L, (short)1, "https://jansal.net/tpl/latvian-list.tpl" }, + { 757L, 788L, (short)1, "https://jansal.net/tpl/facebook-connect-optout-adblockplusfilter.tpl" }, + { 758L, 789L, (short)1, "https://jansal.net/tpl/adblock-persian.tpl" }, + { 759L, 790L, (short)1, "https://jansal.net/tpl/IsraelList.tpl" }, + { 760L, 791L, (short)1, "https://jansal.net/tpl/Adversity/Antisocial.tpl" }, + { 761L, 792L, (short)1, "https://jansal.net/tpl/Adversity/Adversity.tpl" }, + { 762L, 793L, (short)1, "https://www.fanboy.co.nz/adblock/ie/fanboy-noele.tpl" }, + { 763L, 794L, (short)1, "https://www.fanboy.co.nz/adblock/ie/fanboy-tracking.tpl" }, + { 764L, 795L, (short)1, "https://jansal.net/tpl/fanboy/enhancedstats-addon.tpl" }, + { 765L, 796L, (short)1, "https://jansal.net/tpl/fanboy/fanboy-adult.tpl" }, + { 766L, 797L, (short)1, "https://raw.githubusercontent.com/lilydjwg/abp-rules/master/list.txt" }, + { 767L, 798L, (short)1, "https://raw.githubusercontent.com/OwlStudioCN/owl-abp-rules/master/owl-abp-rules.txt" }, + { 769L, 799L, (short)1, "https://raw.githubusercontent.com/Manu1400/i-don-t-care-about-newsletters/master/adp.txt" }, + { 770L, 800L, (short)1, "https://adp.magnobiet.com/list.txt" }, + { 772L, 801L, (short)1, "https://raw.githubusercontent.com/kbinani/adblock-wikipedia/master/signed.txt" }, + { 773L, 802L, (short)1, "https://easylist-msie.adblockplus.org/easylistgermany+easylist.tpl" }, + { 774L, 803L, (short)1, "https://easylist-msie.adblockplus.org/fanboy-annoyance.tpl" }, + { 775L, 804L, (short)1, "https://easylist-msie.adblockplus.org/easylistlithuania+easylist.tpl" }, + { 776L, 805L, (short)1, "https://easylist-msie.adblockplus.org/bulgarian_list+easylist.tpl" }, + { 777L, 806L, (short)1, "https://easylist-msie.adblockplus.org/latvianlist+easylist.tpl" }, + { 778L, 807L, (short)1, "https://easylist-msie.adblockplus.org/easyprivacy+easylist.tpl" }, + { 779L, 808L, (short)1, "https://easylist-msie.adblockplus.org/easylistitaly+easylist.tpl" }, + { 780L, 809L, (short)1, "https://easylist-msie.adblockplus.org/israellist+easylist.tpl" }, + { 781L, 810L, (short)1, "https://easylist-msie.adblockplus.org/easylistchina+easylist.tpl" }, + { 782L, 811L, (short)1, "https://easylist-msie.adblockplus.org/easylistdutch+easylist.tpl" }, + { 783L, 812L, (short)1, "https://easylist-msie.adblockplus.org/rolist+easylist.tpl" }, + { 784L, 813L, (short)1, "https://easylist-msie.adblockplus.org/wiltteri+easylist.tpl" }, + { 785L, 814L, (short)1, "https://easylist-msie.adblockplus.org/fanboy-social.tpl" }, + { 786L, 815L, (short)1, "https://easylist-msie.adblockplus.org/liste_ar+liste_fr+easylist.tpl" }, + { 787L, 816L, (short)1, "https://easylist-msie.adblockplus.org/ruadlist+easylist.tpl" }, + { 788L, 817L, (short)1, "https://easylist-msie.adblockplus.org/Liste_AR.tpl" }, + { 789L, 818L, (short)1, "https://easylist-msie.adblockplus.org/easylistdutch.tpl" }, + { 790L, 819L, (short)1, "https://easylist-msie.adblockplus.org/easyprivacy_nointernational.tpl" }, + { 791L, 820L, (short)1, "https://easylist-msie.adblockplus.org/advblock.tpl" }, + { 792L, 821L, (short)1, "https://easylist-msie.adblockplus.org/easylist_noadult.tpl" }, + { 793L, 822L, (short)1, "https://easylist-msie.adblockplus.org/easylistspanish.tpl" }, + { 794L, 823L, (short)1, "https://easylist-msie.adblockplus.org/easylistchina.tpl" }, + { 795L, 824L, (short)1, "https://easylist-msie.adblockplus.org/liste_fr.tpl" }, + { 796L, 825L, (short)1, "https://easylist-msie.adblockplus.org/easylistgermany.tpl" }, + { 797L, 826L, (short)1, "https://easylist-msie.adblockplus.org/antiadblockfilters.tpl" }, + { 798L, 827L, (short)1, "https://easylist-msie.adblockplus.org/liste_fr+easylist.tpl" }, + { 799L, 828L, (short)1, "https://easylist-msie.adblockplus.org/easylistitaly.tpl" }, + { 800L, 829L, (short)1, "https://easylist-msie.adblockplus.org/easylistspanish+easylist.tpl" }, + { 801L, 830L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/ABP Macedonian List.txt" }, + { 802L, 831L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Liste DZ.txt" }, + { 803L, 832L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Snaevar87's Icelandic filter.txt" }, + { 804L, 833L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/TamilFriends List.txt" }, + { 805L, 834L, (short)1, "https://easylist-downloads.adblockplus.org/advblock+cssfixes.txt" }, + { 806L, 835L, (short)1, "https://easylist-downloads.adblockplus.org/easylistportuguese.txt" }, + { 807L, 836L, (short)1, "https://raw.githubusercontent.com/luigimannoni/m5s-ublock-filter/master/filter-list.txt" }, + { 808L, 837L, (short)1, "https://ajnasz.hu/adblock/recent" }, + { 809L, 838L, (short)1, "https://www.ergensin.nl/adblock/nlblock.txt" }, + { 809L, 839L, (short)2, "http://www.verzijlbergh.com/adblock/nlblock.txt" }, + { 810L, 840L, (short)1, "https://raw.githubusercontent.com/badmojr/1Hosts/master/complete/domains.txt" }, + { 811L, 841L, (short)1, "https://raw.githubusercontent.com/badmojr/1Hosts/master/mini/hosts.txt" }, + { 812L, 842L, (short)1, "https://raw.githubusercontent.com/badmojr/1Hosts/master/mini/domains.txt" }, + { 813L, 843L, (short)1, "https://raw.githubusercontent.com/jwinnie/acceptable-ads/master/filters.txt" }, + { 814L, 844L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/gmbkslist.txt" }, + { 815L, 845L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Adblocking Open Filter JP" }, + { 816L, 846L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/I Don't Want to Download Your Browser.txt" }, + { 816L, 847L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/I Don't Want to Download Your Browser.txt" }, + { 817L, 848L, (short)1, "https://raw.githubusercontent.com/lassekongo83/Frellwits-filter-lists/master/Frellwits-Swedish-Hosts-File.txt" }, + { 817L, 849L, (short)2, "https://repo.or.cz/Adblock-list-backups-Frellwits-filter-lists.git/blob_plain/refs/heads/master:/Frellwits-Swedish-Hosts-File.txt" }, + { 818L, 850L, (short)1, "https://easylist-downloads.adblockplus.org/indianlist.txt" }, + { 819L, 851L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/YouTubeEvenMorePureVideoExperience.txt" }, + { 819L, 852L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/YouTubeEvenMorePureVideoExperience.txt" }, + { 821L, 854L, (short)1, "https://raw.githubusercontent.com/brave/adblock-lists/master/brave-unbreak.txt" }, + { 822L, 855L, (short)1, "https://raw.githubusercontent.com/VeleSila/VELE-SILA-List/gh-pages/KaFanList.txt" }, + { 823L, 856L, (short)1, "https://raw.githubusercontent.com/gasull/adblock-nsa/master/filters.txt" }, + { 824L, 857L, (short)1, "https://raw.githubusercontent.com/mistalaba/popover-blocklist/master/blocklist.txt" }, + { 825L, 858L, (short)1, "https://raw.githubusercontent.com/jasonbarone/membership-app-block-list/master/membership-app-block-list.txt" }, + { 826L, 859L, (short)1, "https://raw.githubusercontent.com/w13d/adblockListABP-PiHole/master/Spotify.txt" }, + { 827L, 860L, (short)1, "https://raw.githubusercontent.com/w13d/adblockListABP-PiHole/master/list.txt" }, + { 828L, 861L, (short)1, "https://raw.githubusercontent.com/evenxzero/Raajje-AdList/master/filter.txt" }, + { 829L, 862L, (short)1, "https://raw.githubusercontent.com/miyurusankalpa/adblock-list-sri-lanka/master/lkfilter.txt" }, + { 830L, 863L, (short)1, "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/adblock.conf" }, + { 831L, 864L, (short)1, "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/ads01.conf" }, + { 832L, 865L, (short)1, "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/facebookblock.conf" }, + { 833L, 866L, (short)1, "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/fastclick.conf" }, + { 834L, 867L, (short)1, "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/google.conf" }, + { 835L, 868L, (short)1, "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/microsoftblock.conf" }, + { 836L, 869L, (short)1, "https://raw.githubusercontent.com/Recon/romanian-media-propaganda-adblock-list/master/ro-media-blocklist.txt" }, + { 837L, 870L, (short)1, "https://raw.githubusercontent.com/duskwuff/syndicationblock/master/filters.txt" }, + { 839L, 872L, (short)1, "https://raw.githubusercontent.com/Manu1400/i-don-t-care-about-gotoup-btns/master/list-gotoup-btns.txt" }, + { 840L, 873L, (short)1, "https://raw.githubusercontent.com/KCaglarCoskun/enur-filter-list/master/enur-filter-list.txt" }, + { 841L, 874L, (short)1, "https://raw.githubusercontent.com/LinuxLowell/chat-annoyances/master/chat-annoyances.txt" }, + { 842L, 875L, (short)1, "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=dnsmasq&showintro=1&mimetype=plaintext" }, + { 843L, 876L, (short)1, "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/facebook/FacebookZuckestionKiller.txt" }, + { 843L, 877L, (short)2, "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/facebook/FacebookZuckestionKiller.txt" }, + { 844L, 878L, (short)1, "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/facebook/FacebookCommands.txt" }, + { 844L, 879L, (short)2, "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/facebook/FacebookCommands.txt" }, + { 845L, 880L, (short)1, "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/hosts/hosts_google_adservice_id.txt" }, + { 845L, 881L, (short)2, "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/hosts/hosts_google_adservice_id.txt" }, + { 846L, 882L, (short)1, "https://raw.githubusercontent.com/kowith337/ThaiParanoidBlock/maximum/ThaiParanoid.txt" }, + { 846L, 883L, (short)2, "https://gitlab.com/kowith337/ThaiParanoidBlock/raw/maximum/ThaiParanoid.txt" }, + { 847L, 884L, (short)1, "https://raw.githubusercontent.com/sipp11/th_ad_filters/master/th_list.txt" }, + { 848L, 885L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/TwitchPureViewingExperience.txt" }, + { 848L, 886L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/TwitchPureViewingExperience.txt" }, + { 850L, 887L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAbusePorn.txt" }, + { 850L, 888L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAbusePorn.txt" }, + { 851L, 889L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/WikiaPureBrowsingExperience.txt" }, + { 851L, 890L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/WikiaPureBrowsingExperience.txt" }, + { 852L, 891L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/YouTubeYetEvenMorePureVideoExperience.txt" }, + { 852L, 892L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/YouTubeYetEvenMorePureVideoExperience.txt" }, + { 853L, 893L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/VeryThoroughWebsiteCleaner.txt" }, + { 853L, 894L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/VeryThoroughWebsiteCleaner.txt" }, + { 855L, 895L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/MeWe Pink Theme.txt" }, + { 855L, 896L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/MeWe Pink Theme.txt" }, + { 856L, 897L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Pro-LED List.txt" }, + { 856L, 898L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Pro-LED List.txt" }, + { 857L, 899L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Dandelion Sprout-s Redirector Assistant List/TorRedirectorList.json" }, + { 857L, 900L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Dandelion Sprout-s Redirector Assistant List/TorRedirectorList.json" }, + { 859L, 904L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-Futa List.txt" }, + { 859L, 905L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-Futa List.txt" }, + { 860L, 906L, (short)1, "https://bitbucket.org/nicktabick/adblock-rules/raw/master/nt-adblock.txt" }, + { 860L, 907L, (short)2, "https://raw.githubusercontent.com/nicktabick/adblock-rules/master/nt-adblock.txt" }, + { 860L, 908L, (short)3, "https://gitlab.com/nicktabick/adblock-rules/raw/master/nt-adblock.txt" }, + { 861L, 909L, (short)1, "https://raw.githubusercontent.com/bogachenko/filterlist/master/filterlist.txt" }, + { 862L, 910L, (short)1, "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/other/SurvivedTrackingLinkWarning.txt" }, + { 862L, 911L, (short)2, "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/other/SurvivedTrackingLinkWarning.txt" }, + { 863L, 912L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-'Christmas carols' List.txt" }, + { 863L, 913L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-'Christmas carols' List.txt" }, + { 866L, 914L, (short)1, "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/hosts/hosts_facebook0.txt" }, + { 866L, 915L, (short)2, "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/hosts/hosts_facebook0.txt" }, + { 868L, 918L, (short)1, "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/mochi_filter.txt" }, + { 869L, 919L, (short)1, "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/mochi_filter_2gun.txt" }, + { 870L, 920L, (short)1, "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/mochi_filter_amazon.txt" }, + { 871L, 921L, (short)1, "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/mochi_filter_extended.txt" }, + { 872L, 922L, (short)1, "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/negi_filter.txt" }, + { 873L, 923L, (short)1, "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/negi_google_hplogo_block.txt" }, + { 874L, 924L, (short)1, "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/negi_twitter_allow_save_multi_images.txt" }, + { 875L, 925L, (short)1, "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/kame_filter.txt" }, + { 876L, 926L, (short)1, "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/kotori_filter.txt" }, + { 877L, 927L, (short)1, "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/kujira_filter.txt" }, + { 878L, 928L, (short)1, "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/ichigo_filter.txt" }, + { 879L, 929L, (short)1, "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/tamago_filter.txt" }, + { 881L, 930L, (short)1, "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/youtube_wo_tonikaku_filter.txt" }, + { 882L, 931L, (short)1, "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/all.txt" }, + { 884L, 932L, (short)1, "https://raw.githubusercontent.com/finnish-easylist-addition/finnish-easylist-addition/master/Finland_adb.txt" }, + { 885L, 933L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Afghanistan.txt" }, + { 886L, 934L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Aland.txt" }, + { 887L, 935L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Albania.txt" }, + { 888L, 936L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Algeria.txt" }, + { 889L, 937L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/AmericanSamoa.txt" }, + { 890L, 938L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Andorra.txt" }, + { 891L, 939L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Angola.txt" }, + { 892L, 940L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Anguilla.txt" }, + { 893L, 941L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Antarctica.txt" }, + { 894L, 942L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/AntiguaAndBarbuda.txt" }, + { 895L, 943L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Argentina.txt" }, + { 896L, 944L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Armenia.txt" }, + { 897L, 945L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/AscensionIsland.txt" }, + { 898L, 946L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Australia.txt" }, + { 899L, 947L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Austria.txt" }, + { 900L, 948L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Azerbaijan.txt" }, + { 901L, 949L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bahamas.txt" }, + { 902L, 950L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bahrain.txt" }, + { 903L, 951L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bangladesh.txt" }, + { 904L, 952L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Belarus.txt" }, + { 905L, 953L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Belgium.txt" }, + { 906L, 954L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Belize.txt" }, + { 907L, 955L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bermuda.txt" }, + { 908L, 956L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bhutan.txt" }, + { 909L, 957L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bolivia.txt" }, + { 910L, 958L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bonaire.txt" }, + { 911L, 959L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/BosniaAndHerzegovina.txt" }, + { 912L, 960L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Botswana.txt" }, + { 913L, 961L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Brazil.txt" }, + { 914L, 962L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/BritishIndianOceanTerritory.txt" }, + { 915L, 963L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/BritishVirginIslands.txt" }, + { 916L, 964L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bulgaria.txt" }, + { 917L, 965L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/BurkinaFaso.txt" }, + { 918L, 966L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Burundi.txt" }, + { 919L, 967L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Cambodia.txt" }, + { 920L, 968L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Cameroon.txt" }, + { 921L, 969L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Canada.txt" }, + { 922L, 970L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CapeVerde.txt" }, + { 923L, 971L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Catalonia.txt" }, + { 924L, 972L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CaymanIslands.txt" }, + { 925L, 973L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CentralAfricanRepublic.txt" }, + { 926L, 974L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Chile.txt" }, + { 927L, 975L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/ChinaPeoplesRepublicof.txt" }, + { 928L, 976L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/ChristmasIsland.txt" }, + { 929L, 977L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CocosKeelingIslands.txt" }, + { 930L, 978L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Colombia.txt" }, + { 931L, 979L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CongoKinshasa.txt" }, + { 932L, 980L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CookIslands.txt" }, + { 933L, 981L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CostaRica.txt" }, + { 934L, 982L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Croatia.txt" }, + { 935L, 983L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Cuba.txt" }, + { 936L, 984L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Cyprus.txt" }, + { 937L, 985L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CzechRepublic.txt" }, + { 938L, 986L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Denmark.txt" }, + { 939L, 987L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Djibouti.txt" }, + { 940L, 988L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Dominica.txt" }, + { 941L, 989L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/DominicanRepublic.txt" }, + { 942L, 990L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Ecuador.txt" }, + { 943L, 991L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Egypt.txt" }, + { 944L, 992L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/ElSalvador.txt" }, + { 945L, 993L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/EquatorialGuinea.txt" }, + { 946L, 994L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Estonia.txt" }, + { 947L, 995L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/EuropeanUnion.txt" }, + { 948L, 996L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/FaeroeIslands.txt" }, + { 949L, 997L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/FederatedStatesOfMicronesia.txt" }, + { 950L, 998L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Fiji.txt" }, + { 951L, 999L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Finland.txt" }, + { 952L, 1000L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/France.txt" }, + { 953L, 1001L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/FrenchPolynesia.txt" }, + { 954L, 1002L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/FrenchSouthernAndAntarcticLands.txt" }, + { 955L, 1003L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/GaboneseRepublic.txt" }, + { 956L, 1004L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Gambia.txt" }, + { 957L, 1005L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/GazaStrip.txt" }, + { 958L, 1006L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Georgia.txt" }, + { 959L, 1007L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Germany.txt" }, + { 960L, 1008L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Ghana.txt" }, + { 961L, 1009L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Greece.txt" }, + { 962L, 1010L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Greenland.txt" }, + { 963L, 1011L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Grenada.txt" }, + { 964L, 1012L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guadeloupe.txt" }, + { 965L, 1013L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guam.txt" }, + { 966L, 1014L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guatemala.txt" }, + { 967L, 1015L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guernsey.txt" }, + { 968L, 1016L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guinea.txt" }, + { 969L, 1017L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guyana.txt" }, + { 970L, 1018L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Haiti.txt" }, + { 971L, 1019L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/HeardIslandAndMcDonaldIslands.txt" }, + { 972L, 1020L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Honduras.txt" }, + { 973L, 1021L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/HongKong.txt" }, + { 974L, 1022L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Hungary.txt" }, + { 975L, 1023L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Iceland.txt" }, + { 976L, 1024L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/India.txt" }, + { 977L, 1025L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Indonesia.txt" }, + { 978L, 1026L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Iran.txt" }, + { 979L, 1027L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Iraq.txt" }, + { 980L, 1028L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Ireland.txt" }, + { 981L, 1029L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/IsleofMan.txt" }, + { 982L, 1030L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Israel.txt" }, + { 983L, 1031L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Italy.txt" }, + { 984L, 1032L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/IvoryCoast.txt" }, + { 985L, 1033L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Japan.txt" }, + { 986L, 1034L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Jersey.txt" }, + { 987L, 1035L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Jordan.txt" }, + { 988L, 1036L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Kazakhstan.txt" }, + { 989L, 1037L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Kenya.txt" }, + { 990L, 1038L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Kiribati.txt" }, + { 991L, 1039L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Kuwait.txt" }, + { 992L, 1040L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Kyrgyzstan.txt" }, + { 993L, 1041L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Laos.txt" }, + { 994L, 1042L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Latvia.txt" }, + { 995L, 1043L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Lebanon.txt" }, + { 996L, 1044L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Libya.txt" }, + { 997L, 1045L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Liechtenstein.txt" }, + { 998L, 1046L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Lithuania.txt" }, + { 999L, 1047L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Luxembourg.txt" }, + { 1000L, 1048L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Macau.txt" }, + { 1001L, 1049L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Macedonia.txt" }, + { 1002L, 1050L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Madagascar.txt" }, + { 1003L, 1051L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Malawi.txt" }, + { 1004L, 1052L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Malaysia.txt" }, + { 1005L, 1053L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mali.txt" }, + { 1006L, 1054L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Malta.txt" }, + { 1007L, 1055L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mauritania.txt" }, + { 1008L, 1056L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mauritius.txt" }, + { 1009L, 1057L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mayotte.txt" }, + { 1010L, 1058L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mexico.txt" }, + { 1011L, 1059L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Moldova.txt" }, + { 1012L, 1060L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mongolia.txt" }, + { 1013L, 1061L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Montenegro.txt" }, + { 1014L, 1062L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Montserrat.txt" }, + { 1015L, 1063L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Morocco.txt" }, + { 1016L, 1064L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mozambique.txt" }, + { 1017L, 1065L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Namibia.txt" }, + { 1018L, 1066L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Nauru.txt" }, + { 1019L, 1067L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Nepal.txt" }, + { 1020L, 1068L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Netherlands.txt" }, + { 1021L, 1069L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/NewCaledonia.txt" }, + { 1022L, 1070L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/NewZealand.txt" }, + { 1023L, 1071L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Nicaragua.txt" }, + { 1024L, 1072L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Niger.txt" }, + { 1025L, 1073L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Nigeria.txt" }, + { 1026L, 1074L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Niue.txt" }, + { 1027L, 1075L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/NorfolkIsland.txt" }, + { 1028L, 1076L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/NorthernMarianaIslands.txt" }, + { 1029L, 1077L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Norway.txt" }, + { 1030L, 1078L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Oman.txt" }, + { 1031L, 1079L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Pakistan.txt" }, + { 1032L, 1080L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Palau.txt" }, + { 1033L, 1081L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Palestine.txt" }, + { 1034L, 1082L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Panama.txt" }, + { 1035L, 1083L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Paraguay.txt" }, + { 1036L, 1084L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Peru.txt" }, + { 1037L, 1085L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Philippines.txt" }, + { 1038L, 1086L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/PitcairnIslands.txt" }, + { 1039L, 1087L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Poland.txt" }, + { 1040L, 1088L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Portugal.txt" }, + { 1041L, 1089L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/PuertoRico.txt" }, + { 1042L, 1090L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Qatar.txt" }, + { 1043L, 1091L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Romania.txt" }, + { 1044L, 1092L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Russia.txt" }, + { 1045L, 1093L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Rwanda.txt" }, + { 1047L, 1094L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaintHelena.txt" }, + { 1048L, 1095L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaintLucia.txt" }, + { 1049L, 1096L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaintPierreAndMiquelon.txt" }, + { 1050L, 1097L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaintVincentAndGrenadines.txt" }, + { 1051L, 1098L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Samoa.txt" }, + { 1052L, 1099L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SanMarino.txt" }, + { 1053L, 1100L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaoTomeAndPrincipe.txt" }, + { 1054L, 1101L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaudiArabia.txt" }, + { 1055L, 1102L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Senegal.txt" }, + { 1056L, 1103L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Serbia.txt" }, + { 1057L, 1104L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Seychelles.txt" }, + { 1058L, 1105L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SierraLeone.txt" }, + { 1059L, 1106L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Singapore.txt" }, + { 1060L, 1107L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SintMaarten.txt" }, + { 1061L, 1108L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Slovakia.txt" }, + { 1062L, 1109L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Slovenia.txt" }, + { 1063L, 1110L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Somalia.txt" }, + { 1064L, 1111L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SouthAfrica.txt" }, + { 1065L, 1112L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SouthGeorgiaAndSouthSandwichIslands.txt" }, + { 1066L, 1113L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SouthKorea.txt" }, + { 1067L, 1114L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Spain.txt" }, + { 1068L, 1115L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SriLanka.txt" }, + { 1069L, 1116L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Sudan.txt" }, + { 1070L, 1117L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Suriname.txt" }, + { 1071L, 1118L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Sweden.txt" }, + { 1072L, 1119L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Switzerland.txt" }, + { 1073L, 1120L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Syria.txt" }, + { 1074L, 1121L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Taiwan.txt" }, + { 1075L, 1122L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tajikistan.txt" }, + { 1076L, 1123L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tanzania.txt" }, + { 1077L, 1124L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Thailand.txt" }, + { 1078L, 1125L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/TimorLeste.txt" }, + { 1079L, 1126L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Togo.txt" }, + { 1080L, 1127L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tokelau.txt" }, + { 1081L, 1128L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tonga.txt" }, + { 1082L, 1129L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/TrinidadAndTobago.txt" }, + { 1083L, 1130L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tunisia.txt" }, + { 1084L, 1131L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Turkey.txt" }, + { 1085L, 1132L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Turkmenistan.txt" }, + { 1086L, 1133L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/TurksAndCaicosIslands.txt" }, + { 1087L, 1134L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tuvalu.txt" }, + { 1088L, 1135L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Uganda.txt" }, + { 1089L, 1136L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Ukraine.txt" }, + { 1090L, 1137L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/UnitedArabEmirates.txt" }, + { 1091L, 1138L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/UnitedKingdom.txt" }, + { 1092L, 1139L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/UnitedStatesofAmerica.txt" }, + { 1093L, 1140L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Uruguay.txt" }, + { 1094L, 1141L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Uzbekistan.txt" }, + { 1095L, 1142L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Vanuatu.txt" }, + { 1096L, 1143L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Venezuela.txt" }, + { 1097L, 1144L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Vietnam.txt" }, + { 1098L, 1145L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/WallisandFutuna.txt" }, + { 1099L, 1146L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/WesternSahara.txt" }, + { 1100L, 1147L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Zambia.txt" }, + { 1101L, 1148L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Zimbabwe.txt" }, + { 1102L, 1149L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-Bulgarian-List.txt" }, + { 1103L, 1150L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-Clickbait-Blocklist.txt" }, + { 1104L, 1151L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-Japanese-3rd-Party-SNS-Filters.txt" }, + { 1105L, 1152L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-Japanese-Filters.txt" }, + { 1106L, 1153L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-Japanese-Paranoid-Filters.txt" }, + { 1107L, 1154L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-X-Files.txt" }, + { 1108L, 1155L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABPindo.txt" }, + { 1109L, 1156L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/AakList.txt" }, + { 1110L, 1157L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/AdAway-Default-Blocklist.txt" }, + { 1111L, 1158L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-Filters-by-Gurudee.txt" }, + { 1112L, 1159L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-Iran.txt" }, + { 1113L, 1160L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-Korea.txt" }, + { 1114L, 1161L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-Persian.txt" }, + { 1115L, 1162L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-Polska.txt" }, + { 1116L, 1163L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-YouTube-Ads.txt" }, + { 1117L, 1164L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-uBlock-Polish-Filters.txt" }, + { 1118L, 1165L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adguard-English-Filter.txt" }, + { 1119L, 1166L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adware-Filters.txt" }, + { 1120L, 1167L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/AntiPubWeb.txt" }, + { 1121L, 1168L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Anudeep-Youtube.txt" }, + { 1122L, 1169L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Ayucat-Powerful.txt" }, + { 1123L, 1170L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/BLOGRAM-Analysis-Block-Filter-List-for-Japan.txt" }, + { 1124L, 1171L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/BLOGRAM-Basic-Filter-List-for-Japan.txt" }, + { 1126L, 1173L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Block-EU-Cookie-Shit-List.txt" }, + { 1127L, 1174L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Blockzilla.txt" }, + { 1128L, 1175L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/BreakingTheNews.txt" }, + { 1130L, 1176L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/CAMELEON-Hosts.txt" }, + { 1133L, 1177L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/CryptoWall-Ransomware-C2-Domain-blocklist.txt" }, + { 1135L, 1178L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/DNS-BH-Malware-Domains.txt" }, + { 1139L, 1179L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Disconnect-Malware-Filter.txt" }, + { 1140L, 1180L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Dshield-Suspicious-High.txt" }, + { 1141L, 1181L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Dshield-Suspicious-Low.txt" }, + { 1142L, 1182L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Dshield-Suspicious-Medium.txt" }, + { 1143L, 1183L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/EasyList-Czech-Slovak.txt" }, + { 1144L, 1184L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/EasyList-Dutch.txt" }, + { 1146L, 1185L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/EasyList-Italy.txt" }, + { 1148L, 1186L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/EasyList-Liste-FR.txt" }, + { 1149L, 1187L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/EasyList-Thailand.txt" }, + { 1151L, 1188L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/FadeMind-addSpam.txt" }, + { 1152L, 1189L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Fanboy-Annoyances-List.txt" }, + { 1153L, 1190L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Filtros-Nauscopicos.txt" }, + { 1154L, 1191L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Finnish-AntiSocial.txt" }, + { 1155L, 1192L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/GandJ-Hosts.txt" }, + { 1156L, 1193L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Greek-AdBlock-Filter.txt" }, + { 1157L, 1194L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Hant05080-Filters.txt" }, + { 1158L, 1195L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Henning-VanRaumle-Youtube.txt" }, + { 1159L, 1196L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Hufilter.txt" }, + { 1160L, 1197L, (short)1, "https://raw.githubusercontent.com/HorusTeknoloji/TR-PhishingList/master/url-lists.txt" }, + { 1161L, 1198L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ImmortalMalwareDomains.txt" }, + { 1162L, 1199L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/JapaneseSiteAdblockFilterver2.txt" }, + { 1163L, 1200L, (short)1, "https://phishing.army/download/phishing_army_blocklist_extended.txt" }, + { 1164L, 1201L, (short)1, "https://raw.githubusercontent.com/HorusTeknoloji/TR-PhishingList/master/ip-lists.txt" }, + { 1165L, 1202L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/LatvianList.txt" }, + { 1166L, 1203L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Lead-Generator.txt" }, + { 1167L, 1204L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ListeAR.txt" }, + { 1168L, 1205L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Locky-Ransomware-C2-Domain-Blocklist.txt" }, + { 1169L, 1206L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Malware-Domains-Just-Domains.txt" }, + { 1172L, 1207L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Mat1th-DNS-add-block.txt" }, + { 1173L, 1208L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Mayvs-Private-Adblock-Filters.txt" }, + { 1174L, 1209L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Metaphoricgiraffe-Privacy-Filters.txt" }, + { 1175L, 1210L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Michael-Trimms-Hosts.txt" }, + { 1176L, 1211L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Mitchell-Krogs-Badd-Boyz-Hosts.txt" }, + { 1179L, 1212L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Notracking-hostnames.txt" }, + { 1180L, 1213L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/PLgeneral.txt" }, + { 1182L, 1214L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Piwik-Spam.txt" }, + { 1183L, 1215L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/PopupBlocker.txt" }, + { 1184L, 1216L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Prebake-Obtrusive.txt" }, + { 1185L, 1217L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Prigent-Malware.txt" }, + { 1187L, 1218L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Quidsup-Malicious.txt" }, + { 1189L, 1219L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ROad-Block.txt" }, + { 1190L, 1220L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/RU-AdList.txt" }, + { 1191L, 1221L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/RUAdListBitBlock.txt" }, + { 1192L, 1222L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/RUAdListCounters.txt" }, + { 1193L, 1223L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Ransomware-Domain-Blocklist.txt" }, + { 1194L, 1224L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/SVN-Slovenian.txt" }, + { 1196L, 1225L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/SatterlysAdblockPlusFilters.txt" }, + { 1197L, 1226L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Schacks-Adblock-Plus-Liste.txt" }, + { 1199L, 1227L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Spam-Assassin-Bill-Stearns.txt" }, + { 1202L, 1228L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Fakenews.txt" }, + { 1203L, 1229L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Gambling.txt" }, + { 1204L, 1230L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Hosts.txt" }, + { 1205L, 1231L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Porn.txt" }, + { 1206L, 1232L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Risky-Hosts.txt" }, + { 1207L, 1233L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Trackers.txt" }, + { 1209L, 1234L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Unified-Hosts.txt" }, + { 1210L, 1235L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/TakoYachty-Gift-Card-Killer.txt" }, + { 1211L, 1236L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/TeslaCrypt-Ransomware-C2-Domain-Blocklist.txt" }, + { 1212L, 1237L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/TeslaCrypt-Ransomware-Payment-Sites-Domain-Blocklist.txt" }, + { 1213L, 1238L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/The-Hosts-File-Project.txt" }, + { 1214L, 1239L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Thoughtconverge-AdBlock-Filters.txt" }, + { 1215L, 1240L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Tofu-Filter.txt" }, + { 1216L, 1241L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/TorrentLocker-Ransomware-C2-Domain-Blocklist.txt" }, + { 1217L, 1242L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/TorrentLocker-Ransomware-Payment-Sites-Domain-Blocklist.txt" }, + { 1218L, 1243L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Turk-adlist.txt" }, + { 1220L, 1244L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Wiltteri.txt" }, + { 1221L, 1245L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/WindowsSpyBlocker7.txt" }, + { 1222L, 1246L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/WindowsSpyBlocker81.txt" }, + { 1223L, 1247L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Yhonay-AntiPopAds.txt" }, + { 1224L, 1248L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/YousList.txt" }, + { 1225L, 1249L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ZeuS-Domain-Blocklist-Bad-Domains.txt" }, + { 1226L, 1250L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/uAssetsFilters.txt" }, + { 1227L, 1251L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/uAssetsPrivacy.txt" }, + { 1228L, 1252L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/uAssetsUnbreak.txt" }, + { 1229L, 1253L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/uBOPersonalFilters.txt" }, + { 1230L, 1254L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/uBlockFiltersPlus.txt" }, + { 1243L, 1264L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CombinedBlacklists/CombinedBlackLists.txt" }, + { 1244L, 1265L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CombinedBlacklists/DeathbybandaidList.txt" }, + { 1245L, 1266L, (short)1, "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CombinedWhitelists/CombinedWhiteLists.txt" }, + { 1247L, 1267L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-'Battle Royale' List.txt" }, + { 1247L, 1268L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-'Battle Royale' List.txt" }, + { 1278L, 1269L, (short)1, "https://better.fyi/blockerList.txt" }, + { 1279L, 1270L, (short)1, "https://raw.githubusercontent.com/olegwukr/polish-privacy-filters/master/adblock.txt" }, + { 1280L, 1271L, (short)1, "https://raw.githubusercontent.com/olegwukr/polish-privacy-filters/master/anti-adblock.txt" }, + { 1281L, 1272L, (short)1, "https://raw.githubusercontent.com/olegwukr/polish-privacy-filters/master/anti-adblock-suplement.txt" }, + { 1282L, 1273L, (short)1, "https://raw.githubusercontent.com/koenrh/little-snitch-rules/master/apps.lsrules" }, + { 1283L, 1274L, (short)1, "https://raw.githubusercontent.com/AnXh3L0/blocklist/master/albanian-easylist-addition/Albania.txt" }, + { 1284L, 1275L, (short)1, "https://raw.githubusercontent.com/finnish-easylist-addition/finnish-easylist-addition/master/annoyances/Finland_annoyances.txt" }, + { 1285L, 1276L, (short)1, "https://raw.githubusercontent.com/theel0ja/uMatrix-rules/master/my-umatrix-rules.txt" }, + { 1286L, 1277L, (short)1, "https://raw.githubusercontent.com/PoorPocketsMcNewHold/steamscamsites/master/steamscamsite.txt" }, + { 1288L, 1278L, (short)1, "https://raw.githubusercontent.com/NanoAdblockerLab/NanoContrib/master/dist/placeholder-buster.txt" }, + { 1288L, 1279L, (short)2, "https://gitcdn.xyz/repo/NanoAdblockerLab/NanoContrib/master/dist/placeholder-buster.txt" }, + { 1289L, 1280L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/KnowYourMemePureBrowsingExperience.txt" }, + { 1289L, 1281L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/KnowYourMemePureBrowsingExperience.txt" }, + { 1290L, 1282L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Dandelion Sprout's Anti-Malware List.txt" }, + { 1290L, 1283L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Dandelion Sprout's Anti-Malware List.txt" }, + { 1291L, 1284L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/Twitter De-Politificator.txt" }, + { 1291L, 1285L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/Twitter De-Politificator.txt" }, + { 1292L, 1286L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Android Scum Class — Fake notification counters.txt" }, + { 1292L, 1287L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Android Scum Class — Fake notification counters.txt" }, + { 1293L, 1288L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Adblock list templates/Adblock list template -Hosts and uBlock Origin-.txt" }, + { 1293L, 1289L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Adblock list templates/Adblock list template -Hosts and uBlock Origin-.txt" }, + { 1294L, 1290L, (short)1, "https://crapblock.theel0ja.info/even-cleaner-news-sites.txt" }, + { 1295L, 1291L, (short)1, "https://gitlab.com/intr0/iVOID.GitLab.io/raw/master/iVOID.hosts" }, + { 1295L, 1292L, (short)2, "https://notabug.org/-intr0/iVOID/raw/master/iVOID.hosts" }, + { 1295L, 1293L, (short)3, "http://w2caclgy62idhzyut23ucimqw5tsmfbl4b2iyjzpvngatast2fiqxbyd.onion/ivoid/iVOID.hosts" }, + { 1296L, 1294L, (short)1, "https://gitlab.com/intr0/DomainVoider/raw/master/DomainVoider" }, + { 1296L, 1295L, (short)2, "https://notabug.org/-intr0/DomainVoider/raw/master/DomainVoider" }, { 1296L, 1296L, (short)3, "http://w2caclgy62idhzyut23ucimqw5tsmfbl4b2iyjzpvngatast2fiqxbyd.onion/domainvoider/DomainVoider.txt" }, { 1297L, 1297L, (short)1, "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/filters/css_style_filters.txt" }, { 1298L, 1298L, (short)1, "https://hosts.nfz.moe/full/hosts" }, { 1299L, 1299L, (short)1, "https://hosts.nfz.moe/basic/hosts" }, - { 1300L, 1299L, (short)2, "https://raw.githubusercontent.com/neoFelhz/neohosts/gh-pages/basic/hosts" }, - { 1301L, 1300L, (short)1, "https://www.stopforumspam.com/downloads/toxic_domains_whole.txt" }, - { 1302L, 1301L, (short)1, "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/hosts/test/hosts_facebook0.txt" }, - { 1303L, 1301L, (short)2, "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/hosts/test/hosts_facebook0.txt" }, - { 1304L, 1302L, (short)1, "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/hosts/hosts_leftover.txt" }, - { 1305L, 1302L, (short)2, "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/hosts/hosts_leftover.txt" }, - { 1306L, 1303L, (short)1, "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/other/MiscAnnoyance.txt" }, - { 1307L, 1303L, (short)2, "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/other/MiscAnnoyance.txt" }, - { 1308L, 1304L, (short)1, "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/ubo-css/iHateCircles.txt" }, - { 1309L, 1304L, (short)2, "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/ubo-css/iHateCircles.txt" }, - { 1310L, 1305L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/adv/domains" }, - { 1311L, 1306L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/adv/urls" }, - { 1312L, 1307L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/aggressive/domains" }, - { 1313L, 1308L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/aggressive/urls" }, - { 1314L, 1309L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/alcohol/domains" }, - { 1315L, 1310L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/alcohol/urls" }, - { 1316L, 1311L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/anonvpn/domains" }, - { 1317L, 1312L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/anonvpn/urls" }, - { 1318L, 1313L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/bikes/domains" }, - { 1319L, 1314L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/bikes/urls" }, - { 1320L, 1315L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/boats/domains" }, - { 1321L, 1316L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/boats/urls" }, - { 1322L, 1317L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/cars/domains" }, - { 1323L, 1318L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/cars/urls" }, - { 1324L, 1319L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/planes/domains" }, - { 1325L, 1320L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/planes/urls" }, - { 1326L, 1321L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/chat/domains" }, - { 1327L, 1322L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/chat/urls" }, - { 1328L, 1323L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/costtraps/domains" }, - { 1329L, 1324L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/costtraps/urls" }, - { 1330L, 1325L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/dating/domains" }, - { 1331L, 1326L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/dating/urls" }, - { 1332L, 1327L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/downloads/domains" }, - { 1333L, 1328L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/downloads/urls" }, - { 1334L, 1329L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/drugs/domains" }, - { 1335L, 1330L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/drugs/urls" }, - { 1336L, 1331L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/dynamic/domains" }, - { 1337L, 1332L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/dynamic/urls" }, - { 1338L, 1333L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/education/schools/domains" }, - { 1339L, 1334L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/education/schools/urls" }, - { 1340L, 1335L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/banking/domains" }, - { 1341L, 1336L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/banking/urls" }, - { 1342L, 1337L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/insurance/domains" }, - { 1343L, 1338L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/insurance/urls" }, - { 1344L, 1339L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/moneylending/domains" } + { 1299L, 1300L, (short)2, "https://raw.githubusercontent.com/neoFelhz/neohosts/gh-pages/basic/hosts" }, + { 1300L, 1301L, (short)1, "https://www.stopforumspam.com/downloads/toxic_domains_whole.txt" }, + { 1301L, 1302L, (short)1, "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/hosts/test/hosts_facebook0.txt" }, + { 1301L, 1303L, (short)2, "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/hosts/test/hosts_facebook0.txt" }, + { 1302L, 1304L, (short)1, "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/hosts/hosts_leftover.txt" }, + { 1302L, 1305L, (short)2, "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/hosts/hosts_leftover.txt" }, + { 1303L, 1306L, (short)1, "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/other/MiscAnnoyance.txt" }, + { 1303L, 1307L, (short)2, "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/other/MiscAnnoyance.txt" }, + { 1304L, 1308L, (short)1, "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/ubo-css/iHateCircles.txt" }, + { 1304L, 1309L, (short)2, "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/ubo-css/iHateCircles.txt" }, + { 1305L, 1310L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/adv/domains" }, + { 1306L, 1311L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/adv/urls" }, + { 1307L, 1312L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/aggressive/domains" }, + { 1308L, 1313L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/aggressive/urls" }, + { 1309L, 1314L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/alcohol/domains" }, + { 1310L, 1315L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/alcohol/urls" }, + { 1311L, 1316L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/anonvpn/domains" }, + { 1312L, 1317L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/anonvpn/urls" }, + { 1313L, 1318L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/bikes/domains" }, + { 1314L, 1319L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/bikes/urls" }, + { 1315L, 1320L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/boats/domains" }, + { 1316L, 1321L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/boats/urls" }, + { 1317L, 1322L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/cars/domains" }, + { 1318L, 1323L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/cars/urls" }, + { 1319L, 1324L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/planes/domains" }, + { 1320L, 1325L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/planes/urls" }, + { 1321L, 1326L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/chat/domains" }, + { 1322L, 1327L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/chat/urls" }, + { 1323L, 1328L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/costtraps/domains" }, + { 1324L, 1329L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/costtraps/urls" }, + { 1325L, 1330L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/dating/domains" }, + { 1326L, 1331L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/dating/urls" }, + { 1327L, 1332L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/downloads/domains" }, + { 1328L, 1333L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/downloads/urls" }, + { 1329L, 1334L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/drugs/domains" }, + { 1330L, 1335L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/drugs/urls" }, + { 1331L, 1336L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/dynamic/domains" }, + { 1332L, 1337L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/dynamic/urls" }, + { 1333L, 1338L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/education/schools/domains" }, + { 1334L, 1339L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/education/schools/urls" }, + { 1335L, 1340L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/banking/domains" } }); migrationBuilder.InsertData( table: "filter_list_view_urls", - columns: new[] { "id", "filter_list_id", "primariness", "url" }, + columns: new[] { "filter_list_id", "id", "primariness", "url" }, values: new object[,] { - { 1345L, 1340L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/moneylending/urls" }, - { 1346L, 1341L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/other/domains" }, - { 1347L, 1342L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/other/urls" }, - { 1348L, 1343L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/realestate/domains" }, - { 1349L, 1344L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/realestate/urls" }, - { 1350L, 1345L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/trading/domains" }, - { 1351L, 1346L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/trading/urls" }, - { 1352L, 1347L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/fortunetelling/domains" }, - { 1353L, 1348L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/fortunetelling/urls" }, - { 1354L, 1349L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/forum/domains" }, - { 1355L, 1350L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/forum/urls" }, - { 1356L, 1351L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/gamble/domains" }, - { 1357L, 1352L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/gamble/urls" }, - { 1358L, 1353L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/government/domains" }, - { 1359L, 1354L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/government/urls" }, - { 1360L, 1355L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/hacking/domains" }, - { 1361L, 1356L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/hacking/urls" }, - { 1362L, 1357L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/cooking/domains" }, - { 1363L, 1358L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/cooking/urls" }, - { 1364L, 1359L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/games-misc/domains" }, - { 1365L, 1360L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/games-misc/urls" }, - { 1366L, 1361L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/games-online/domains" }, - { 1367L, 1362L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/games-online/urls" }, - { 1368L, 1363L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/gardening/domains" }, - { 1369L, 1364L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/gardening/urls" }, - { 1370L, 1365L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/pets/domains" }, - { 1371L, 1366L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/pets/urls" }, - { 1372L, 1367L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/homestyle/domains" }, - { 1373L, 1368L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/homestyle/urls" }, - { 1374L, 1369L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/hospitals/domains" }, - { 1375L, 1370L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/hospitals/urls" }, - { 1376L, 1371L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/imagehosting/domains" }, - { 1377L, 1372L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/imagehosting/urls" }, - { 1378L, 1373L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/isp/domains" }, - { 1379L, 1374L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/isp/urls" }, - { 1380L, 1375L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/jobsearch/domains" }, - { 1381L, 1376L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/jobsearch/urls" }, - { 1382L, 1377L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/library/domains" }, - { 1383L, 1378L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/library/urls" }, - { 1384L, 1379L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/military/domains" }, - { 1385L, 1380L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/military/urls" }, - { 1386L, 1381L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/models/domains" }, - { 1387L, 1382L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/models/urls" }, - { 1388L, 1383L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/movies/domains" }, - { 1389L, 1384L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/movies/urls" }, - { 1390L, 1385L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/music/domains" }, - { 1391L, 1386L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/music/urls" }, - { 1392L, 1387L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/news/domains" }, - { 1393L, 1388L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/news/urls" }, - { 1394L, 1389L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/podcasts/domains" }, - { 1395L, 1390L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/podcasts/urls" }, - { 1396L, 1391L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/politics/domains" }, - { 1397L, 1392L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/politics/urls" }, - { 1398L, 1393L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/porn/domains" }, - { 1399L, 1394L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/porn/urls" }, - { 1400L, 1395L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/radiotv/domains" }, - { 1401L, 1396L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/radiotv/urls" }, - { 1402L, 1397L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/humor/domains" }, - { 1403L, 1398L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/humor/urls" }, - { 1404L, 1399L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/martialarts/domains" }, - { 1405L, 1400L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/martialarts/urls" }, - { 1406L, 1401L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/restaurants/domains" }, - { 1407L, 1402L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/restaurants/urls" }, - { 1408L, 1403L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/sports/domains" }, - { 1409L, 1404L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/sports/urls" }, - { 1410L, 1405L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/travel/domains" }, - { 1411L, 1406L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/travel/urls" }, - { 1412L, 1407L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/wellness/domains" }, - { 1413L, 1408L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/wellness/urls" }, - { 1414L, 1409L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/redirector/domains" }, - { 1415L, 1410L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/redirector/urls" }, - { 1416L, 1411L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/religion/domains" }, - { 1417L, 1412L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/religion/urls" }, - { 1418L, 1413L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/remotecontrol/domains" }, - { 1419L, 1414L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/remotecontrol/urls" }, - { 1420L, 1415L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/ringtones/domains" }, - { 1421L, 1416L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/ringtones/urls" }, - { 1422L, 1417L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/science/astronomy/domains" }, - { 1423L, 1418L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/science/astronomy/urls" }, - { 1424L, 1419L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/science/chemistry/domains" }, - { 1425L, 1420L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/science/chemistry/urls" }, - { 1426L, 1421L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/searchengines/domains" }, - { 1427L, 1422L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/searchengines/urls" }, - { 1428L, 1423L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/sex/education/domains" }, - { 1429L, 1424L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/sex/education/urls" }, - { 1430L, 1425L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/sex/lingerie/domains" }, - { 1431L, 1426L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/sex/lingerie/urls" }, - { 1432L, 1427L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/shopping/domains" }, - { 1433L, 1428L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/shopping/urls" }, - { 1434L, 1429L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/socialnet/domains" }, - { 1435L, 1430L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/socialnet/urls" }, - { 1436L, 1431L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/spyware/domains" }, - { 1437L, 1432L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/spyware/urls" }, - { 1438L, 1433L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/tracker/domains" }, - { 1439L, 1434L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/tracker/urls" }, - { 1440L, 1435L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/updatesites/domains" }, - { 1441L, 1436L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/updatesites/urls" }, - { 1442L, 1437L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/urlshortener/domains" }, - { 1443L, 1438L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/urlshortener/urls" }, - { 1444L, 1439L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/violence/domains" }, - { 1445L, 1440L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/violence/urls" }, - { 1446L, 1441L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/warez/domains" }, - { 1447L, 1442L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/warez/urls" }, - { 1448L, 1443L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/weapons/domains" }, - { 1449L, 1444L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/weapons/urls" }, - { 1450L, 1445L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/webmail/domains" }, - { 1451L, 1446L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/webmail/urls" }, - { 1452L, 1447L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/webphone/domains" }, - { 1453L, 1448L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/webphone/urls" }, - { 1454L, 1449L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/webradio/domains" }, - { 1455L, 1450L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/webradio/urls" }, - { 1456L, 1451L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/webtv/domains" }, - { 1457L, 1452L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/webtv/urls" }, - { 1458L, 1454L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AnnoyingBannersAndOverlays.txt" }, - { 1459L, 1454L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AnnoyingBannersAndOverlays.txt" }, - { 1460L, 1455L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AnnoyancesList" }, - { 1461L, 1455L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AnnoyancesList" }, - { 1462L, 1456L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/SocialShareList.txt" }, - { 1463L, 1456L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/SocialShareList.txt" }, - { 1464L, 1457L, (short)1, "https://raw.githubusercontent.com/PoorPocketsMcNewHold/SteamScamSites/master/steamscamsitesashes" }, - { 1465L, 1458L, (short)1, "https://raw.githubusercontent.com/anudeepND/blacklist/master/facebook.txt" }, - { 1466L, 1459L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/AntiAstrologyList.txt" }, - { 1467L, 1459L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/AntiAstrologyList.txt" }, - { 1468L, 1460L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/ListForOldPeople.txt" }, - { 1469L, 1460L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/ListForOldPeople.txt" }, - { 1470L, 1461L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAmazonListForTwitch.txt" }, - { 1471L, 1461L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAmazonListForTwitch.txt" }, - { 1472L, 1463L, (short)1, "https://raw.githubusercontent.com/CitizenXVIL/Hosts/master/Optimized_hosts_list.txt" }, - { 1473L, 1464L, (short)1, "https://raw.githubusercontent.com/CitizenXVIL/Hosts/master/mobile domains.txt" }, - { 1474L, 1465L, (short)1, "https://raw.githubusercontent.com/CitizenXVIL/Hosts/master/Youtube hosts.txt" }, - { 1475L, 1466L, (short)1, "https://raw.githubusercontent.com/Zykreh/vortexhosts/master/vortex.txt" }, - { 1476L, 1467L, (short)1, "https://raw.githubusercontent.com/Zykreh/vortexhosts/master/vortex_energized.txt" }, - { 1477L, 1468L, (short)1, "https://raw.githubusercontent.com/Zykreh/vortexhosts/master/vortex_experimental.txt" }, - { 1478L, 1469L, (short)1, "https://raw.githubusercontent.com/Zykreh/vortexhosts/master/vortex_lite.txt" }, - { 1479L, 1470L, (short)1, "https://block.energized.pro/extensions/xtreme/formats/hosts.txt" }, - { 1480L, 1471L, (short)1, "https://getadhell.com/standard-package.txt" }, - { 1481L, 1473L, (short)1, "https://raw.githubusercontent.com/ookangzheng/blahdns/master/hosts/blacklist.txt" }, - { 1482L, 1473L, (short)2, "https://oooo.b-cdn.net/blahdns/adsblock.txt" }, - { 1483L, 1474L, (short)1, "https://raw.githubusercontent.com/ookangzheng/blahdns/master/hosts/whitelist.txt" }, - { 1486L, 1477L, (short)1, "https://hblock.molinero.dev/hosts_rpz.txt" }, - { 1487L, 1478L, (short)1, "https://hblock.molinero.dev/hosts_unbound.conf" }, - { 1488L, 1479L, (short)1, "https://hblock.molinero.dev/hosts_dnsmasq.conf" }, - { 1489L, 1480L, (short)1, "https://oooo.b-cdn.net/blahdns/rpz.txt" }, - { 1492L, 1484L, (short)1, "https://raw.githubusercontent.com/blocklistproject/Lists/master/torrent.txt" }, - { 1493L, 1485L, (short)1, "https://raw.githubusercontent.com/ngosang/trackerslist/master/trackers_all.txt" }, - { 1494L, 1486L, (short)1, "https://raw.githubusercontent.com/ngosang/trackerslist/master/blacklist.txt" }, - { 1495L, 1487L, (short)1, "https://raw.githubusercontent.com/quedlin/blacklist/master/domains" }, - { 1496L, 1490L, (short)1, "https://raw.githubusercontent.com/mitchellkrogza/Phishing.Database/master/phishing-domains-ACTIVE.txt" }, - { 1497L, 1492L, (short)1, "https://raw.githubusercontent.com/mitchellkrogza/Ultimate.Hosts.Blacklist/master/hosts.deny/hosts0.deny" }, - { 1498L, 1493L, (short)1, "https://raw.githubusercontent.com/greatis/Anti-WebMiner/master/blacklist.txt" }, - { 1499L, 1494L, (short)1, "https://www.carl.net/spam/access.txt" }, - { 1500L, 1495L, (short)1, "https://raw.githubusercontent.com/tankmohit/UnifiedHosts/master/hosts.all" }, - { 1501L, 1496L, (short)1, "http://www.taz.net.au/Mail/SpamDomains" }, - { 1502L, 1497L, (short)1, "https://raw.githubusercontent.com/tankmohit/UnifiedHosts/master/whitelist" }, - { 1503L, 1498L, (short)1, "https://raw.githubusercontent.com/mitchellkrogza/Stop.Google.Analytics.Ghost.Spam.HOWTO/master/output/domains/ACTIVE/list" }, - { 1504L, 1499L, (short)1, "https://raw.githubusercontent.com/mitchellkrogza/Stop.Google.Analytics.Ghost.Spam.HOWTO/master/output/domains/INACTIVE/list" }, - { 1505L, 1500L, (short)1, "https://cybercrime-tracker.net/all.php" }, - { 1506L, 1501L, (short)1, "https://raw.githubusercontent.com/joelotz/URL_Blacklist/master/blacklist.csv" }, - { 1507L, 1502L, (short)1, "https://raw.githubusercontent.com/oznu/dns-zone-blacklist/master/bind/zones.blacklist" }, - { 1508L, 1503L, (short)1, "https://raw.githubusercontent.com/oznu/dns-zone-blacklist/master/dnsmasq/dnsmasq.blacklist" }, - { 1509L, 1504L, (short)1, "https://raw.githubusercontent.com/oznu/dns-zone-blacklist/master/unbound/unbound.blacklist" }, - { 1510L, 1505L, (short)1, "https://raw.githubusercontent.com/ReddestDream/reddestdream.github.io/master/Projects/MinimalHostsCB/etc/MinimalHostsBlocker/minimalhosts" }, - { 1511L, 1506L, (short)1, "https://raw.githubusercontent.com/ReddestDream/reddestdream.github.io/master/Projects/MinimalHosts/etc/MinimalHostsBlocker/minimalhosts" }, - { 1512L, 1507L, (short)1, "https://osint.bambenekconsulting.com/feeds/dga-feed.txt" }, - { 1513L, 1508L, (short)1, "https://joewein.net/dl/bl/dom-bl-base.txt" }, - { 1514L, 1509L, (short)1, "https://joewein.net/dl/bl/dom-bl.txt" }, - { 1515L, 1510L, (short)1, "https://joewein.net/dl/bl/from-bl.txt" }, - { 1516L, 1511L, (short)1, "https://raw.githubusercontent.com/mitchellkrogza/Fail2Ban.WebExploits/master/input-source/exploits.list" }, - { 1518L, 1513L, (short)1, "https://raw.githubusercontent.com/oleksiig/Squid-BlackList/master/denied_ext.conf" }, - { 1519L, 1517L, (short)1, "https://raw.githubusercontent.com/mitchellkrogza/Ultimate.Hosts.Blacklist/master/ips/ips0.list" }, + { 1336L, 1341L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/banking/urls" }, + { 1337L, 1342L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/insurance/domains" }, + { 1338L, 1343L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/insurance/urls" }, + { 1339L, 1344L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/moneylending/domains" }, + { 1340L, 1345L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/moneylending/urls" }, + { 1341L, 1346L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/other/domains" }, + { 1342L, 1347L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/other/urls" }, + { 1343L, 1348L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/realestate/domains" }, + { 1344L, 1349L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/realestate/urls" }, + { 1345L, 1350L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/trading/domains" }, + { 1346L, 1351L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/trading/urls" }, + { 1347L, 1352L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/fortunetelling/domains" }, + { 1348L, 1353L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/fortunetelling/urls" }, + { 1349L, 1354L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/forum/domains" }, + { 1350L, 1355L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/forum/urls" }, + { 1351L, 1356L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/gamble/domains" }, + { 1352L, 1357L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/gamble/urls" }, + { 1353L, 1358L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/government/domains" }, + { 1354L, 1359L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/government/urls" }, + { 1355L, 1360L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/hacking/domains" }, + { 1356L, 1361L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/hacking/urls" }, + { 1357L, 1362L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/cooking/domains" }, + { 1358L, 1363L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/cooking/urls" }, + { 1359L, 1364L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/games-misc/domains" }, + { 1360L, 1365L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/games-misc/urls" }, + { 1361L, 1366L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/games-online/domains" }, + { 1362L, 1367L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/games-online/urls" }, + { 1363L, 1368L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/gardening/domains" }, + { 1364L, 1369L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/gardening/urls" }, + { 1365L, 1370L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/pets/domains" }, + { 1366L, 1371L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/pets/urls" }, + { 1367L, 1372L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/homestyle/domains" }, + { 1368L, 1373L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/homestyle/urls" }, + { 1369L, 1374L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/hospitals/domains" }, + { 1370L, 1375L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/hospitals/urls" }, + { 1371L, 1376L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/imagehosting/domains" }, + { 1372L, 1377L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/imagehosting/urls" }, + { 1373L, 1378L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/isp/domains" }, + { 1374L, 1379L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/isp/urls" }, + { 1375L, 1380L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/jobsearch/domains" }, + { 1376L, 1381L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/jobsearch/urls" }, + { 1377L, 1382L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/library/domains" }, + { 1378L, 1383L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/library/urls" }, + { 1379L, 1384L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/military/domains" }, + { 1380L, 1385L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/military/urls" }, + { 1381L, 1386L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/models/domains" }, + { 1382L, 1387L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/models/urls" }, + { 1383L, 1388L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/movies/domains" }, + { 1384L, 1389L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/movies/urls" }, + { 1385L, 1390L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/music/domains" }, + { 1386L, 1391L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/music/urls" }, + { 1387L, 1392L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/news/domains" }, + { 1388L, 1393L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/news/urls" }, + { 1389L, 1394L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/podcasts/domains" }, + { 1390L, 1395L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/podcasts/urls" }, + { 1391L, 1396L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/politics/domains" }, + { 1392L, 1397L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/politics/urls" }, + { 1393L, 1398L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/porn/domains" }, + { 1394L, 1399L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/porn/urls" }, + { 1395L, 1400L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/radiotv/domains" }, + { 1396L, 1401L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/radiotv/urls" }, + { 1397L, 1402L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/humor/domains" }, + { 1398L, 1403L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/humor/urls" }, + { 1399L, 1404L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/martialarts/domains" }, + { 1400L, 1405L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/martialarts/urls" }, + { 1401L, 1406L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/restaurants/domains" }, + { 1402L, 1407L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/restaurants/urls" }, + { 1403L, 1408L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/sports/domains" }, + { 1404L, 1409L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/sports/urls" }, + { 1405L, 1410L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/travel/domains" }, + { 1406L, 1411L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/travel/urls" }, + { 1407L, 1412L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/wellness/domains" }, + { 1408L, 1413L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/wellness/urls" }, + { 1409L, 1414L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/redirector/domains" }, + { 1410L, 1415L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/redirector/urls" }, + { 1411L, 1416L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/religion/domains" }, + { 1412L, 1417L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/religion/urls" }, + { 1413L, 1418L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/remotecontrol/domains" }, + { 1414L, 1419L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/remotecontrol/urls" }, + { 1415L, 1420L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/ringtones/domains" }, + { 1416L, 1421L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/ringtones/urls" }, + { 1417L, 1422L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/science/astronomy/domains" }, + { 1418L, 1423L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/science/astronomy/urls" }, + { 1419L, 1424L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/science/chemistry/domains" }, + { 1420L, 1425L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/science/chemistry/urls" }, + { 1421L, 1426L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/searchengines/domains" }, + { 1422L, 1427L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/searchengines/urls" }, + { 1423L, 1428L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/sex/education/domains" }, + { 1424L, 1429L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/sex/education/urls" }, + { 1425L, 1430L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/sex/lingerie/domains" }, + { 1426L, 1431L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/sex/lingerie/urls" }, + { 1427L, 1432L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/shopping/domains" }, + { 1428L, 1433L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/shopping/urls" }, + { 1429L, 1434L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/socialnet/domains" }, + { 1430L, 1435L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/socialnet/urls" }, + { 1431L, 1436L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/spyware/domains" }, + { 1432L, 1437L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/spyware/urls" }, + { 1433L, 1438L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/tracker/domains" }, + { 1434L, 1439L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/tracker/urls" }, + { 1435L, 1440L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/updatesites/domains" }, + { 1436L, 1441L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/updatesites/urls" }, + { 1437L, 1442L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/urlshortener/domains" }, + { 1438L, 1443L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/urlshortener/urls" }, + { 1439L, 1444L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/violence/domains" }, + { 1440L, 1445L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/violence/urls" }, + { 1441L, 1446L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/warez/domains" }, + { 1442L, 1447L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/warez/urls" }, + { 1443L, 1448L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/weapons/domains" }, + { 1444L, 1449L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/weapons/urls" }, + { 1445L, 1450L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/webmail/domains" }, + { 1446L, 1451L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/webmail/urls" }, + { 1447L, 1452L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/webphone/domains" }, + { 1448L, 1453L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/webphone/urls" }, + { 1449L, 1454L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/webradio/domains" }, + { 1450L, 1455L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/webradio/urls" }, + { 1451L, 1456L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/webtv/domains" }, + { 1452L, 1457L, (short)1, "https://raw.githubusercontent.com/cbuijs/shallalist/master/webtv/urls" }, + { 1454L, 1458L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AnnoyingBannersAndOverlays.txt" }, + { 1454L, 1459L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AnnoyingBannersAndOverlays.txt" }, + { 1455L, 1460L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AnnoyancesList" }, + { 1455L, 1461L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AnnoyancesList" }, + { 1456L, 1462L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/SocialShareList.txt" }, + { 1456L, 1463L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/SocialShareList.txt" }, + { 1457L, 1464L, (short)1, "https://raw.githubusercontent.com/PoorPocketsMcNewHold/SteamScamSites/master/steamscamsitesashes" }, + { 1458L, 1465L, (short)1, "https://raw.githubusercontent.com/anudeepND/blacklist/master/facebook.txt" }, + { 1459L, 1466L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/AntiAstrologyList.txt" }, + { 1459L, 1467L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/AntiAstrologyList.txt" }, + { 1460L, 1468L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/ListForOldPeople.txt" }, + { 1460L, 1469L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/ListForOldPeople.txt" }, + { 1461L, 1470L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAmazonListForTwitch.txt" }, + { 1461L, 1471L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAmazonListForTwitch.txt" }, + { 1463L, 1472L, (short)1, "https://raw.githubusercontent.com/CitizenXVIL/Hosts/master/Optimized_hosts_list.txt" }, + { 1464L, 1473L, (short)1, "https://raw.githubusercontent.com/CitizenXVIL/Hosts/master/mobile domains.txt" }, + { 1465L, 1474L, (short)1, "https://raw.githubusercontent.com/CitizenXVIL/Hosts/master/Youtube hosts.txt" }, + { 1466L, 1475L, (short)1, "https://raw.githubusercontent.com/Zykreh/vortexhosts/master/vortex.txt" }, + { 1467L, 1476L, (short)1, "https://raw.githubusercontent.com/Zykreh/vortexhosts/master/vortex_energized.txt" }, + { 1468L, 1477L, (short)1, "https://raw.githubusercontent.com/Zykreh/vortexhosts/master/vortex_experimental.txt" }, + { 1469L, 1478L, (short)1, "https://raw.githubusercontent.com/Zykreh/vortexhosts/master/vortex_lite.txt" }, + { 1470L, 1479L, (short)1, "https://block.energized.pro/extensions/xtreme/formats/hosts.txt" }, + { 1471L, 1480L, (short)1, "https://getadhell.com/standard-package.txt" }, + { 1473L, 1481L, (short)1, "https://raw.githubusercontent.com/ookangzheng/blahdns/master/hosts/blacklist.txt" }, + { 1473L, 1482L, (short)2, "https://oooo.b-cdn.net/blahdns/adsblock.txt" }, + { 1474L, 1483L, (short)1, "https://raw.githubusercontent.com/ookangzheng/blahdns/master/hosts/whitelist.txt" }, + { 1477L, 1486L, (short)1, "https://hblock.molinero.dev/hosts_rpz.txt" }, + { 1478L, 1487L, (short)1, "https://hblock.molinero.dev/hosts_unbound.conf" }, + { 1479L, 1488L, (short)1, "https://hblock.molinero.dev/hosts_dnsmasq.conf" }, + { 1480L, 1489L, (short)1, "https://oooo.b-cdn.net/blahdns/rpz.txt" }, + { 1484L, 1492L, (short)1, "https://raw.githubusercontent.com/blocklistproject/Lists/master/torrent.txt" }, + { 1485L, 1493L, (short)1, "https://raw.githubusercontent.com/ngosang/trackerslist/master/trackers_all.txt" }, + { 1486L, 1494L, (short)1, "https://raw.githubusercontent.com/ngosang/trackerslist/master/blacklist.txt" }, + { 1487L, 1495L, (short)1, "https://raw.githubusercontent.com/quedlin/blacklist/master/domains" }, + { 1490L, 1496L, (short)1, "https://raw.githubusercontent.com/mitchellkrogza/Phishing.Database/master/phishing-domains-ACTIVE.txt" }, + { 1492L, 1497L, (short)1, "https://raw.githubusercontent.com/mitchellkrogza/Ultimate.Hosts.Blacklist/master/hosts.deny/hosts0.deny" }, + { 1493L, 1498L, (short)1, "https://raw.githubusercontent.com/greatis/Anti-WebMiner/master/blacklist.txt" }, + { 1494L, 1499L, (short)1, "https://www.carl.net/spam/access.txt" }, + { 1495L, 1500L, (short)1, "https://raw.githubusercontent.com/tankmohit/UnifiedHosts/master/hosts.all" }, + { 1496L, 1501L, (short)1, "http://www.taz.net.au/Mail/SpamDomains" }, + { 1497L, 1502L, (short)1, "https://raw.githubusercontent.com/tankmohit/UnifiedHosts/master/whitelist" }, + { 1498L, 1503L, (short)1, "https://raw.githubusercontent.com/mitchellkrogza/Stop.Google.Analytics.Ghost.Spam.HOWTO/master/output/domains/ACTIVE/list" }, + { 1499L, 1504L, (short)1, "https://raw.githubusercontent.com/mitchellkrogza/Stop.Google.Analytics.Ghost.Spam.HOWTO/master/output/domains/INACTIVE/list" }, + { 1500L, 1505L, (short)1, "https://cybercrime-tracker.net/all.php" }, + { 1501L, 1506L, (short)1, "https://raw.githubusercontent.com/joelotz/URL_Blacklist/master/blacklist.csv" }, + { 1502L, 1507L, (short)1, "https://raw.githubusercontent.com/oznu/dns-zone-blacklist/master/bind/zones.blacklist" }, + { 1503L, 1508L, (short)1, "https://raw.githubusercontent.com/oznu/dns-zone-blacklist/master/dnsmasq/dnsmasq.blacklist" }, + { 1504L, 1509L, (short)1, "https://raw.githubusercontent.com/oznu/dns-zone-blacklist/master/unbound/unbound.blacklist" }, + { 1505L, 1510L, (short)1, "https://raw.githubusercontent.com/ReddestDream/reddestdream.github.io/master/Projects/MinimalHostsCB/etc/MinimalHostsBlocker/minimalhosts" }, + { 1506L, 1511L, (short)1, "https://raw.githubusercontent.com/ReddestDream/reddestdream.github.io/master/Projects/MinimalHosts/etc/MinimalHostsBlocker/minimalhosts" }, + { 1507L, 1512L, (short)1, "https://osint.bambenekconsulting.com/feeds/dga-feed.txt" }, + { 1508L, 1513L, (short)1, "https://joewein.net/dl/bl/dom-bl-base.txt" }, + { 1509L, 1514L, (short)1, "https://joewein.net/dl/bl/dom-bl.txt" }, + { 1510L, 1515L, (short)1, "https://joewein.net/dl/bl/from-bl.txt" }, + { 1511L, 1516L, (short)1, "https://raw.githubusercontent.com/mitchellkrogza/Fail2Ban.WebExploits/master/input-source/exploits.list" }, + { 1513L, 1518L, (short)1, "https://raw.githubusercontent.com/oleksiig/Squid-BlackList/master/denied_ext.conf" }, + { 1517L, 1519L, (short)1, "https://raw.githubusercontent.com/mitchellkrogza/Ultimate.Hosts.Blacklist/master/ips/ips0.list" }, { 1520L, 1520L, (short)1, "https://hosts.ubuntu101.co.za/superhosts.deny" }, - { 1521L, 1523L, (short)1, "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/newhosts-final.hosts" }, - { 1522L, 1524L, (short)1, "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/combined-final-win.dat" }, - { 1523L, 1525L, (short)1, "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/combined-final.p2p" }, - { 1524L, 1526L, (short)1, "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=unbound&showintro=1&mimetype=plaintext" }, - { 1525L, 1527L, (short)1, "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=bindconfig&showintro=1&mimetype=plaintext" }, - { 1527L, 1529L, (short)1, "https://easylist-downloads.adblockplus.org/koreanlist.txt" }, - { 1528L, 1530L, (short)1, "https://raw.githubusercontent.com/bcye/Hello-Goodbye/master/filterlist.txt" }, - { 1529L, 1531L, (short)1, "https://raw.githubusercontent.com/kano1/I/master/adware_Scrip.txt" }, - { 1530L, 1532L, (short)1, "https://raw.githubusercontent.com/kano1/Kano/master/Spyware_Scrip.txt" }, - { 1531L, 1533L, (short)1, "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/legacy.txt" }, - { 1532L, 1534L, (short)1, "https://hostsfile.mine.nu/hosts.ips" }, - { 1533L, 1535L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/WordPressTranslatorAssistant.txt" }, - { 1534L, 1535L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/WordPressTranslatorAssistant.txt" }, - { 1535L, 1536L, (short)1, "https://raw.githubusercontent.com/RooneyMcNibNug/pihole-stuff/master/SNAFU.txt" }, - { 1536L, 1537L, (short)1, "https://easylist-msie.adblockplus.org/easyprivacy.tpl" }, - { 1537L, 1538L, (short)1, "https://easylist-downloads.adblockplus.org/easylist_noelemhide.tpl" }, - { 1538L, 1539L, (short)1, "https://easylist-downloads.adblockplus.org/easytest.tpl" }, - { 1539L, 1540L, (short)1, "https://easylist-downloads.adblockplus.org/easylistpolish.tpl" }, - { 1540L, 1541L, (short)1, "https://easylist-downloads.adblockplus.org/exceptionrules.tpl" }, - { 1542L, 1543L, (short)1, "https://easylist-downloads.adblockplus.org/koreanlist.tpl" }, - { 1543L, 1544L, (short)1, "https://easylist-downloads.adblockplus.org/easylistportuguese.tpl" }, - { 1544L, 1545L, (short)1, "https://raw.githubusercontent.com/wiltteri/subscriptions/master/wiltteri.tpl" }, - { 1545L, 1546L, (short)1, "https://raw.githubusercontent.com/wiltteri/subscriptions/master/wiltteri-reborn.tpl" }, - { 1546L, 1547L, (short)1, "https://easylist-downloads.adblockplus.org/indianlist.tpl" }, - { 1547L, 1548L, (short)1, "https://easylist-msie.adblockplus.org/easylistspanish+easylist.txt" }, - { 1548L, 1549L, (short)1, "https://easylist-msie.adblockplus.org/wiltteri+easylist.txt" }, - { 1549L, 1550L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/WebsiteStretcherVertical.txt" }, + { 1523L, 1521L, (short)1, "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/newhosts-final.hosts" }, + { 1524L, 1522L, (short)1, "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/combined-final-win.dat" }, + { 1525L, 1523L, (short)1, "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/combined-final.p2p" }, + { 1526L, 1524L, (short)1, "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=unbound&showintro=1&mimetype=plaintext" }, + { 1527L, 1525L, (short)1, "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=bindconfig&showintro=1&mimetype=plaintext" }, + { 1529L, 1527L, (short)1, "https://easylist-downloads.adblockplus.org/koreanlist.txt" }, + { 1530L, 1528L, (short)1, "https://raw.githubusercontent.com/bcye/Hello-Goodbye/master/filterlist.txt" }, + { 1531L, 1529L, (short)1, "https://raw.githubusercontent.com/kano1/I/master/adware_Scrip.txt" }, + { 1532L, 1530L, (short)1, "https://raw.githubusercontent.com/kano1/Kano/master/Spyware_Scrip.txt" }, + { 1533L, 1531L, (short)1, "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/legacy.txt" }, + { 1534L, 1532L, (short)1, "https://hostsfile.mine.nu/hosts.ips" }, + { 1535L, 1533L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/WordPressTranslatorAssistant.txt" }, + { 1535L, 1534L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/WordPressTranslatorAssistant.txt" }, + { 1536L, 1535L, (short)1, "https://raw.githubusercontent.com/RooneyMcNibNug/pihole-stuff/master/SNAFU.txt" }, + { 1537L, 1536L, (short)1, "https://easylist-msie.adblockplus.org/easyprivacy.tpl" }, + { 1538L, 1537L, (short)1, "https://easylist-downloads.adblockplus.org/easylist_noelemhide.tpl" }, + { 1539L, 1538L, (short)1, "https://easylist-downloads.adblockplus.org/easytest.tpl" }, + { 1540L, 1539L, (short)1, "https://easylist-downloads.adblockplus.org/easylistpolish.tpl" }, + { 1541L, 1540L, (short)1, "https://easylist-downloads.adblockplus.org/exceptionrules.tpl" }, + { 1543L, 1542L, (short)1, "https://easylist-downloads.adblockplus.org/koreanlist.tpl" }, + { 1544L, 1543L, (short)1, "https://easylist-downloads.adblockplus.org/easylistportuguese.tpl" }, + { 1545L, 1544L, (short)1, "https://raw.githubusercontent.com/wiltteri/subscriptions/master/wiltteri.tpl" }, + { 1546L, 1545L, (short)1, "https://raw.githubusercontent.com/wiltteri/subscriptions/master/wiltteri-reborn.tpl" }, + { 1547L, 1546L, (short)1, "https://easylist-downloads.adblockplus.org/indianlist.tpl" }, + { 1548L, 1547L, (short)1, "https://easylist-msie.adblockplus.org/easylistspanish+easylist.txt" }, + { 1549L, 1548L, (short)1, "https://easylist-msie.adblockplus.org/wiltteri+easylist.txt" }, + { 1550L, 1549L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/WebsiteStretcherVertical.txt" }, { 1550L, 1550L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/WebsiteStretcherVertical.txt" }, { 1551L, 1551L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/WebsiteStretcher4K.txt" }, - { 1552L, 1551L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/WebsiteStretcher4K.txt" }, - { 1553L, 1552L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/RedditTrashRemovalService.txt" }, - { 1554L, 1552L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/RedditTrashRemovalService.txt" }, - { 1555L, 1554L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/AntiPrayerTimesList.txt" }, - { 1556L, 1554L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/AntiPrayerTimesList.txt" }, - { 1557L, 1555L, (short)1, "https://raw.githubusercontent.com/bebasid/bebasid/master/releases/hosts" }, - { 1558L, 1556L, (short)1, "https://raw.githubusercontent.com/ColumWalsh/unsullied/master/unsullied.txt" }, - { 1559L, 1557L, (short)1, "https://raw.githubusercontent.com/DataMaster-2501/DataMaster-Android-AdBlock-Hosts/master/hosts" }, - { 1560L, 1558L, (short)1, "https://raw.githubusercontent.com/bogachenko/fuckfuckadblock/master/fuckfuckadblock.txt" }, - { 1561L, 1559L, (short)1, "https://raw.githubusercontent.com/BreakingTheNews/BreakingTheNews.github.io/master/hosts" }, - { 1562L, 1560L, (short)1, "https://raw.githubusercontent.com/ruvelro/Halt-and-Block-Mining/master/HBmining.bat" }, - { 1563L, 1561L, (short)1, "https://raw.githubusercontent.com/jkrejcha/AdmiraList/master/AdmiraList.txt" }, - { 1564L, 1562L, (short)1, "https://raw.githubusercontent.com/mtxadmin/ublock/master/it" }, - { 1566L, 1564L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiCelebBirthList" }, - { 1567L, 1564L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiCelebBirthList" }, - { 1570L, 1566L, (short)1, "https://raw.githubusercontent.com/biroloter/Mobile-Ad-Hosts/master/hosts" }, - { 1571L, 1567L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/101_optimized.txt" }, - { 1572L, 1568L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/2_optimized.txt" }, - { 1573L, 1569L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/16_optimized.txt" }, - { 1574L, 1570L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/6_optimized.txt" }, - { 1575L, 1573L, (short)1, "https://raw.githubusercontent.com/qwIvan/privoxy-adfilter/master/adfilter.action" }, - { 1576L, 1574L, (short)1, "https://raw.githubusercontent.com/mtxadmin/ublock/master/hosts.txt" }, - { 1577L, 1575L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/TwitchEvenMorePureViewingExperience.txt" }, - { 1578L, 1575L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/TwitchEvenMorePureViewingExperience.txt" }, - { 1579L, 1576L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-'Custom cursors' List.txt" }, - { 1580L, 1576L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-'Custom cursors' List.txt" }, - { 1581L, 1577L, (short)1, "https://raw.githubusercontent.com/dhowe/uAssets/master/filters/adnauseam.txt" }, - { 1582L, 1578L, (short)1, "https://raw.githubusercontent.com/fabianmoronzirfas/block-facebook/master/block-facebook.lsrules" }, - { 1583L, 1579L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/ExtremelyCondensedList.txt" }, - { 1584L, 1579L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/ExtremelyCondensedList.txt" }, - { 1585L, 1581L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersAdGuard.txt" }, - { 1586L, 1581L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersAdGuard.txt" }, - { 1587L, 1582L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersABP.txt" }, - { 1588L, 1582L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersABP.txt" }, - { 1589L, 1583L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersPrivoxy.action" }, - { 1590L, 1583L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersPrivoxy.action" }, - { 1591L, 1584L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersDnsmasq.conf" }, - { 1592L, 1584L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersDnsmasq.conf" }, - { 1593L, 1585L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersHostsDeny.deny" }, - { 1594L, 1585L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersHostsDeny.deny" }, - { 1595L, 1586L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareABP.txt" }, - { 1596L, 1586L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwareABP.txt" }, - { 1597L, 1587L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareAdGuard.txt" }, - { 1598L, 1587L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwareAdGuard.txt" }, - { 1599L, 1588L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareTPL.tpl" }, - { 1600L, 1588L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwareTPL.tpl" }, - { 1601L, 1589L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwarePrivoxy.action" }, - { 1602L, 1589L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwarePrivoxy.action" }, - { 1603L, 1590L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareHosts.txt" }, - { 1604L, 1590L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwareHosts.txt" }, - { 1605L, 1591L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-'Google Hangouts' List.txt" }, - { 1606L, 1591L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-'Google Hangouts' List.txt" }, - { 1607L, 1592L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/RickrollLinkIdentifier.txt" }, - { 1608L, 1592L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/RickrollLinkIdentifier.txt" }, - { 1609L, 1593L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersPrivacy.txt" }, - { 1610L, 1593L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersPrivacy.txt" }, - { 1611L, 1594L, (short)1, "https://theantisocialengineer.com/AntiSocial_Blacklist_Community_V1.txt" }, - { 1612L, 1595L, (short)1, "https://phishing.army/download/phishing_army_blocklist.txt" }, - { 1613L, 1596L, (short)1, "https://dehakkelaar.nl/lists/cryptojacking_campaign.list.txt" }, - { 1614L, 1597L, (short)1, "https://dbl.oisd.nl/" }, - { 1615L, 1597L, (short)2, "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dbl.txt" }, - { 1616L, 1597L, (short)3, "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dbl.txt" }, - { 1617L, 1598L, (short)1, "https://hosts.oisd.nl/" }, - { 1618L, 1598L, (short)2, "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/hosts.txt" }, - { 1619L, 1598L, (short)3, "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/hosts.txt" }, - { 1620L, 1599L, (short)1, "https://dblmobile.oisd.nl/" }, - { 1621L, 1599L, (short)2, "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dbl_light.txt" }, - { 1622L, 1599L, (short)3, "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dbl_light.txt" }, - { 1623L, 1600L, (short)1, "https://hostsmobile.oisd.nl/" }, - { 1624L, 1600L, (short)2, "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/hosts_light.txt" }, - { 1625L, 1600L, (short)3, "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/hosts_light.txt" }, - { 1626L, 1601L, (short)1, "https://raw.githubusercontent.com/joeylane/hosts/master/hosts" }, - { 1627L, 1603L, (short)1, "https://curben.gitlab.io/malware-filter/urlhaus-filter-online.txt" }, - { 1628L, 1603L, (short)2, "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-online.txt" }, - { 1629L, 1603L, (short)3, "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-online.txt" }, - { 1630L, 1604L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/DailyMotionSimplicity.txt" }, - { 1631L, 1604L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/DailyMotionSimplicity.txt" }, - { 1632L, 1605L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiPPGList.txt" }, - { 1633L, 1605L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiPPGList.txt" }, - { 1634L, 1606L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-Skype List.txt" }, - { 1635L, 1606L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-Skype List.txt" }, - { 1636L, 1607L, (short)1, "https://raw.githubusercontent.com/Laicure/HostsY_hosts/master/shithosts" }, - { 1637L, 1608L, (short)1, "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_base/sb_unified_hosts_base.lsrules" }, - { 1638L, 1609L, (short)1, "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-gambling-porn-social/sb_unified_hosts_fakenews-gambling-porn-social.lsrules" }, - { 1639L, 1610L, (short)1, "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-gambling-porn/sb_unified_hosts_fakenews-gambling-porn.lsrules" }, - { 1640L, 1611L, (short)1, "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-gambling-social/sb_unified_hosts_fakenews-gambling-social.lsrules" }, - { 1641L, 1612L, (short)1, "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-gambling/sb_unified_hosts_fakenews-gambling.lsrules" }, - { 1642L, 1613L, (short)1, "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-porn-social/sb_unified_hosts_fakenews-porn-social.lsrules" }, - { 1643L, 1614L, (short)1, "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-porn/sb_unified_hosts_fakenews-porn.lsrules" }, - { 1644L, 1615L, (short)1, "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-social/sb_unified_hosts_fakenews-social.lsrules" }, - { 1645L, 1616L, (short)1, "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews/sb_unified_hosts_fakenews.lsrules" }, - { 1646L, 1617L, (short)1, "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_gambling-porn-social/sb_unified_hosts_gambling-porn-social.lsrules" }, - { 1647L, 1618L, (short)1, "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_gambling-porn/sb_unified_hosts_gambling-porn.lsrules" }, - { 1648L, 1619L, (short)1, "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_gambling-social/sb_unified_hosts_gambling-social.lsrules" }, - { 1649L, 1620L, (short)1, "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_gambling/sb_unified_hosts_gambling.lsrules" }, - { 1650L, 1621L, (short)1, "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_porn-social/sb_unified_hosts_porn-social.lsrules" }, - { 1651L, 1622L, (short)1, "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_porn/sb_unified_hosts_porn.lsrules" }, - { 1652L, 1623L, (short)1, "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_social/sb_unified_hosts_social.lsrules" }, - { 1653L, 1624L, (short)1, "https://raw.githubusercontent.com/jostyee/littlesnitch-rules/master/blocklist.lsrules" }, - { 1654L, 1625L, (short)1, "https://raw.githubusercontent.com/jostyee/littlesnitch-rules/master/blocklist-china.lsrules" }, - { 1655L, 1626L, (short)1, "https://raw.githubusercontent.com/bdougherty/little-snitch-rules/master/rules/browsers.lsrules" }, - { 1656L, 1627L, (short)1, "https://raw.githubusercontent.com/ldt116/little-snitch-vietnamese-ad-block-rules/master/vietnamese-ad-block.lsrules" }, - { 1657L, 1628L, (short)1, "https://raw.githubusercontent.com/balupton/littlesnitch-filters/master/blocklist.lsrules" }, - { 1658L, 1629L, (short)1, "https://raw.githubusercontent.com/balupton/littlesnitch-filters/master/whitelist-cdn.lsrules" }, - { 1659L, 1630L, (short)1, "https://raw.githubusercontent.com/jaydorsey/little_snitch_rules/master/jaydorsey.lsrules" }, - { 1660L, 1631L, (short)1, "https://raw.githubusercontent.com/newyork10023/Little_Snitch/master/Block_All_All.lsrules" }, - { 1661L, 1632L, (short)1, "https://raw.githubusercontent.com/Kr00lIX/little-snitch-rules/master/Tracking.lsrules" }, - { 1662L, 1633L, (short)1, "https://raw.githubusercontent.com/Kr00lIX/little-snitch-rules/master/SyncLimit.lsrules" }, - { 1663L, 1634L, (short)1, "https://gitlab.com/jamujr/lsrg/raw/master/trackers-top-500.lsrules" }, - { 1664L, 1635L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/Dandelion Sprout's Anti-Religion List.txt" }, - { 1665L, 1635L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/Dandelion Sprout's Anti-Religion List.txt" }, - { 1666L, 1636L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/AntiPreacherList.txt" }, - { 1667L, 1636L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/AntiPreacherList.txt" }, - { 1668L, 1637L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAwfulCommentsList.txt" }, - { 1669L, 1637L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAwfulCommentsList.txt" }, - { 1670L, 1638L, (short)1, "https://raw.githubusercontent.com/Hakame-kun/uBlock-Filters-Indonesia/master/Windows Host/hosts" }, - { 1671L, 1639L, (short)1, "https://www.github.developerdan.com/hosts/lists/amp-hosts-extended.txt" }, - { 1672L, 1640L, (short)1, "https://raw.githubusercontent.com/kristerkari/umatrix-recipes/master/README.md" }, - { 1673L, 1641L, (short)1, "https://raw.githubusercontent.com/L2G/umatrix-rules/master/my-umatrix-rules.txt" }, - { 1674L, 1642L, (short)1, "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/ruleset/recipes_th.txt" }, - { 1675L, 1642L, (short)2, "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/ruleset/recipes_th.txt" }, - { 1676L, 1643L, (short)1, "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/ruleset/recipes_custom.txt" }, - { 1677L, 1643L, (short)2, "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/ruleset/recipes_custom.txt" }, - { 1678L, 1644L, (short)1, "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/uMatrix/recipes" }, - { 1679L, 1645L, (short)1, "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/Hosts/ads-tracking" }, - { 1680L, 1646L, (short)1, "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/Hosts/ads-tracking-breaking" }, - { 1681L, 1647L, (short)1, "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/Hosts/malware" }, - { 1682L, 1648L, (short)1, "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/uBlock/list" }, - { 1683L, 1649L, (short)1, "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/uBlock/facebook/groups-events" }, - { 1684L, 1650L, (short)1, "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/uBlock/facebook/messenger" }, - { 1685L, 1651L, (short)1, "https://raw.githubusercontent.com/themagicteeth/umatrix-recipes/master/recipes.txt" }, - { 1686L, 1652L, (short)1, "https://raw.githubusercontent.com/dfkt/umatrix-rules/master/my-umatrix-rules.txt" }, - { 1687L, 1653L, (short)1, "https://raw.githubusercontent.com/david1davidson/uMatrixMasterList/master/ruleset.txt" }, - { 1688L, 1656L, (short)1, "https://raw.githubusercontent.com/invasy/umatrix-ruleset/master/ruleset.txt" }, - { 1689L, 1657L, (short)1, "https://raw.githubusercontent.com/stephengeorgewest/my-umatrix-rules/master/my-umatrix-rules.txt" }, - { 1690L, 1658L, (short)1, "https://raw.githubusercontent.com/tranhoangcore/uMatrix-Rules/master/my-umatrix-rules.txt" }, - { 1691L, 1659L, (short)1, "https://raw.githubusercontent.com/dadav/umatrix-rules/master/my-rules.txt" }, - { 1692L, 1660L, (short)1, "https://raw.githubusercontent.com/bzsparks/uMatrix/master/my-umatrix-rules.txt" }, - { 1693L, 1661L, (short)1, "https://raw.githubusercontent.com/Strappazzon/teleme7ry/master/rules.txt" }, - { 1696L, 1664L, (short)1, "https://urlhaus.abuse.ch/downloads/text/" }, - { 1697L, 1665L, (short)1, "https://urlhaus.abuse.ch/downloads/rpz/" }, - { 1698L, 1666L, (short)1, "https://raw.githubusercontent.com/CryptoFR/crypto-scams-fr/master/misc.txt" }, - { 1699L, 1667L, (short)1, "https://raw.githubusercontent.com/CryptoFR/crypto-scams-fr/master/websites.txt" }, - { 1700L, 1668L, (short)1, "https://raw.githubusercontent.com/brasstax/RHEL-StreetPass-Relay/master/spoof-attwifi/dnsmasq.conf" }, - { 1701L, 1669L, (short)1, "https://raw.githubusercontent.com/farrokhi/adblock-iran/master/additional-trackers.txt" }, - { 1702L, 1669L, (short)2, "https://rawcdn.githack.com/farrokhi/adblock-iran/master/additional-trackers.txt" }, - { 1703L, 1670L, (short)1, "https://raw.githubusercontent.com/yous/YousList/master/hosts.txt" }, - { 1704L, 1671L, (short)1, "https://raw.githubusercontent.com/tcptomato/ROad-Block/master/road-block-filters.txt" }, - { 1705L, 1672L, (short)1, "https://raw.githubusercontent.com/tcptomato/ROad-Block/master/road-kill-filters.txt" }, - { 1706L, 1673L, (short)1, "https://github.com/nickspaargaren/no-google/raw/master/pihole-google.txt" }, - { 1707L, 1673L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/pihole-google.txt" }, - { 1708L, 1674L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/google-domains" }, - { 1709L, 1674L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/google-domains" }, - { 1710L, 1675L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/analyticsparsed" }, - { 1711L, 1675L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/analyticsparsed" }, - { 1712L, 1676L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/analytics.txt" }, - { 1713L, 1676L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/analytics.txt" }, - { 1714L, 1677L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/androidparsed" }, - { 1715L, 1677L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/androidparsed" }, - { 1716L, 1678L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/android.txt" }, - { 1717L, 1678L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/android.txt" }, - { 1718L, 1679L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/dnsparsed" }, - { 1719L, 1679L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/dnsparsed" }, - { 1720L, 1680L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/dns.txt" }, - { 1721L, 1680L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/dns.txt" }, - { 1722L, 1681L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/domainsparsed" }, - { 1723L, 1681L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/domainsparsed" }, - { 1724L, 1682L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/domains.txt" }, - { 1725L, 1682L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/domains.txt" }, - { 1726L, 1683L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/doubleclickparsed" }, - { 1727L, 1683L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/doubleclickparsed" }, - { 1728L, 1684L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/doubleclick.txt" }, - { 1729L, 1684L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/doubleclick.txt" }, - { 1730L, 1685L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/firebaseparsed" }, - { 1731L, 1685L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/firebaseparsed" }, - { 1732L, 1686L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/firebase.txt" }, - { 1733L, 1686L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/firebase.txt" }, - { 1734L, 1687L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/fontsparsed" }, - { 1735L, 1687L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/fontsparsed" }, - { 1736L, 1688L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/fonts.txt" }, - { 1737L, 1688L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/fonts.txt" }, - { 1738L, 1689L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/generalparsed" }, - { 1739L, 1689L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/generalparsed" }, - { 1740L, 1690L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/general.txt" }, - { 1741L, 1690L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/general.txt" }, - { 1742L, 1691L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/mailparsed" }, - { 1743L, 1691L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/mailparsed" }, - { 1744L, 1692L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/mail.txt" }, - { 1745L, 1692L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/mail.txt" }, - { 1746L, 1693L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/productsparsed" }, - { 1747L, 1693L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/productsparsed" }, - { 1748L, 1694L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/products.txt" }, - { 1749L, 1694L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/products.txt" }, - { 1750L, 1695L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/proxiesparsed" }, - { 1751L, 1695L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/proxiesparsed" }, - { 1752L, 1696L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/proxies.txt" }, - { 1753L, 1696L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/proxies.txt" }, - { 1754L, 1697L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/shortlinksparsed" }, - { 1755L, 1697L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/shortlinksparsed" }, - { 1756L, 1698L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/shortlinks.txt" }, - { 1757L, 1698L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/shortlinks.txt" }, - { 1758L, 1699L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/youtubeparsed" }, - { 1759L, 1699L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/youtubeparsed" }, - { 1760L, 1700L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/youtube.txt" }, - { 1761L, 1700L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/youtube.txt" }, - { 1762L, 1701L, (short)1, "https://asc.hk/adplus.txt" }, - { 1763L, 1702L, (short)1, "https://npc.0am.jp/hosts.php?dl=1" }, - { 1764L, 1703L, (short)1, "https://in0de.synology.me/pwn.txt" }, - { 1765L, 1704L, (short)1, "https://in0de.synology.me/own.txt" }, - { 1766L, 1706L, (short)1, "https://www.gameindustry.eu/files/hosts.txt" }, - { 1767L, 1707L, (short)1, "https://raw.githubusercontent.com/tiuxo/hosts/master/ads" }, - { 1768L, 1708L, (short)1, "https://raw.githubusercontent.com/tiuxo/hosts/master/porn" }, - { 1769L, 1709L, (short)1, "https://raw.githubusercontent.com/tiuxo/hosts/master/social" }, - { 1770L, 1710L, (short)1, "https://www.botvrij.eu/data/ioclist.hostname.raw" }, - { 1771L, 1711L, (short)1, "https://zonefiles.io/f/compromised/domains/live/" }, - { 1772L, 1712L, (short)1, "https://raw.githubusercontent.com/abc45628/hosts/master/hosts" }, - { 1773L, 1713L, (short)1, "https://raw.githubusercontent.com/jdlingyu/ad-wars/master/hosts" }, - { 1774L, 1714L, (short)1, "https://raw.githubusercontent.com/XionKzn/PiHole-Lists/master/PiHole/Archive/Quad9.txt" }, - { 1775L, 1715L, (short)1, "https://raw.githubusercontent.com/XionKzn/PiHole-Lists/master/PiHole/Archive/Yahoo_Ad_Servers.txt" }, - { 1776L, 1716L, (short)1, "https://raw.githubusercontent.com/XionKzn/PiHole-Lists/master/PiHole/PiHole_HOSTS_Spyware_HOSTS.txt" }, - { 1777L, 1717L, (short)1, "https://raw.githubusercontent.com/XionKzn/PiHole-Lists/master/PiHole/Archive/Cerber_Ransomware.txt" }, - { 1778L, 1718L, (short)1, "https://raw.githubusercontent.com/XionKzn/PiHole-Lists/master/PiHole/Blocklist_HOSTS.txt" }, - { 1779L, 1719L, (short)1, "https://raw.githubusercontent.com/KurzGedanke/kurzBlock/master/kurzBlock.txt" }, - { 1780L, 1720L, (short)1, "https://raw.githubusercontent.com/VernonStow/Filterlist/master/Filterlist.txt" }, - { 1781L, 1721L, (short)1, "https://raw.githubusercontent.com/jakejarvis/ios-trackers/master/blocklist.txt" }, - { 1782L, 1722L, (short)1, "https://raw.githubusercontent.com/hell-sh/Evil-Domains/master/evil-domains.txt" }, - { 1783L, 1723L, (short)1, "https://raw.githubusercontent.com/pirat28/IHateTracker/master/iHateTracker.txt" }, - { 1784L, 1724L, (short)1, "https://raw.githubusercontent.com/parseword/nolovia/master/skel/hosts-nolovia.txt" }, - { 1785L, 1725L, (short)1, "https://raw.githubusercontent.com/parseword/nolovia/master/skel/hosts-government-malware.txt" }, - { 1787L, 1727L, (short)1, "https://raw.githubusercontent.com/gwillem/magento-malware-scanner/master/rules/burner-domains.txt" }, - { 1788L, 1728L, (short)1, "https://raw.githubusercontent.com/soteria-nou/domain-list/master/ads.txt" }, - { 1789L, 1729L, (short)1, "https://raw.githubusercontent.com/soteria-nou/domain-list/master/affiliate.txt" }, - { 1790L, 1730L, (short)1, "https://raw.githubusercontent.com/soteria-nou/domain-list/master/analytics.txt" }, - { 1791L, 1731L, (short)1, "https://raw.githubusercontent.com/soteria-nou/domain-list/master/enrichments.txt" }, - { 1792L, 1732L, (short)1, "https://raw.githubusercontent.com/soteria-nou/domain-list/master/fake.txt" }, - { 1793L, 1733L, (short)1, "https://raw.githubusercontent.com/soteria-nou/domain-list/master/widgets.txt" }, - { 1794L, 1734L, (short)1, "https://raw.githubusercontent.com/badmojr/1Hosts/master/Pro/hosts.txt" }, - { 1795L, 1735L, (short)1, "https://raw.githubusercontent.com/badmojr/1Hosts/master/Pro/domains.txt" }, - { 1796L, 1736L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AdGuard Home Compilation List/AdGuardHomeCompilationList.txt" }, - { 1797L, 1736L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AdGuard Home Compilation List/AdGuardHomeCompilationList.txt" }, - { 1798L, 1737L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Imperial Units Remover.txt" }, - { 1799L, 1737L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Imperial Units Remover.txt" }, - { 1800L, 1738L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareAdGuardHome.txt" }, - { 1801L, 1738L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwareAdGuardHome.txt" }, - { 1802L, 1739L, (short)1, "https://warui.intaa.net/adhosts/local_zone.conf.txt" }, - { 1803L, 1740L, (short)1, "https://block.energized.pro/extensions/social/formats/hosts.txt" }, - { 1804L, 1741L, (short)1, "https://block.energized.pro/extensions/porn-lite/formats/hosts.txt" }, - { 1805L, 1742L, (short)1, "https://block.energized.pro/extensions/regional/formats/hosts.txt" }, - { 1806L, 1743L, (short)1, "https://block.energized.pro/spark/formats/domains.txt" }, - { 1807L, 1743L, (short)2, "https://blokada.org/mirror/v5/energized/spark/hosts.txt" }, - { 1808L, 1744L, (short)1, "https://block.energized.pro/bluGo/formats/domains.txt" }, - { 1809L, 1745L, (short)1, "https://block.energized.pro/blu/formats/domains.txt" }, - { 1810L, 1745L, (short)2, "https://blokada.org/mirror/v5/energized/blu/hosts.txt" }, - { 1811L, 1746L, (short)1, "https://block.energized.pro/basic/formats/domains.txt" }, - { 1812L, 1746L, (short)2, "https://blokada.org/mirror/v5/energized/basic/hosts.txt" }, - { 1813L, 1747L, (short)1, "https://block.energized.pro/porn/formats/domains.txt" }, - { 1814L, 1748L, (short)1, "https://block.energized.pro/ultimate/formats/domains.txt" }, - { 1815L, 1749L, (short)1, "https://block.energized.pro/unified/formats/domains.txt" }, - { 1816L, 1750L, (short)1, "https://block.energized.pro/extensions/xtreme/formats/domains.txt" }, - { 1817L, 1751L, (short)1, "https://block.energized.pro/extensions/social/formats/domains.txt" }, - { 1818L, 1752L, (short)1, "https://block.energized.pro/extensions/porn-lite/formats/domains.txt" }, - { 1819L, 1753L, (short)1, "https://block.energized.pro/extensions/regional/formats/domains.txt" }, - { 1820L, 1753L, (short)2, "https://blokada.org/mirror/v5/energized/regional/hosts.txt" }, - { 1821L, 1754L, (short)1, "https://block.energized.pro/spark/formats/filter" }, - { 1822L, 1755L, (short)1, "https://block.energized.pro/bluGo/formats/filter" }, - { 1823L, 1756L, (short)1, "https://block.energized.pro/blu/formats/filter" }, - { 1824L, 1757L, (short)1, "https://block.energized.pro/basic/formats/filter" }, - { 1825L, 1758L, (short)1, "https://block.energized.pro/porn/formats/filter" }, - { 1826L, 1759L, (short)1, "https://block.energized.pro/ultimate/formats/filter" }, - { 1827L, 1760L, (short)1, "https://block.energized.pro/unified/formats/filter" }, - { 1828L, 1761L, (short)1, "https://block.energized.pro/extensions/xtreme/formats/filter" }, - { 1829L, 1762L, (short)1, "https://block.energized.pro/extensions/social/formats/filter" }, - { 1830L, 1763L, (short)1, "https://block.energized.pro/extensions/porn-lite/formats/filter" }, - { 1831L, 1764L, (short)1, "https://block.energized.pro/extensions/regional/formats/filter" }, - { 1832L, 1765L, (short)1, "https://block.energized.pro/spark/formats/dnsmasq.conf" }, - { 1833L, 1766L, (short)1, "https://block.energized.pro/bluGo/formats/dnsmasq.conf" }, - { 1834L, 1767L, (short)1, "https://block.energized.pro/blu/formats/dnsmasq.conf" }, - { 1835L, 1768L, (short)1, "https://block.energized.pro/basic/formats/dnsmasq.conf" }, - { 1836L, 1769L, (short)1, "https://block.energized.pro/porn/formats/dnsmasq.conf" }, - { 1837L, 1770L, (short)1, "https://block.energized.pro/ultimate/formats/dnsmasq.conf" }, - { 1838L, 1771L, (short)1, "https://block.energized.pro/unified/formats/dnsmasq.conf" }, - { 1839L, 1772L, (short)1, "https://block.energized.pro/extensions/xtreme/formats/dnsmasq.conf" }, - { 1840L, 1773L, (short)1, "https://block.energized.pro/extensions/social/formats/dnsmasq.conf" }, - { 1841L, 1774L, (short)1, "https://block.energized.pro/extensions/porn-lite/formats/dnsmasq.conf" }, - { 1842L, 1775L, (short)1, "https://block.energized.pro/extensions/regional/formats/dnsmasq.conf" }, - { 1843L, 1776L, (short)1, "https://block.energized.pro/spark/formats/unbound.conf" }, - { 1844L, 1777L, (short)1, "https://block.energized.pro/bluGo/formats/unbound.conf" }, - { 1845L, 1778L, (short)1, "https://block.energized.pro/blu/formats/unbound.conf" }, - { 1846L, 1779L, (short)1, "https://block.energized.pro/basic/formats/unbound.conf" }, - { 1847L, 1780L, (short)1, "https://block.energized.pro/porn/formats/unbound.conf" }, - { 1848L, 1781L, (short)1, "https://block.energized.pro/ultimate/formats/unbound.conf" }, - { 1849L, 1782L, (short)1, "https://block.energized.pro/unified/formats/unbound.conf" }, - { 1850L, 1783L, (short)1, "https://block.energized.pro/extensions/xtreme/formats/unbound.conf" }, - { 1851L, 1784L, (short)1, "https://block.energized.pro/extensions/social/formats/unbound.conf" }, - { 1852L, 1785L, (short)1, "https://block.energized.pro/extensions/porn-lite/formats/unbound.conf" }, - { 1853L, 1786L, (short)1, "https://block.energized.pro/extensions/regional/formats/unbound.conf" }, - { 1854L, 1787L, (short)1, "https://block.energized.pro/spark/formats/rpz.txt" }, - { 1855L, 1788L, (short)1, "https://block.energized.pro/bluGo/formats/rpz.txt" }, - { 1856L, 1789L, (short)1, "https://block.energized.pro/blu/formats/rpz.txt" }, - { 1857L, 1790L, (short)1, "https://block.energized.pro/basic/formats/rpz.txt" }, - { 1858L, 1791L, (short)1, "https://block.energized.pro/porn/formats/rpz.txt" }, - { 1859L, 1792L, (short)1, "https://block.energized.pro/ultimate/formats/rpz.txt" }, - { 1860L, 1793L, (short)1, "https://block.energized.pro/unified/formats/rpz.txt" }, - { 1861L, 1794L, (short)1, "https://block.energized.pro/extensions/xtreme/formats/rpz.txt" }, - { 1862L, 1795L, (short)1, "https://block.energized.pro/extensions/social/formats/rpz.txt" }, - { 1863L, 1796L, (short)1, "https://block.energized.pro/extensions/porn-lite/formats/rpz.txt" }, - { 1864L, 1797L, (short)1, "https://block.energized.pro/extensions/regional/formats/rpz.txt" }, - { 1865L, 1798L, (short)1, "https://block.energized.pro/extensions/ips/formats/list.txt" }, - { 1866L, 1799L, (short)1, "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/arabic.txt" }, - { 1867L, 1800L, (short)1, "https://cdn.rixcloud.io/Quantumult/Rules/Default.conf" }, - { 1868L, 1801L, (short)1, "https://raw.githubusercontent.com/lhie1/Rules/master/Auto/REJECT.conf" }, - { 1870L, 1803L, (short)1, "https://raw.githubusercontent.com/scomper/surge-list/master/reject.list" }, - { 1873L, 1806L, (short)1, "https://lists.blocklist.de/lists/all.txt" }, - { 1874L, 1807L, (short)1, "https://danger.rulez.sk/projects/bruteforceblocker/blist.php" }, - { 1875L, 1808L, (short)1, "https://rules.emergingthreats.net/blockrules/compromised-ips.txt" }, - { 1876L, 1809L, (short)1, "https://rules.emergingthreats.net/fwrules/emerging-Block-IPs.txt" }, - { 1877L, 1810L, (short)1, "https://blocklist.greensnow.co/greensnow.txt" }, - { 1878L, 1811L, (short)1, "https://www.binarydefense.com/banlist.txt" }, - { 1879L, 1813L, (short)1, "https://cinsscore.com/list/ci-badguys.txt" }, - { 1880L, 1814L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/TabloidRemover.txt" }, - { 1881L, 1814L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/TabloidRemover.txt" }, - { 1882L, 1815L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiPCPriceHiderList.txt" }, - { 1883L, 1815L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiPCPriceHiderList.txt" }, - { 1884L, 1816L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/KADhosts/master/KADhole.txt" }, - { 1885L, 1817L, (short)1, "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-pihole-filters/hostfile_regex.txt" }, - { 1886L, 1818L, (short)1, "https://raw.githubusercontent.com/mmotti/pihole-regex/master/regex.list" }, - { 1887L, 1819L, (short)1, "https://www.github.developerdan.com/hosts/lists/facebook-extended.txt" }, - { 1890L, 1824L, (short)1, "https://myip.ms/files/blacklist/general/latest_blacklist.txt" }, - { 1891L, 1825L, (short)1, "https://iplists.firehol.org/files/hphosts_pha.ipset" }, - { 1892L, 1827L, (short)1, "https://iplists.firehol.org/files/hphosts_fsa.ipset" }, - { 1893L, 1828L, (short)1, "https://iplists.firehol.org/files/hphosts_grm.ipset" }, - { 1894L, 1829L, (short)1, "https://iplists.firehol.org/files/hphosts_exp.ipset" }, - { 1895L, 1830L, (short)1, "https://iplists.firehol.org/files/hphosts_emd.ipset" }, - { 1896L, 1831L, (short)1, "https://iplists.firehol.org/files/hphosts_ats.ipset" }, - { 1897L, 1832L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiPepeList.txt" }, - { 1898L, 1832L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiPepeList.txt" }, - { 1899L, 1833L, (short)1, "https://raw.githubusercontent.com/hawkeye116477/FilterListsDarkMode/master/DarkFilterLists.txt" }, - { 1900L, 1834L, (short)1, "https://raw.githubusercontent.com/caffeinewriter/DontPushMe/master/filterlist.txt" }, - { 1901L, 1835L, (short)1, "https://raw.githubusercontent.com/Nebula-Mechanica/Anti-AutoTranslation-List/master/anti-autotranslation-list.txt" }, - { 1902L, 1835L, (short)2, "https://gitcdn.xyz/repo/Nebula-Mechanica/Anti-AutoTranslation-List/master/anti-autotranslation-list.txt" }, - { 1903L, 1835L, (short)3, "https://rawcdn.githack.com/Nebula-Mechanica/Anti-AutoTranslation-List/master/anti-autotranslation-list.txt" }, - { 1904L, 1836L, (short)1, "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Hosts" }, - { 1905L, 1838L, (short)1, "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Anti/Anti Social" }, - { 1907L, 1840L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersAdGuardHome.txt" }, - { 1908L, 1840L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersAdGuardHome.txt" }, - { 1909L, 1841L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersPiHole.txt" }, - { 1910L, 1841L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersPiHole.txt" }, - { 1911L, 1842L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersSocks5.list" }, - { 1912L, 1842L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersSocks5.list" }, - { 1913L, 1843L, (short)1, "https://raw.githubusercontent.com/secretsnow/Ad-Filters/master/Ad Filters.txt" }, - { 1914L, 1844L, (short)1, "https://raw.githubusercontent.com/some-username-here1/motd-adblock/master/motd-adblock" }, - { 1915L, 1845L, (short)1, "https://raw.githubusercontent.com/T4Tea/ADPMobileFilter/master/ADPMobileFilter.txt" }, - { 1916L, 1846L, (short)1, "https://raw.githubusercontent.com/RandomAdversary/Macedonian-adBlock-Filters/master/Filters" }, - { 1917L, 1847L, (short)1, "https://raw.githubusercontent.com/dorjmi/nothingblock/master/filter.txt" }, - { 1918L, 1848L, (short)1, "https://raw.githubusercontent.com/Crystal-RainSlide/AdditionalFiltersCN/master/CN.txt" }, - { 1919L, 1849L, (short)1, "https://raw.githubusercontent.com/jiayiming/jCleanList/master/jCleanList_all.txt" }, - { 1920L, 1850L, (short)1, "https://n2o.io/projects/quarklist/dist/quarklist.txt" }, - { 1921L, 1852L, (short)1, "https://adblock-thai.github.io/thai-ads-filter/subscription.txt" }, - { 1922L, 1853L, (short)1, "https://adblock-thai.github.io/thai-ads-filter/annoyance.txt" }, - { 1923L, 1854L, (short)1, "https://raw.githubusercontent.com/masterinspire/Master-AdRules/master/Master-AdRules.txt" }, - { 1924L, 1856L, (short)1, "https://raw.githubusercontent.com/lutoma/nocomments/master/abp.txt" }, - { 1932L, 1864L, (short)1, "https://raw.githubusercontent.com/Ayesh/Adblock-Sinhala/master/filters.txt" }, - { 1933L, 1865L, (short)1, "https://raw.githubusercontent.com/zonprox/adblock/master/abpadv.txt" }, - { 1934L, 1866L, (short)1, "https://raw.githubusercontent.com/LanikSJ/ubo-filters/main/filters/combined-filters.txt" }, - { 1935L, 1867L, (short)1, "https://raw.githubusercontent.com/LanikSJ/ubo-filters/main/filters/ubo-filters.txt" }, - { 1936L, 1868L, (short)1, "https://mkb2091.github.io/blockconvert/output/adblock.txt" }, - { 1937L, 1869L, (short)1, "https://mkb2091.github.io/blockconvert/output/hosts.txt" }, - { 1938L, 1870L, (short)1, "https://mkb2091.github.io/blockconvert/output/domains.txt" }, - { 1939L, 1871L, (short)1, "https://mkb2091.github.io/blockconvert/output/ip_blocklist.txt" }, - { 1940L, 1872L, (short)1, "https://mkb2091.github.io/blockconvert/output/domains.rpz" }, - { 1941L, 1873L, (short)1, "https://mkb2091.github.io/blockconvert/output/whitelist_domains.txt" }, - { 1942L, 1876L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersRPZ.txt" }, - { 1943L, 1876L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersRPZ.txt" }, - { 1944L, 1877L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersUnbound.conf" }, - { 1945L, 1877L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersUnbound.conf" }, - { 1946L, 1878L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersForMinerBlock.txt" }, - { 1947L, 1878L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersForMinerBlock.txt" }, - { 1951L, 1880L, (short)1, "https://curben.gitlab.io/malware-filter/urlhaus-filter-domains-online.txt" }, - { 1952L, 1880L, (short)2, "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-domains-online.txt" }, - { 1953L, 1880L, (short)3, "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-domains-online.txt" }, - { 1954L, 1881L, (short)1, "https://raw.githubusercontent.com/angelics/pfbng/master/ads/ads-domain-list.txt" }, - { 1955L, 1882L, (short)1, "https://raw.githubusercontent.com/blocktastic/pihole/master/blocktastic.txt" }, - { 1956L, 1886L, (short)1, "https://raw.githubusercontent.com/cchevy/macedonian-pi-hole-blocklist/master/hosts.txt" }, - { 1957L, 1887L, (short)1, "https://raw.githubusercontent.com/chrisjudk/hosts/master/hosts" }, - { 1958L, 1888L, (short)1, "https://agh.lite.dcod.ml/hosts.php" }, - { 1959L, 1890L, (short)1, "https://raw.githubusercontent.com/deletescape/noads/master/lists/add-switzerland.txt" }, - { 1960L, 1891L, (short)1, "https://raw.githubusercontent.com/deletescape/noads/master/lists/fo-scumware.txt" }, - { 1961L, 1892L, (short)1, "https://lists.noads.online/lists/compilation.txt" }, - { 1962L, 1893L, (short)1, "https://raw.githubusercontent.com/deletescape/noads/master/lists/unbreak.txt" }, - { 1965L, 1896L, (short)1, "https://raw.githubusercontent.com/DRSDavidSoft/additional-hosts/master/domains/blacklist/adservers-and-trackers.txt" }, - { 1966L, 1897L, (short)1, "https://raw.githubusercontent.com/DRSDavidSoft/additional-hosts/master/domains/blacklist/unwanted-iranian.txt" }, - { 1967L, 1898L, (short)1, "https://raw.githubusercontent.com/herrbischoff/trackers/master/trackers.txt" }, - { 1968L, 1899L, (short)1, "https://raw.githubusercontent.com/javabean/dnsmasq-antispy/master/dnsmasq.ghostery_bugs.conf" }, - { 1969L, 1900L, (short)1, "https://raw.githubusercontent.com/javabean/dnsmasq-antispy/master/dnsmasq.zz-extra-servers-manual.conf" }, - { 1970L, 1901L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiCartoonHipsterList.txt" }, - { 1971L, 1901L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiCartoonHipsterList.txt" }, - { 1972L, 1902L, (short)1, "https://raw.githubusercontent.com/meinhimmel/hosts/master/hosts" }, - { 1973L, 1903L, (short)1, "https://raw.githubusercontent.com/mhhakim/pihole-blocklist/master/custom-blocklist.txt" }, - { 1974L, 1904L, (short)1, "https://raw.githubusercontent.com/Phentora/AdguardPersonalList/master/blocklist.txt" }, - { 1975L, 1906L, (short)1, "https://raw.githubusercontent.com/Rhys-H/hosts-list/master/HostsList.txt" }, - { 1976L, 1907L, (short)1, "https://raw.githubusercontent.com/smed79/blacklist/master/hosts.txt" }, - { 1977L, 1908L, (short)1, "https://raw.githubusercontent.com/stamparm/maltrail/master/trails/static/suspicious/pua.txt" }, - { 1978L, 1909L, (short)1, "https://raw.githubusercontent.com/svetlyobg/svet-custom-domains/master/ads-domains" }, - { 1979L, 1910L, (short)1, "https://raw.githubusercontent.com/svetlyobg/svet-custom-domains/master/ads-IPs" }, - { 1980L, 1911L, (short)1, "https://raw.githubusercontent.com/tomzuu/blacklist-named/master/ad.sites.conf" }, - { 1981L, 1912L, (short)1, "https://raw.githubusercontent.com/tomzuu/blacklist-named/master/phishing.sites.conf" }, - { 1982L, 1913L, (short)1, "https://raw.githubusercontent.com/tomzuu/blacklist-named/master/pushing.sites.conf" }, - { 1983L, 1914L, (short)1, "https://raw.githubusercontent.com/UnbendableStraw/samsungnosnooping/master/README.md" }, - { 1984L, 1915L, (short)1, "https://raw.githubusercontent.com/unchartedsky/adguard-kr/master/adguard-kr.txt" }, - { 1985L, 1916L, (short)1, "https://raw.githubusercontent.com/xlimit91/xlimit91-block-list/master/blacklist.txt" }, - { 1986L, 1917L, (short)1, "https://raw.githubusercontent.com/xlimit91/xlimit91-block-list/master/regex.list" }, - { 1987L, 1918L, (short)1, "https://raw.githubusercontent.com/ZYX2019/host-block-list/master/Custom.txt" }, - { 1988L, 1919L, (short)1, "https://raw.githubusercontent.com/zznidar/BAR/master/BAR-list" }, - { 1989L, 1920L, (short)1, "https://raw.githubusercontent.com/zznidar/BAR/master/URLs_full" }, - { 1990L, 1921L, (short)1, "https://raw.githubusercontent.com/infinitytec/blocklists/master/ads-and-trackers.txt" }, - { 1991L, 1922L, (short)1, "https://raw.githubusercontent.com/infinitytec/blocklists/master/scams-and-phishing.txt" }, - { 1995L, 1926L, (short)1, "https://raw.githubusercontent.com/jackrabbit335/UsefulLinuxShellScripts/master/Hosts %26 sourcelist/blacklist.txt" }, - { 1996L, 1927L, (short)1, "https://raw.githubusercontent.com/Th3M3/blocklists/master/malware.list" }, - { 1997L, 1928L, (short)1, "https://raw.githubusercontent.com/Th3M3/blocklists/master/tracking%26ads.list" }, - { 2000L, 1930L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/GameConsoleAdblockList.txt" }, - { 2001L, 1930L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/GameConsoleAdblockList.txt" }, - { 2002L, 1931L, (short)1, "https://www.thedumbterminal.co.uk/files/services/squidblockedsites/blocked.txt" }, - { 2003L, 1932L, (short)1, "https://assets.windscribe.com/custom_blocklists/clickbait.txt" }, - { 2004L, 1933L, (short)1, "https://gitlab.com/dns-firewall/dns/matrix/matrix/raw/master/source/adware/domains.list" }, - { 2005L, 1934L, (short)1, "https://gitlab.com/dns-firewall/dns/matrix/matrix/raw/master/source/tracking/domains.list" }, - { 2008L, 1937L, (short)1, "https://pastebin.com/raw/UP3s7pEB" }, - { 2009L, 1938L, (short)1, "https://raw.githubusercontent.com/YanFung/Ads/master/Mobile" }, - { 2010L, 1939L, (short)1, "https://raw.githubusercontent.com/yhonay/antipopads/master/hosts" }, - { 2011L, 1940L, (short)1, "https://repo.andnixsh.com/adblocker/hosts" }, - { 2012L, 1941L, (short)1, "https://raw.githubusercontent.com/huanz/surge-hosts/master/surge.conf" }, - { 2013L, 1942L, (short)1, "https://www.bentasker.co.uk/adblock/autolist.txt" }, - { 2014L, 1943L, (short)1, "https://www.bentasker.co.uk/adblock/adblock_compiled.txt" }, - { 2015L, 1944L, (short)1, "https://www.bentasker.co.uk/adblock/blockeddomains.txt" }, - { 2016L, 1945L, (short)1, "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/regex.list" }, - { 2017L, 1946L, (short)1, "https://anonymousposter.gitlab.io/ublockorigin-rules/blockrules.txt" }, - { 2019L, 1948L, (short)1, "https://raw.githubusercontent.com/fengyc/URLRedirector/master/tools/rules.json" }, - { 2020L, 1949L, (short)1, "https://raw.githubusercontent.com/fengyc/URLRedirector/master/tools/rules_geekzu.json" }, - { 2021L, 1950L, (short)1, "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=rpz&showintro=1&mimetype=plaintext" }, - { 2022L, 1951L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AdGuardHomeDisallowedIPs.txt" }, - { 2023L, 1951L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AdGuardHomeDisallowedIPs.txt" }, - { 2024L, 1952L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/TwitterPureReadingExperience.txt" }, - { 2025L, 1952L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/TwitterPureReadingExperience.txt" }, - { 2026L, 1953L, (short)1, "https://raw.githubusercontent.com/badmojr/1Hosts/master/complete/adblock.txt" }, - { 2027L, 1954L, (short)1, "https://raw.githubusercontent.com/badmojr/1Hosts/master/mini/adblock.txt" }, - { 2028L, 1955L, (short)1, "https://raw.githubusercontent.com/badmojr/1Hosts/master/Pro/adblock.txt" }, - { 2029L, 1956L, (short)1, "https://raw.githubusercontent.com/durablenapkin/scamblocklist/master/hosts.txt" }, - { 2030L, 1957L, (short)1, "https://raw.githubusercontent.com/Yumire/kiss-filters/master/filters.txt" }, - { 2031L, 1958L, (short)1, "https://gitlab.com/Sorrow-San/9anime-adblock-filters/raw/master/9Anime filter list" }, - { 2032L, 1959L, (short)1, "https://raw.githubusercontent.com/RiiConnect24/DNS-Server/master/dns_zones-hosts.txt" }, - { 2036L, 1963L, (short)1, "https://gitlab.com/Sorrow-San/9anime-adblock-filters/raw/master_with_banners/9Anime filter list" }, - { 2037L, 1964L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAdventureTimeList.txt" }, - { 2038L, 1964L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAdventureTimeList.txt" }, - { 2039L, 1965L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/HaveIBeenPwnedPasteRemover.txt" }, - { 2040L, 1965L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/HaveIBeenPwnedPasteRemover.txt" }, - { 2043L, 1967L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AdRemovalListForUnusualAds.txt" }, - { 2044L, 1967L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AdRemovalListForUnusualAds.txt" }, - { 2045L, 1968L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/AdguardFilters/master/AnnoyancesFilter/sections/remains.txt" }, - { 2046L, 1969L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/AdguardFilters/master/AnnoyancesFilter/sections/push-notifications.txt" }, - { 2047L, 1970L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/AdguardFilters/master/AnnoyancesFilter/sections/mobile-app.txt" }, - { 2048L, 1971L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/AdguardFilters/master/AnnoyancesFilter/sections/antiadblock.txt" }, - { 2049L, 1972L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AdGuard Home Compilation List/AdGuardHomeCompilationListIPs.txt" }, - { 2050L, 1972L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AdGuard Home Compilation List/AdGuardHomeCompilationListIPs.txt" }, - { 2051L, 1973L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/AntiAmazonListForTwitchDomains.txt" }, - { 2052L, 1973L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/AntiAmazonListForTwitchDomains.txt" }, - { 2053L, 1974L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/AntiAmazonListForTwitchHosts.txt" }, - { 2054L, 1974L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/AntiAmazonListForTwitchHosts.txt" }, - { 2055L, 1975L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/AntiF%25D1%2596%25D0%259C%2520ListDomains.txt" }, - { 2056L, 1975L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/AntiF%25D1%2596%25D0%259C%2520ListDomains.txt" }, - { 2057L, 1976L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiHivemindCartoonTrashingList.txt" }, - { 2058L, 1976L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiHivemindCartoonTrashingList.txt" }, - { 2059L, 1977L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/AntiHivemindCartoonTrashingListDomains.txt" }, - { 2060L, 1977L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/AntiHivemindCartoonTrashingListDomains.txt" }, - { 2061L, 1978L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/AntiStevenUniverseListDomains.txt" }, - { 2062L, 1978L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/AntiStevenUniverseListDomains.txt" }, - { 2063L, 1979L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/BrowseWebsitesWithoutLoggingInAGH.txt" }, - { 2064L, 1979L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/BrowseWebsitesWithoutLoggingInAGH.txt" }, - { 2065L, 1980L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/BrowseWebsitesWithoutLoggingInDomains.txt" }, - { 2066L, 1980L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/BrowseWebsitesWithoutLoggingInDomains.txt" }, - { 2067L, 1981L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/WikiaPureBrowsingExperienceDomains.txt" }, - { 2068L, 1981L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/WikiaPureBrowsingExperienceDomains.txt" }, - { 2069L, 1983L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiSubmissiveEroticaList.txt" }, - { 2070L, 1983L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiSubmissiveEroticaList.txt" }, - { 2071L, 1984L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/ImgurPureImageryExperience.txt" }, - { 2072L, 1984L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/ImgurPureImageryExperience.txt" }, - { 2073L, 1985L, (short)1, "https://dns.adguard.com/dns-query" }, - { 2074L, 1985L, (short)2, "tls://dns.adguard.com/" }, - { 2075L, 1985L, (short)3, "176.103.130.130" }, - { 2076L, 1986L, (short)1, "https://dns-family.adguard.com/dns-query" }, - { 2077L, 1986L, (short)2, "tls://dns-family.adguard.com/" }, - { 2078L, 1986L, (short)3, "176.103.130.132" }, - { 2079L, 1987L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/SayNoToRacismOnTwitch.txt" }, - { 2080L, 1987L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/SayNoToRacismOnTwitch.txt" }, - { 2081L, 1988L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/MeWeHappyTimeFunClub.txt" }, - { 2082L, 1988L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/MeWeHappyTimeFunClub.txt" }, - { 2083L, 1989L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/PokémonNoGOZone.txt" }, - { 2084L, 1989L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/PokémonNoGOZone.txt" }, - { 2085L, 1990L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/EmptyPaddingRemover.txt" }, - { 2086L, 1990L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/EmptyPaddingRemover.txt" }, - { 2087L, 1991L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/JapaneseTextSoftener.txt" }, - { 2088L, 1991L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/JapaneseTextSoftener.txt" }, - { 2089L, 1992L, (short)1, "https://dsi.ut-capitole.fr/blacklists/download/sect.tar.gz" }, - { 2090L, 1993L, (short)1, "https://dsi.ut-capitole.fr/blacklists/download/astrology.tar.gz" }, - { 2091L, 1994L, (short)1, "https://dsi.ut-capitole.fr/blacklists/download/shortener.tar.gz" }, - { 2092L, 1995L, (short)1, "https://block.energized.pro/assets/mirror/ut1-gambling.txt" }, - { 2093L, 1996L, (short)1, "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Extensions/Anti Obfuscation" }, - { 2095L, 1998L, (short)1, "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Anti/Anti Location Tracking" }, - { 2096L, 2000L, (short)1, "https://someonewhocares.org/hosts/ipv6/hosts" }, - { 2097L, 2001L, (short)1, "https://raw.githubusercontent.com/badmojr/1Hosts/master/complete/dnsmasq.conf" }, - { 2098L, 2002L, (short)1, "https://raw.githubusercontent.com/badmojr/1Hosts/master/mini/dnsmasq.conf" }, - { 2099L, 2003L, (short)1, "https://raw.githubusercontent.com/badmojr/1Hosts/master/Pro/dnsmasq.conf" }, - { 2100L, 2004L, (short)1, "http://www.accs-net.com/hosts/Downloads/hosts127001.zip" }, - { 2101L, 2005L, (short)1, "https://block.energized.pro/assets/mirror/ut1-cryptojacking.txt" }, - { 2102L, 2006L, (short)1, "https://block.energized.pro/assets/mirror/ut1-adult.txt" }, - { 2103L, 2007L, (short)1, "https://block.energized.pro/assets/mirror/ut1-social-networks.txt" }, - { 2104L, 2008L, (short)1, "https://raw.githubusercontent.com/blocklistproject/Lists/master/ads.txt" }, - { 2105L, 2009L, (short)1, "https://raw.githubusercontent.com/blocklistproject/Lists/master/crypto.txt" }, - { 2106L, 2010L, (short)1, "https://raw.githubusercontent.com/blocklistproject/Lists/master/ransomware.txt" }, - { 2107L, 2011L, (short)1, "https://raw.githubusercontent.com/blocklistproject/Lists/master/piracy.txt" }, - { 2108L, 2012L, (short)1, "https://raw.githubusercontent.com/blocklistproject/Lists/master/tracking.txt" }, - { 2109L, 2013L, (short)1, "https://raw.githubusercontent.com/blocklistproject/Lists/master/scam.txt" }, - { 2110L, 2014L, (short)1, "https://raw.githubusercontent.com/blocklistproject/Lists/master/gambling.txt" }, - { 2113L, 2017L, (short)1, "https://raw.githubusercontent.com/blocklistproject/Lists/master/porn.txt" }, - { 2114L, 2018L, (short)1, "https://raw.githubusercontent.com/blocklistproject/Lists/master/redirect.txt" }, - { 2115L, 2022L, (short)1, "http://ipverse.net/ipblocks/data/countries/cn.zone" }, - { 2116L, 2023L, (short)1, "http://ipverse.net/ipblocks/data/countries/ru.zone" }, - { 2117L, 2024L, (short)1, "http://ipverse.net/ipblocks/data/countries/ua.zone" }, - { 2118L, 2025L, (short)1, "http://ipverse.net/ipblocks/data/countries/ro.zone" }, - { 2119L, 2026L, (short)1, "https://hblock.molinero.dev/hosts_domains.txt" }, - { 2120L, 2027L, (short)1, "https://hblock.molinero.dev/hosts_adblock.txt" }, - { 2121L, 2028L, (short)1, "https://raw.githubusercontent.com/blocklistproject/Lists/master/malware.txt" }, - { 2122L, 2029L, (short)1, "http://ipverse.net/ipblocks/data/countries/cn-ipv6.zone" }, - { 2123L, 2030L, (short)1, "http://ipverse.net/ipblocks/data/countries/ru-ipv6.zone" }, - { 2124L, 2031L, (short)1, "http://ipverse.net/ipblocks/data/countries/ua-ipv6.zone" }, - { 2127L, 2034L, (short)1, "https://easylist-downloads.adblockplus.org/fanboy-notifications.txt" }, - { 2128L, 2035L, (short)1, "https://easylist-downloads.adblockplus.org/fanboy-notifications.tpl" }, - { 2129L, 2036L, (short)1, "https://raw.githubusercontent.com/notracking/hosts-blocklists/master/adblock/adblock.txt" }, - { 2130L, 2038L, (short)1, "https://raw.githubusercontent.com/dnswarden/blocklist/master/blacklist-formats/hosts" }, - { 2131L, 2039L, (short)1, "https://raw.githubusercontent.com/dnswarden/blocklist/master/blacklist-formats/hostnames" }, - { 2132L, 2040L, (short)1, "https://raw.githubusercontent.com/dnswarden/blocklist/master/blacklist-formats/rpz" }, - { 2133L, 2041L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersHostsIPv6.txt" }, - { 2134L, 2041L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersHostsIPv6.txt" }, - { 2137L, 2043L, (short)1, "https://raw.githubusercontent.com/privacy-protection-tools/anti-AD/master/anti-ad-easylist.txt" }, - { 2138L, 2043L, (short)2, "https://cdn.jsdelivr.net/gh/privacy-protection-tools/anti-AD@master/anti-ad-easylist.txt" }, - { 2139L, 2043L, (short)3, "https://anti-ad.net/easylist.txt" }, - { 2140L, 2044L, (short)1, "https://raw.githubusercontent.com/privacy-protection-tools/anti-AD/master/anti-ad-domains.txt" }, - { 2141L, 2044L, (short)2, "https://cdn.jsdelivr.net/gh/privacy-protection-tools/anti-AD@master/anti-ad-domains.txt" }, - { 2142L, 2044L, (short)3, "https://anti-ad.net/domains.txt" }, - { 2143L, 2045L, (short)1, "https://raw.githubusercontent.com/privacy-protection-tools/anti-AD/master/adblock-for-dnsmasq.conf" }, - { 2144L, 2045L, (short)2, "https://cdn.jsdelivr.net/gh/privacy-protection-tools/anti-AD@master/adblock-for-dnsmasq.conf" }, - { 2145L, 2045L, (short)3, "https://anti-ad.net/anti-ad-for-dnsmasq.conf" }, - { 2146L, 2046L, (short)1, "https://raw.githubusercontent.com/privacy-protection-tools/anti-AD/master/anti-ad-surge.txt" }, - { 2147L, 2046L, (short)2, "https://cdn.jsdelivr.net/gh/privacy-protection-tools/anti-AD@master/anti-ad-surge.txt" }, - { 2148L, 2046L, (short)3, "https://anti-ad.net/surge.txt" }, - { 2149L, 2047L, (short)1, "https://raw.githubusercontent.com/danielmiessler/SecLists/master/Discovery/Infrastructure/common-router-ips.txt" }, - { 2150L, 2048L, (short)1, "https://raw.githubusercontent.com/danielmiessler/SecLists/master/IOCs/kaspersky-careto-domains.txt" }, - { 2151L, 2049L, (short)1, "https://raw.githubusercontent.com/danielmiessler/SecLists/master/IOCs/kaspersky-careto-C2.txt" }, - { 2152L, 2050L, (short)1, "https://raw.githubusercontent.com/danielmiessler/SecLists/master/Miscellaneous/dns-resolvers.txt" }, - { 2153L, 2051L, (short)1, "https://hostfiles.frogeye.fr/firstparty-trackers.txt" }, - { 2154L, 2052L, (short)1, "https://hostfiles.frogeye.fr/firstparty-trackers-hosts.txt" }, - { 2155L, 2053L, (short)1, "https://hostfiles.frogeye.fr/firstparty-only-trackers.txt" }, - { 2156L, 2054L, (short)1, "https://hostfiles.frogeye.fr/firstparty-only-trackers-hosts.txt" }, - { 2157L, 2055L, (short)1, "https://hostfiles.frogeye.fr/multiparty-only-trackers.txt" }, - { 2158L, 2056L, (short)1, "https://hostfiles.frogeye.fr/multiparty-only-trackers-hosts.txt" }, - { 2159L, 2057L, (short)1, "https://raw.githubusercontent.com/nextdns/cname-cloaking-blocklist/master/domains" }, - { 2160L, 2058L, (short)1, "https://raw.githubusercontent.com/nextdns/piracy-blocklists/master/torrent-websites" }, - { 2161L, 2059L, (short)1, "https://gist.githubusercontent.com/Marfjeh/97f2f049b41b3f09eabcc04004073ae3/raw/58fe3d12c4157b0bda1a2af313809597ea54bb08/torrent-trackers-host" }, - { 2162L, 2060L, (short)1, "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Other Formats/Extra Format 1" }, - { 2163L, 2061L, (short)1, "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Other Formats/Simplified Domains" }, - { 2164L, 2062L, (short)1, "https://raw.githubusercontent.com/deletescape/noads/master/lists/additional-rules.txt" }, - { 2165L, 2063L, (short)1, "https://nixnet.services/hosts.txt" }, - { 2166L, 2064L, (short)1, "https://adblock.any.dns.nixnet.xyz/dns-query" }, - { 2167L, 2064L, (short)2, "tls://198.251.90.89:853/" }, - { 2168L, 2064L, (short)3, "198.251.90.89" }, - { 2169L, 2065L, (short)1, "https://raw.githubusercontent.com/troysjanda/MyBlockLists/master/yahoocomplete.txt" }, - { 2170L, 2067L, (short)1, "https://ads-doh.securedns.eu/dns-query" }, - { 2171L, 2067L, (short)2, "tls://ads-dot.securedns.eu/" }, - { 2172L, 2067L, (short)3, "146.185.167.43:5443" }, - { 2173L, 2068L, (short)1, "https://www.powershellgallery.com/packages/Manage-AdBlocksOnDNSServer/" }, - { 2174L, 2069L, (short)1, "91.239.26.140" }, - { 2175L, 2070L, (short)1, "https://dns.noads.online/dns-query" }, - { 2176L, 2070L, (short)2, "tls://dns.noads.online:853/" }, - { 2177L, 2070L, (short)3, "167.99.241.49" }, - { 2178L, 2071L, (short)1, "46.101.91.123" }, - { 2179L, 2072L, (short)1, "https://sebsauvage.net/hosts/hosts" }, - { 2180L, 2073L, (short)1, "https://sebsauvage.net/hosts/hosts-adguard" }, - { 2181L, 2074L, (short)1, "https://sebsauvage.net/hosts/raw" }, - { 2182L, 2075L, (short)1, "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/SmartTV-AGH.txt" }, - { 2184L, 2077L, (short)1, "https://raw.githubusercontent.com/durablenapkin/scamblocklist/master/adguard.txt" }, - { 2185L, 2078L, (short)1, "https://ads-for-open-source.readthedocs.io/en/latest/_static/lists/readthedocs-ads.txt" }, - { 2186L, 2079L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/adguard/social-plus.txt" }, - { 2187L, 2080L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/adguard/tracking-plus.txt" }, - { 2188L, 2081L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/sabre-filters2.txt" }, - { 2189L, 2082L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/blog-parts.txt" }, - { 2190L, 2083L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/blog-parts-adult.txt" }, - { 2191L, 2084L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/medium_mode/anti-allowlist.txt" }, - { 2192L, 2085L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/medium_mode/dynamic-rules.txt" }, - { 2193L, 2086L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/medium_mode/static-rules.txt" }, - { 2194L, 2087L, (short)1, "https://raw.githubusercontent.com/scafroglia93/blocklists/master/blocklists-main.txt" }, - { 2195L, 2088L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/medium_mode/dynamic-rules-mob.txt" }, - { 2196L, 2089L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/no_gen_cosm/phhider.txt" }, - { 2197L, 2090L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/no_gen_cosm/phhider-mob.txt" }, - { 2198L, 2091L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-filters.txt" }, - { 2199L, 2092L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-paranoid.txt" }, - { 2200L, 2093L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-social.txt" }, - { 2201L, 2094L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-annoyances.txt" }, - { 2203L, 2099L, (short)1, "185.228.168.9" }, - { 2204L, 2099L, (short)2, "185.228.169.9" }, - { 2205L, 2099L, (short)3, "2a0d:2a00:1::2" }, - { 2206L, 2100L, (short)1, "https://raw.githubusercontent.com/Kees1958/WS3_annual_most_used_survey_blocklist/master/Top500" }, - { 2207L, 2101L, (short)1, "https://raw.githubusercontent.com/DavidTai780/AdGuard-Home-Private-Rules/master/hosts.txt" }, - { 2208L, 2102L, (short)1, "https://raw.githubusercontent.com/loveqqzj/AdGuard/master/Mobile.txt" }, - { 2209L, 2103L, (short)1, "https://raw.githubusercontent.com/crimsonphobia/etc/master/ips" }, - { 2210L, 2104L, (short)1, "https://raw.githubusercontent.com/banbendalao/ADgk/master/ADgk.txt" }, - { 2211L, 2104L, (short)2, "https://cdn.jsdelivr.net/gh/banbendalao/ADgk@latest/ADgk.txt" }, - { 2212L, 2104L, (short)3, "https://banbendalao.coding.net/p/adgk/d/ADgk/git/raw/master/ADgk.txt" }, - { 2213L, 2105L, (short)1, "https://raw.githubusercontent.com/banbendalao/ADgk/master/kill-baidu-ad.txt" }, - { 2214L, 2105L, (short)2, "https://cdn.jsdelivr.net/gh/banbendalao/ADgk@latest/kill-baidu-ad.txt" }, - { 2215L, 2105L, (short)3, "https://banbendalao.coding.net/p/adgk/d/ADgk/git/raw/master/kill-baidu-ad.txt" }, - { 2216L, 2106L, (short)1, "https://dns.adgk.net:4433/dns-query" }, - { 2217L, 2106L, (short)2, "tls://dns.adgk.net/" }, - { 2218L, 2106L, (short)3, "47.98.48.196" }, - { 2219L, 2107L, (short)1, "45.7.228.197" }, - { 2220L, 2108L, (short)1, "198.91.86.63" }, - { 2221L, 2109L, (short)1, "https://gitee.com/halflife/list/raw/master/ad.txt" }, - { 2222L, 2109L, (short)2, "https://raw.githubusercontent.com/o0HalfLife0o/list/master/ad.txt" }, - { 2223L, 2110L, (short)1, "https://gitee.com/anye1998/Adguard-List-of-personal-rules/raw/master/List-of-personal-rules.txt" }, - { 2224L, 2111L, (short)1, "https://raw.githubusercontent.com/cjx82630/cjxlist/master/cjx-ublock.txt" }, - { 2225L, 2111L, (short)2, "https://gitee.com/cjx82630/cjxlist/raw/master/cjx-ublock.txt" }, - { 2226L, 2112L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/GDPR 451 List.txt" }, - { 2227L, 2112L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/GDPR 451 List.txt" }, - { 2228L, 2113L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/TorRedirectorList-URLRedirector.json" }, - { 2229L, 2113L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/TorRedirectorList-URLRedirector.json" }, - { 2230L, 2114L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/MediaPlayerGradientRemover.txt" }, - { 2231L, 2114L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/MediaPlayerGradientRemover.txt" }, - { 2232L, 2115L, (short)1, "https://easylist-downloads.adblockplus.org/indianlist+easylist.txt" }, - { 2233L, 2117L, (short)1, "https://easylist-downloads.adblockplus.org/indianlist+easylist.tpl" }, - { 2234L, 2118L, (short)1, "https://easylist-downloads.adblockplus.org/koreanlist+easylist.txt" }, - { 2235L, 2119L, (short)1, "https://easylist-downloads.adblockplus.org/koreanlist+easylist.tpl" }, - { 2236L, 2120L, (short)1, "https://easylist-downloads.adblockplus.org/easylistportuguese+easylist.txt" }, - { 2237L, 2121L, (short)1, "https://easylist-downloads.adblockplus.org/easylistportuguese+easylist.tpl" }, - { 2238L, 2122L, (short)1, "https://easylist-downloads.adblockplus.org/abpvn+easylist.txt" }, - { 2239L, 2123L, (short)1, "https://easylist-downloads.adblockplus.org/abpvn+easylist.tpl" }, - { 2240L, 2124L, (short)1, "https://easylist-downloads.adblockplus.org/abpindo+easylist.tpl" }, - { 2241L, 2125L, (short)1, "https://easylist-downloads.adblockplus.org/abp-filters-anti-cv.tpl" }, - { 2242L, 2126L, (short)1, "https://easylist-downloads.adblockplus.org/bitblock.tpl" }, - { 2243L, 2127L, (short)1, "https://easylist-downloads.adblockplus.org/bitblockext.txt" }, - { 2244L, 2128L, (short)1, "https://easylist-downloads.adblockplus.org/bitblockext.tpl" }, - { 2245L, 2129L, (short)1, "https://easylist-downloads.adblockplus.org/antinuha.txt" }, - { 2246L, 2130L, (short)1, "https://easylist-downloads.adblockplus.org/antinuha.tpl" }, - { 2247L, 2131L, (short)1, "https://easylist-downloads.adblockplus.org/cntblock.tpl" }, - { 2248L, 2132L, (short)1, "https://raw.githubusercontent.com/hdd1013/AdBlockListSubKr/master/filter.txt" }, - { 2249L, 2133L, (short)1, "https://raw.githubusercontent.com/dagoll/filters-list/master/dagoll-filters-list.txt" }, - { 2250L, 2134L, (short)1, "https://raw.githubusercontent.com/TheCardinalSystem/Cruncyroll-Filter-List/master/english.txt" }, - { 2251L, 2135L, (short)1, "https://raw.githubusercontent.com/radokristof/HunFakeNewsAdblockList/master/hosts" }, - { 2252L, 2136L, (short)1, "https://raw.githubusercontent.com/dagoll/filters-list/master/dynamic-filtering-rules.txt" }, - { 2253L, 2137L, (short)1, "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/AmazonFireTV.txt" }, - { 2254L, 2138L, (short)1, "https://raw.githubusercontent.com/DariusIurca/RFNBL-Romanian-Fake-News-Block-List/master/RFNBL.txt" }, - { 2255L, 2139L, (short)1, "https://raw.githubusercontent.com/DariusIurca/ROADBLK-EXTRA/master/ROADBLK-EXTRA.txt" }, - { 2256L, 2140L, (short)1, "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/dnscrypt/spy.txt" }, - { 2257L, 2141L, (short)1, "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/dnscrypt/update.txt" }, - { 2258L, 2142L, (short)1, "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/dnscrypt/extra.txt" }, - { 2259L, 2143L, (short)1, "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/openwrt/spy/dnsmasq.conf" }, - { 2260L, 2144L, (short)1, "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/openwrt/update/dnsmasq.conf" }, - { 2261L, 2145L, (short)1, "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/openwrt/extra/dnsmasq.conf" }, - { 2262L, 2146L, (short)1, "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/firewall/spy.txt" }, - { 2263L, 2147L, (short)1, "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/firewall/update.txt" }, - { 2264L, 2148L, (short)1, "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/firewall/extra.txt" }, - { 2265L, 2149L, (short)1, "https://easylist-downloads.adblockplus.org/easylistpolish+easylist.txt" }, - { 2266L, 2150L, (short)1, "https://easylist-downloads.adblockplus.org/easylistpolish+easylist.tpl" }, - { 2267L, 2151L, (short)1, "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/newhosts-final-IPv6.hosts" }, - { 2268L, 2152L, (short)1, "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/newhosts-final-Dual.hosts" }, - { 2269L, 2153L, (short)1, "https://raw.githubusercontent.com/tomzuu/blacklist-named/master/malwaredomainlist.conf" }, - { 2270L, 2154L, (short)1, "https://raw.githubusercontent.com/tomzuu/blacklist-named/master/cedia_justdomains.conf" }, - { 2271L, 2155L, (short)1, "https://abp.oisd.nl/" }, - { 2272L, 2155L, (short)2, "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/abp.txt" }, - { 2273L, 2155L, (short)3, "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/abp.txt" }, - { 2274L, 2156L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Special security lists/IDNHomographProtectionTotal.txt" }, - { 2275L, 2156L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Special security lists/IDNHomographProtectionTotal.txt" }, - { 2276L, 2157L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Special security lists/IDNHomographProtection-USLatinTLDsOnly.txt" }, - { 2277L, 2157L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Special security lists/IDNHomographProtection-USLatinTLDsOnly.txt" }, - { 2278L, 2158L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/EkstraBladetEroticContentRemover.txt" }, - { 2279L, 2158L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/EkstraBladetEroticContentRemover.txt" }, - { 2280L, 2159L, (short)1, "https://orca.pet/notonmyshift/domains.txt" }, - { 2281L, 2160L, (short)1, "https://bl.isx.fr/raw" }, - { 2282L, 2161L, (short)1, "https://raw.githubusercontent.com/hg1978/AdGuard-Home-Whitelist/master/whitelist.txt" }, - { 2283L, 2162L, (short)1, "https://raw.githubusercontent.com/MassMove/AttackVectors/master/LocalJournals/fake-local-journals-list.txt" }, - { 2284L, 2163L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/UndertaleRemoverForSoundCloud.txt" }, - { 2285L, 2163L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/UndertaleRemoverForSoundCloud.txt" }, - { 2289L, 2165L, (short)1, "https://curben.gitlab.io/malware-filter/urlhaus-filter-dnsmasq-online.conf" }, - { 2290L, 2165L, (short)2, "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-dnsmasq-online.conf" }, - { 2291L, 2165L, (short)3, "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-dnsmasq-online.conf" }, - { 2295L, 2167L, (short)1, "https://curben.gitlab.io/malware-filter/urlhaus-filter-hosts-online.txt" }, - { 2296L, 2167L, (short)2, "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-hosts-online.txt" }, - { 2297L, 2167L, (short)3, "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-hosts-online.txt" }, - { 2301L, 2169L, (short)1, "https://curben.gitlab.io/malware-filter/urlhaus-filter-bind-online.conf" }, - { 2302L, 2169L, (short)2, "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-bind-online.conf" }, - { 2303L, 2169L, (short)3, "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-bind-online.conf" }, - { 2307L, 2171L, (short)1, "https://curben.gitlab.io/malware-filter/urlhaus-filter-unbound-online.conf" }, - { 2308L, 2171L, (short)2, "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-unbound-online.conf" }, - { 2309L, 2171L, (short)3, "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-unbound-online.conf" }, - { 2310L, 2172L, (short)1, "https://v.firebog.net/hosts/static/HPHosts/Hostsemd.txt" }, - { 2311L, 2173L, (short)1, "https://v.firebog.net/hosts/static/HPHosts/Hostsexp.txt" }, - { 2312L, 2174L, (short)1, "https://v.firebog.net/hosts/static/HPHosts/Hostsgrm.txt" }, - { 2313L, 2175L, (short)1, "https://v.firebog.net/hosts/static/HPHosts/Hostsfsa.txt" }, - { 2314L, 2176L, (short)1, "https://v.firebog.net/hosts/static/HPHosts/Hostsmmt.txt" }, - { 2315L, 2177L, (short)1, "https://v.firebog.net/hosts/static/HPHosts/Hostspha.txt" }, - { 2318L, 2179L, (short)1, "https://blocklist.palemoon.org/ABL/lunar-blocklist.txt" }, - { 2319L, 2180L, (short)1, "https://mirai.security.gives/data/ip_list.txt" }, - { 2320L, 2181L, (short)1, "https://raw.githubusercontent.com/stamparm/maltrail/master/trails/static/suspicious/crypto_mining.txt" }, - { 2321L, 2182L, (short)1, "https://raw.githubusercontent.com/stamparm/maltrail/master/trails/static/suspicious/dynamic_domain.txt" }, - { 2322L, 2183L, (short)1, "https://raw.githubusercontent.com/stamparm/maltrail/master/trails/static/suspicious/rogue_dns.txt" }, - { 2323L, 2184L, (short)1, "https://raw.githubusercontent.com/stamparm/maltrail/master/trails/static/malicious/magentocore.txt" }, - { 2324L, 2185L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/1_optimized.txt" }, - { 2325L, 2186L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/4_optimized.txt" }, - { 2326L, 2187L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/113_optimized.txt" }, - { 2327L, 2188L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/104_optimized.txt" }, - { 2328L, 2189L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/115_optimized.txt" }, - { 2329L, 2190L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/118_optimized.txt" }, - { 2330L, 2191L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/14_optimized.txt" }, - { 2331L, 2192L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/122_optimized.txt" }, - { 2332L, 2193L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/123_optimized.txt" }, - { 2333L, 2194L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/213_optimized.txt" }, - { 2334L, 2195L, (short)1, "https://raw.githubusercontent.com/bambenek/block-doh/master/doh-hosts.txt" }, - { 2335L, 2196L, (short)1, "https://raw.githubusercontent.com/bambenek/block-doh/master/doh-ipv4.txt" }, - { 2336L, 2197L, (short)1, "https://raw.githubusercontent.com/bambenek/block-doh/master/doh-ipv6.txt" }, - { 2337L, 2198L, (short)1, "https://azorult-tracker.net/api/list/domain?format=plain" }, - { 2338L, 2199L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/10.txt" }, - { 2339L, 2200L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/13.txt" }, - { 2340L, 2201L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/3.txt" }, - { 2341L, 2202L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/9.txt" }, - { 2342L, 2203L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/4.txt" }, - { 2343L, 2204L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/1.txt" }, - { 2344L, 2205L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/11.txt" }, - { 2345L, 2206L, (short)1, "https://filters.adtidy.org/ios/filters/11.txt" }, - { 2346L, 2207L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/7.txt" }, - { 2347L, 2208L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/6.txt" }, - { 2348L, 2209L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/5.txt" }, - { 2349L, 2210L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/2.txt" }, - { 2350L, 2211L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/8.txt" }, - { 2351L, 2212L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/14.txt" }, - { 2352L, 2213L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/16.txt" }, - { 2353L, 2214L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/2_without_easylist.txt" }, - { 2354L, 2215L, (short)1, "https://raw.githubusercontent.com/stamparm/aux/master/maltrail-malware-domains.txt" }, - { 2355L, 2216L, (short)1, "https://infosharing.cybersaiyan.it/feeds/CS-PIHOLE" }, - { 2356L, 2217L, (short)1, "https://raw.githubusercontent.com/stamparm/ipsum/master/levels/4.txt" }, - { 2357L, 2218L, (short)1, "https://raw.githubusercontent.com/stamparm/ipsum/master/levels/5.txt" }, - { 2358L, 2219L, (short)1, "https://raw.githubusercontent.com/stamparm/ipsum/master/levels/6.txt" }, - { 2359L, 2220L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAnthroCombatWaifuList.txt" }, - { 2360L, 2220L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAnthroCombatWaifuList.txt" }, - { 2370L, 2230L, (short)1, "https://easylist-downloads.adblockplus.org/abpindo-minified.txt" }, - { 2371L, 2231L, (short)1, "https://easylist-downloads.adblockplus.org/abpvn-minified.txt" }, - { 2372L, 2232L, (short)1, "https://easylist-downloads.adblockplus.org/ruadlist-minified.txt" }, - { 2373L, 2233L, (short)1, "https://easylist-downloads.adblockplus.org/bulgarian_list-minified.txt" }, - { 2374L, 2234L, (short)1, "https://easylist-downloads.adblockplus.org/easylist-minified.txt" }, - { 2375L, 2235L, (short)1, "https://easylist-downloads.adblockplus.org/easylistchina-minified.txt" }, - { 2376L, 2236L, (short)1, "https://hg.adblockplus.org/customfilterlists/raw-file/default/easylistczechandslovak-minified.txt" }, - { 2377L, 2237L, (short)1, "https://easylist-downloads.adblockplus.org/easylistdutch-minified.txt" }, - { 2378L, 2238L, (short)1, "https://easylist-downloads.adblockplus.org/easylistgermany-minified.txt" }, - { 2379L, 2239L, (short)1, "https://easylist-downloads.adblockplus.org/easylistitaly-minified.txt" }, - { 2380L, 2240L, (short)1, "https://easylist-downloads.adblockplus.org/easylistlithuania-minified.txt" }, - { 2381L, 2241L, (short)1, "https://easylist-downloads.adblockplus.org/easylistpolish-minified.txt" }, - { 2382L, 2242L, (short)1, "https://easylist-downloads.adblockplus.org/easylistportuguese-minified.txt" }, - { 2383L, 2243L, (short)1, "https://easylist-downloads.adblockplus.org/easylistspanish-minified.txt" }, - { 2384L, 2244L, (short)1, "https://easylist-downloads.adblockplus.org/easyprivacy-minified.txt" }, - { 2385L, 2245L, (short)1, "https://easylist-downloads.adblockplus.org/fanboy-social-minified.txt" }, - { 2386L, 2246L, (short)1, "https://easylist-downloads.adblockplus.org/indianlist-minified.txt" }, - { 2387L, 2247L, (short)1, "https://easylist-downloads.adblockplus.org/israellist-minified.txt" }, - { 2388L, 2248L, (short)1, "https://easylist-downloads.adblockplus.org/latvianlist-minified.txt" }, - { 2390L, 2250L, (short)1, "https://easylist-downloads.adblockplus.org/liste_fr-minified.txt" }, - { 2391L, 2251L, (short)1, "https://easylist-downloads.adblockplus.org/rolist-minified.txt" }, - { 2392L, 2252L, (short)1, "https://easylist-downloads.adblockplus.org/easylistchina+easylistchina_compliance+easylist.txt" }, - { 2393L, 2253L, (short)1, "https://easylist-downloads.adblockplus.org/abpindo-minified.tpl" }, - { 2394L, 2254L, (short)1, "https://easylist-downloads.adblockplus.org/abpvn-minified.tpl" }, - { 2395L, 2255L, (short)1, "https://easylist-downloads.adblockplus.org/ruadlist-minified.tpl" }, - { 2396L, 2256L, (short)1, "https://easylist-downloads.adblockplus.org/bulgarian_list-minified.tpl" }, - { 2397L, 2257L, (short)1, "https://easylist-downloads.adblockplus.org/easylist-minified.tpl" }, - { 2398L, 2258L, (short)1, "https://easylist-downloads.adblockplus.org/easylistchina-minified.tpl" }, - { 2400L, 2260L, (short)1, "https://easylist-downloads.adblockplus.org/easylistdutch-minified.tpl" }, - { 2401L, 2261L, (short)1, "https://easylist-downloads.adblockplus.org/easylistgermany-minified.tpl" }, - { 2402L, 2262L, (short)1, "https://easylist-downloads.adblockplus.org/easylistitaly-minified.tpl" }, - { 2403L, 2263L, (short)1, "https://easylist-downloads.adblockplus.org/easylistlithuania-minified.tpl" }, - { 2404L, 2264L, (short)1, "https://easylist-downloads.adblockplus.org/easylistpolish-minified.tpl" }, - { 2405L, 2265L, (short)1, "https://easylist-downloads.adblockplus.org/easylistportuguese-minified.tpl" }, - { 2406L, 2266L, (short)1, "https://easylist-downloads.adblockplus.org/easylistspanish-minified.tpl" }, - { 2407L, 2267L, (short)1, "https://easylist-downloads.adblockplus.org/easyprivacy-minified.tpl" }, - { 2408L, 2268L, (short)1, "https://easylist-downloads.adblockplus.org/fanboy-social-minified.tpl" }, - { 2409L, 2269L, (short)1, "https://easylist-downloads.adblockplus.org/indianlist-minified.tpl" }, - { 2410L, 2270L, (short)1, "https://easylist-downloads.adblockplus.org/israellist-minified.tpl" }, - { 2411L, 2271L, (short)1, "https://easylist-downloads.adblockplus.org/latvianlist-minified.tpl" }, - { 2412L, 2272L, (short)1, "https://easylist-downloads.adblockplus.org/liste_ar-minified.tpl" }, - { 2413L, 2273L, (short)1, "https://easylist-downloads.adblockplus.org/liste_fr-minified.tpl" }, - { 2414L, 2274L, (short)1, "https://easylist-downloads.adblockplus.org/rolist-minified.tpl" }, - { 2415L, 2275L, (short)1, "https://easylist-downloads.adblockplus.org/easylistchina+easylistchina_compliance+easylist.tpl" }, - { 2416L, 2276L, (short)1, "https://sub.adtchrome.com/adt-chinalist-easylist.txt" }, - { 2417L, 2277L, (short)1, "https://raw.githubusercontent.com/TakoYachty/Gift-Card-Killer/master/Mega Untrusted Hosts Blocker.txt" }, - { 2418L, 2278L, (short)1, "https://raw.githubusercontent.com/stonecrusher/filterlists-pihole/master/watchlist-internet-ph.txt" }, - { 2419L, 2279L, (short)1, "https://badmojr.github.io/1Hosts/complete/wildcards.txt" }, - { 2420L, 2279L, (short)2, "https://raw.githubusercontent.com/badmojr/1Hosts/master/complete/wildcards.txt" }, - { 2421L, 2280L, (short)1, "https://badmojr.github.io/1Hosts/mini/wildcards.txt" }, - { 2422L, 2280L, (short)2, "https://raw.githubusercontent.com/badmojr/1Hosts/master/mini/wildcards.txt" } + { 1551L, 1552L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/WebsiteStretcher4K.txt" }, + { 1552L, 1553L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/RedditTrashRemovalService.txt" }, + { 1552L, 1554L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/RedditTrashRemovalService.txt" }, + { 1554L, 1555L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/AntiPrayerTimesList.txt" }, + { 1554L, 1556L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/AntiPrayerTimesList.txt" }, + { 1555L, 1557L, (short)1, "https://raw.githubusercontent.com/bebasid/bebasid/master/releases/hosts" }, + { 1556L, 1558L, (short)1, "https://raw.githubusercontent.com/ColumWalsh/unsullied/master/unsullied.txt" }, + { 1557L, 1559L, (short)1, "https://raw.githubusercontent.com/DataMaster-2501/DataMaster-Android-AdBlock-Hosts/master/hosts" }, + { 1558L, 1560L, (short)1, "https://raw.githubusercontent.com/bogachenko/fuckfuckadblock/master/fuckfuckadblock.txt" }, + { 1559L, 1561L, (short)1, "https://raw.githubusercontent.com/BreakingTheNews/BreakingTheNews.github.io/master/hosts" }, + { 1560L, 1562L, (short)1, "https://raw.githubusercontent.com/ruvelro/Halt-and-Block-Mining/master/HBmining.bat" }, + { 1561L, 1563L, (short)1, "https://raw.githubusercontent.com/jkrejcha/AdmiraList/master/AdmiraList.txt" }, + { 1562L, 1564L, (short)1, "https://raw.githubusercontent.com/mtxadmin/ublock/master/it" }, + { 1564L, 1566L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiCelebBirthList" }, + { 1564L, 1567L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiCelebBirthList" }, + { 1566L, 1570L, (short)1, "https://raw.githubusercontent.com/biroloter/Mobile-Ad-Hosts/master/hosts" }, + { 1567L, 1571L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/101_optimized.txt" }, + { 1568L, 1572L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/2_optimized.txt" }, + { 1569L, 1573L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/16_optimized.txt" }, + { 1570L, 1574L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/6_optimized.txt" }, + { 1573L, 1575L, (short)1, "https://raw.githubusercontent.com/qwIvan/privoxy-adfilter/master/adfilter.action" }, + { 1574L, 1576L, (short)1, "https://raw.githubusercontent.com/mtxadmin/ublock/master/hosts.txt" }, + { 1575L, 1577L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/TwitchEvenMorePureViewingExperience.txt" }, + { 1575L, 1578L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/TwitchEvenMorePureViewingExperience.txt" }, + { 1576L, 1579L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-'Custom cursors' List.txt" }, + { 1576L, 1580L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-'Custom cursors' List.txt" }, + { 1577L, 1581L, (short)1, "https://raw.githubusercontent.com/dhowe/uAssets/master/filters/adnauseam.txt" }, + { 1578L, 1582L, (short)1, "https://raw.githubusercontent.com/fabianmoronzirfas/block-facebook/master/block-facebook.lsrules" }, + { 1579L, 1583L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/ExtremelyCondensedList.txt" }, + { 1579L, 1584L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/ExtremelyCondensedList.txt" }, + { 1581L, 1585L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersAdGuard.txt" }, + { 1581L, 1586L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersAdGuard.txt" }, + { 1582L, 1587L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersABP.txt" }, + { 1582L, 1588L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersABP.txt" }, + { 1583L, 1589L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersPrivoxy.action" }, + { 1583L, 1590L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersPrivoxy.action" }, + { 1584L, 1591L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersDnsmasq.conf" }, + { 1584L, 1592L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersDnsmasq.conf" }, + { 1585L, 1593L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersHostsDeny.deny" }, + { 1585L, 1594L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersHostsDeny.deny" }, + { 1586L, 1595L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareABP.txt" }, + { 1586L, 1596L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwareABP.txt" }, + { 1587L, 1597L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareAdGuard.txt" }, + { 1587L, 1598L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwareAdGuard.txt" }, + { 1588L, 1599L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareTPL.tpl" }, + { 1588L, 1600L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwareTPL.tpl" }, + { 1589L, 1601L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwarePrivoxy.action" }, + { 1589L, 1602L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwarePrivoxy.action" }, + { 1590L, 1603L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareHosts.txt" }, + { 1590L, 1604L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwareHosts.txt" }, + { 1591L, 1605L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-'Google Hangouts' List.txt" }, + { 1591L, 1606L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-'Google Hangouts' List.txt" }, + { 1592L, 1607L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/RickrollLinkIdentifier.txt" }, + { 1592L, 1608L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/RickrollLinkIdentifier.txt" }, + { 1593L, 1609L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersPrivacy.txt" }, + { 1593L, 1610L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersPrivacy.txt" }, + { 1594L, 1611L, (short)1, "https://theantisocialengineer.com/AntiSocial_Blacklist_Community_V1.txt" }, + { 1595L, 1612L, (short)1, "https://phishing.army/download/phishing_army_blocklist.txt" }, + { 1596L, 1613L, (short)1, "https://dehakkelaar.nl/lists/cryptojacking_campaign.list.txt" }, + { 1597L, 1614L, (short)1, "https://dbl.oisd.nl/" }, + { 1597L, 1615L, (short)2, "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dbl.txt" }, + { 1597L, 1616L, (short)3, "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dbl.txt" }, + { 1598L, 1617L, (short)1, "https://hosts.oisd.nl/" }, + { 1598L, 1618L, (short)2, "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/hosts.txt" }, + { 1598L, 1619L, (short)3, "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/hosts.txt" }, + { 1599L, 1620L, (short)1, "https://dblmobile.oisd.nl/" }, + { 1599L, 1621L, (short)2, "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dbl_light.txt" }, + { 1599L, 1622L, (short)3, "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dbl_light.txt" }, + { 1600L, 1623L, (short)1, "https://hostsmobile.oisd.nl/" }, + { 1600L, 1624L, (short)2, "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/hosts_light.txt" }, + { 1600L, 1625L, (short)3, "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/hosts_light.txt" }, + { 1601L, 1626L, (short)1, "https://raw.githubusercontent.com/joeylane/hosts/master/hosts" }, + { 1603L, 1627L, (short)1, "https://curben.gitlab.io/malware-filter/urlhaus-filter-online.txt" }, + { 1603L, 1628L, (short)2, "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-online.txt" }, + { 1603L, 1629L, (short)3, "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-online.txt" }, + { 1604L, 1630L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/DailyMotionSimplicity.txt" }, + { 1604L, 1631L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/DailyMotionSimplicity.txt" }, + { 1605L, 1632L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiPPGList.txt" }, + { 1605L, 1633L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiPPGList.txt" }, + { 1606L, 1634L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-Skype List.txt" }, + { 1606L, 1635L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-Skype List.txt" }, + { 1607L, 1636L, (short)1, "https://raw.githubusercontent.com/Laicure/HostsY_hosts/master/shithosts" }, + { 1608L, 1637L, (short)1, "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_base/sb_unified_hosts_base.lsrules" }, + { 1609L, 1638L, (short)1, "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-gambling-porn-social/sb_unified_hosts_fakenews-gambling-porn-social.lsrules" }, + { 1610L, 1639L, (short)1, "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-gambling-porn/sb_unified_hosts_fakenews-gambling-porn.lsrules" }, + { 1611L, 1640L, (short)1, "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-gambling-social/sb_unified_hosts_fakenews-gambling-social.lsrules" }, + { 1612L, 1641L, (short)1, "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-gambling/sb_unified_hosts_fakenews-gambling.lsrules" }, + { 1613L, 1642L, (short)1, "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-porn-social/sb_unified_hosts_fakenews-porn-social.lsrules" }, + { 1614L, 1643L, (short)1, "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-porn/sb_unified_hosts_fakenews-porn.lsrules" }, + { 1615L, 1644L, (short)1, "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-social/sb_unified_hosts_fakenews-social.lsrules" }, + { 1616L, 1645L, (short)1, "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews/sb_unified_hosts_fakenews.lsrules" }, + { 1617L, 1646L, (short)1, "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_gambling-porn-social/sb_unified_hosts_gambling-porn-social.lsrules" }, + { 1618L, 1647L, (short)1, "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_gambling-porn/sb_unified_hosts_gambling-porn.lsrules" }, + { 1619L, 1648L, (short)1, "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_gambling-social/sb_unified_hosts_gambling-social.lsrules" }, + { 1620L, 1649L, (short)1, "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_gambling/sb_unified_hosts_gambling.lsrules" }, + { 1621L, 1650L, (short)1, "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_porn-social/sb_unified_hosts_porn-social.lsrules" }, + { 1622L, 1651L, (short)1, "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_porn/sb_unified_hosts_porn.lsrules" }, + { 1623L, 1652L, (short)1, "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_social/sb_unified_hosts_social.lsrules" }, + { 1624L, 1653L, (short)1, "https://raw.githubusercontent.com/jostyee/littlesnitch-rules/master/blocklist.lsrules" }, + { 1625L, 1654L, (short)1, "https://raw.githubusercontent.com/jostyee/littlesnitch-rules/master/blocklist-china.lsrules" }, + { 1626L, 1655L, (short)1, "https://raw.githubusercontent.com/bdougherty/little-snitch-rules/master/rules/browsers.lsrules" }, + { 1627L, 1656L, (short)1, "https://raw.githubusercontent.com/ldt116/little-snitch-vietnamese-ad-block-rules/master/vietnamese-ad-block.lsrules" }, + { 1628L, 1657L, (short)1, "https://raw.githubusercontent.com/balupton/littlesnitch-filters/master/blocklist.lsrules" }, + { 1629L, 1658L, (short)1, "https://raw.githubusercontent.com/balupton/littlesnitch-filters/master/whitelist-cdn.lsrules" }, + { 1630L, 1659L, (short)1, "https://raw.githubusercontent.com/jaydorsey/little_snitch_rules/master/jaydorsey.lsrules" }, + { 1631L, 1660L, (short)1, "https://raw.githubusercontent.com/newyork10023/Little_Snitch/master/Block_All_All.lsrules" }, + { 1632L, 1661L, (short)1, "https://raw.githubusercontent.com/Kr00lIX/little-snitch-rules/master/Tracking.lsrules" }, + { 1633L, 1662L, (short)1, "https://raw.githubusercontent.com/Kr00lIX/little-snitch-rules/master/SyncLimit.lsrules" }, + { 1634L, 1663L, (short)1, "https://gitlab.com/jamujr/lsrg/raw/master/trackers-top-500.lsrules" }, + { 1635L, 1664L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/Dandelion Sprout's Anti-Religion List.txt" }, + { 1635L, 1665L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/Dandelion Sprout's Anti-Religion List.txt" }, + { 1636L, 1666L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/AntiPreacherList.txt" }, + { 1636L, 1667L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/AntiPreacherList.txt" }, + { 1637L, 1668L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAwfulCommentsList.txt" }, + { 1637L, 1669L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAwfulCommentsList.txt" }, + { 1638L, 1670L, (short)1, "https://raw.githubusercontent.com/Hakame-kun/uBlock-Filters-Indonesia/master/Windows Host/hosts" }, + { 1639L, 1671L, (short)1, "https://www.github.developerdan.com/hosts/lists/amp-hosts-extended.txt" }, + { 1640L, 1672L, (short)1, "https://raw.githubusercontent.com/kristerkari/umatrix-recipes/master/README.md" }, + { 1641L, 1673L, (short)1, "https://raw.githubusercontent.com/L2G/umatrix-rules/master/my-umatrix-rules.txt" }, + { 1642L, 1674L, (short)1, "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/ruleset/recipes_th.txt" }, + { 1642L, 1675L, (short)2, "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/ruleset/recipes_th.txt" }, + { 1643L, 1676L, (short)1, "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/ruleset/recipes_custom.txt" }, + { 1643L, 1677L, (short)2, "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/ruleset/recipes_custom.txt" }, + { 1644L, 1678L, (short)1, "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/uMatrix/recipes" }, + { 1645L, 1679L, (short)1, "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/Hosts/ads-tracking" }, + { 1646L, 1680L, (short)1, "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/Hosts/ads-tracking-breaking" }, + { 1647L, 1681L, (short)1, "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/Hosts/malware" }, + { 1648L, 1682L, (short)1, "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/uBlock/list" }, + { 1649L, 1683L, (short)1, "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/uBlock/facebook/groups-events" }, + { 1650L, 1684L, (short)1, "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/uBlock/facebook/messenger" }, + { 1651L, 1685L, (short)1, "https://raw.githubusercontent.com/themagicteeth/umatrix-recipes/master/recipes.txt" }, + { 1652L, 1686L, (short)1, "https://raw.githubusercontent.com/dfkt/umatrix-rules/master/my-umatrix-rules.txt" }, + { 1653L, 1687L, (short)1, "https://raw.githubusercontent.com/david1davidson/uMatrixMasterList/master/ruleset.txt" }, + { 1656L, 1688L, (short)1, "https://raw.githubusercontent.com/invasy/umatrix-ruleset/master/ruleset.txt" }, + { 1657L, 1689L, (short)1, "https://raw.githubusercontent.com/stephengeorgewest/my-umatrix-rules/master/my-umatrix-rules.txt" }, + { 1658L, 1690L, (short)1, "https://raw.githubusercontent.com/tranhoangcore/uMatrix-Rules/master/my-umatrix-rules.txt" }, + { 1659L, 1691L, (short)1, "https://raw.githubusercontent.com/dadav/umatrix-rules/master/my-rules.txt" }, + { 1660L, 1692L, (short)1, "https://raw.githubusercontent.com/bzsparks/uMatrix/master/my-umatrix-rules.txt" }, + { 1661L, 1693L, (short)1, "https://raw.githubusercontent.com/Strappazzon/teleme7ry/master/rules.txt" }, + { 1664L, 1696L, (short)1, "https://urlhaus.abuse.ch/downloads/text/" }, + { 1665L, 1697L, (short)1, "https://urlhaus.abuse.ch/downloads/rpz/" }, + { 1666L, 1698L, (short)1, "https://raw.githubusercontent.com/CryptoFR/crypto-scams-fr/master/misc.txt" }, + { 1667L, 1699L, (short)1, "https://raw.githubusercontent.com/CryptoFR/crypto-scams-fr/master/websites.txt" }, + { 1668L, 1700L, (short)1, "https://raw.githubusercontent.com/brasstax/RHEL-StreetPass-Relay/master/spoof-attwifi/dnsmasq.conf" }, + { 1669L, 1701L, (short)1, "https://raw.githubusercontent.com/farrokhi/adblock-iran/master/additional-trackers.txt" }, + { 1669L, 1702L, (short)2, "https://rawcdn.githack.com/farrokhi/adblock-iran/master/additional-trackers.txt" }, + { 1670L, 1703L, (short)1, "https://raw.githubusercontent.com/yous/YousList/master/hosts.txt" }, + { 1671L, 1704L, (short)1, "https://raw.githubusercontent.com/tcptomato/ROad-Block/master/road-block-filters.txt" }, + { 1672L, 1705L, (short)1, "https://raw.githubusercontent.com/tcptomato/ROad-Block/master/road-kill-filters.txt" }, + { 1673L, 1706L, (short)1, "https://github.com/nickspaargaren/no-google/raw/master/pihole-google.txt" }, + { 1673L, 1707L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/pihole-google.txt" }, + { 1674L, 1708L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/google-domains" }, + { 1674L, 1709L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/google-domains" }, + { 1675L, 1710L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/analyticsparsed" }, + { 1675L, 1711L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/analyticsparsed" }, + { 1676L, 1712L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/analytics.txt" }, + { 1676L, 1713L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/analytics.txt" }, + { 1677L, 1714L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/androidparsed" }, + { 1677L, 1715L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/androidparsed" }, + { 1678L, 1716L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/android.txt" }, + { 1678L, 1717L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/android.txt" }, + { 1679L, 1718L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/dnsparsed" }, + { 1679L, 1719L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/dnsparsed" }, + { 1680L, 1720L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/dns.txt" }, + { 1680L, 1721L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/dns.txt" }, + { 1681L, 1722L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/domainsparsed" }, + { 1681L, 1723L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/domainsparsed" }, + { 1682L, 1724L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/domains.txt" }, + { 1682L, 1725L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/domains.txt" }, + { 1683L, 1726L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/doubleclickparsed" }, + { 1683L, 1727L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/doubleclickparsed" }, + { 1684L, 1728L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/doubleclick.txt" }, + { 1684L, 1729L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/doubleclick.txt" }, + { 1685L, 1730L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/firebaseparsed" }, + { 1685L, 1731L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/firebaseparsed" }, + { 1686L, 1732L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/firebase.txt" }, + { 1686L, 1733L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/firebase.txt" }, + { 1687L, 1734L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/fontsparsed" }, + { 1687L, 1735L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/fontsparsed" }, + { 1688L, 1736L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/fonts.txt" }, + { 1688L, 1737L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/fonts.txt" }, + { 1689L, 1738L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/generalparsed" }, + { 1689L, 1739L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/generalparsed" }, + { 1690L, 1740L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/general.txt" }, + { 1690L, 1741L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/general.txt" }, + { 1691L, 1742L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/mailparsed" }, + { 1691L, 1743L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/mailparsed" }, + { 1692L, 1744L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/mail.txt" }, + { 1692L, 1745L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/mail.txt" }, + { 1693L, 1746L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/productsparsed" }, + { 1693L, 1747L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/productsparsed" }, + { 1694L, 1748L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/products.txt" }, + { 1694L, 1749L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/products.txt" }, + { 1695L, 1750L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/proxiesparsed" }, + { 1695L, 1751L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/proxiesparsed" }, + { 1696L, 1752L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/proxies.txt" }, + { 1696L, 1753L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/proxies.txt" }, + { 1697L, 1754L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/shortlinksparsed" }, + { 1697L, 1755L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/shortlinksparsed" }, + { 1698L, 1756L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/shortlinks.txt" }, + { 1698L, 1757L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/shortlinks.txt" }, + { 1699L, 1758L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/youtubeparsed" }, + { 1699L, 1759L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/youtubeparsed" }, + { 1700L, 1760L, (short)1, "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/youtube.txt" }, + { 1700L, 1761L, (short)3, "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/youtube.txt" }, + { 1701L, 1762L, (short)1, "https://asc.hk/adplus.txt" }, + { 1702L, 1763L, (short)1, "https://npc.0am.jp/hosts.php?dl=1" }, + { 1703L, 1764L, (short)1, "https://in0de.synology.me/pwn.txt" }, + { 1704L, 1765L, (short)1, "https://in0de.synology.me/own.txt" }, + { 1706L, 1766L, (short)1, "https://www.gameindustry.eu/files/hosts.txt" }, + { 1707L, 1767L, (short)1, "https://raw.githubusercontent.com/tiuxo/hosts/master/ads" }, + { 1708L, 1768L, (short)1, "https://raw.githubusercontent.com/tiuxo/hosts/master/porn" }, + { 1709L, 1769L, (short)1, "https://raw.githubusercontent.com/tiuxo/hosts/master/social" }, + { 1710L, 1770L, (short)1, "https://www.botvrij.eu/data/ioclist.hostname.raw" }, + { 1711L, 1771L, (short)1, "https://zonefiles.io/f/compromised/domains/live/" }, + { 1712L, 1772L, (short)1, "https://raw.githubusercontent.com/abc45628/hosts/master/hosts" }, + { 1713L, 1773L, (short)1, "https://raw.githubusercontent.com/jdlingyu/ad-wars/master/hosts" }, + { 1714L, 1774L, (short)1, "https://raw.githubusercontent.com/XionKzn/PiHole-Lists/master/PiHole/Archive/Quad9.txt" }, + { 1715L, 1775L, (short)1, "https://raw.githubusercontent.com/XionKzn/PiHole-Lists/master/PiHole/Archive/Yahoo_Ad_Servers.txt" }, + { 1716L, 1776L, (short)1, "https://raw.githubusercontent.com/XionKzn/PiHole-Lists/master/PiHole/PiHole_HOSTS_Spyware_HOSTS.txt" }, + { 1717L, 1777L, (short)1, "https://raw.githubusercontent.com/XionKzn/PiHole-Lists/master/PiHole/Archive/Cerber_Ransomware.txt" }, + { 1718L, 1778L, (short)1, "https://raw.githubusercontent.com/XionKzn/PiHole-Lists/master/PiHole/Blocklist_HOSTS.txt" }, + { 1719L, 1779L, (short)1, "https://raw.githubusercontent.com/KurzGedanke/kurzBlock/master/kurzBlock.txt" }, + { 1720L, 1780L, (short)1, "https://raw.githubusercontent.com/VernonStow/Filterlist/master/Filterlist.txt" }, + { 1721L, 1781L, (short)1, "https://raw.githubusercontent.com/jakejarvis/ios-trackers/master/blocklist.txt" }, + { 1722L, 1782L, (short)1, "https://raw.githubusercontent.com/hell-sh/Evil-Domains/master/evil-domains.txt" }, + { 1723L, 1783L, (short)1, "https://raw.githubusercontent.com/pirat28/IHateTracker/master/iHateTracker.txt" }, + { 1724L, 1784L, (short)1, "https://raw.githubusercontent.com/parseword/nolovia/master/skel/hosts-nolovia.txt" }, + { 1725L, 1785L, (short)1, "https://raw.githubusercontent.com/parseword/nolovia/master/skel/hosts-government-malware.txt" }, + { 1727L, 1787L, (short)1, "https://raw.githubusercontent.com/gwillem/magento-malware-scanner/master/rules/burner-domains.txt" }, + { 1728L, 1788L, (short)1, "https://raw.githubusercontent.com/soteria-nou/domain-list/master/ads.txt" }, + { 1729L, 1789L, (short)1, "https://raw.githubusercontent.com/soteria-nou/domain-list/master/affiliate.txt" }, + { 1730L, 1790L, (short)1, "https://raw.githubusercontent.com/soteria-nou/domain-list/master/analytics.txt" }, + { 1731L, 1791L, (short)1, "https://raw.githubusercontent.com/soteria-nou/domain-list/master/enrichments.txt" }, + { 1732L, 1792L, (short)1, "https://raw.githubusercontent.com/soteria-nou/domain-list/master/fake.txt" }, + { 1733L, 1793L, (short)1, "https://raw.githubusercontent.com/soteria-nou/domain-list/master/widgets.txt" }, + { 1734L, 1794L, (short)1, "https://raw.githubusercontent.com/badmojr/1Hosts/master/Pro/hosts.txt" }, + { 1735L, 1795L, (short)1, "https://raw.githubusercontent.com/badmojr/1Hosts/master/Pro/domains.txt" }, + { 1736L, 1796L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AdGuard Home Compilation List/AdGuardHomeCompilationList.txt" }, + { 1736L, 1797L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AdGuard Home Compilation List/AdGuardHomeCompilationList.txt" }, + { 1737L, 1798L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Imperial Units Remover.txt" }, + { 1737L, 1799L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Imperial Units Remover.txt" }, + { 1738L, 1800L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareAdGuardHome.txt" }, + { 1738L, 1801L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwareAdGuardHome.txt" }, + { 1739L, 1802L, (short)1, "https://warui.intaa.net/adhosts/local_zone.conf.txt" }, + { 1740L, 1803L, (short)1, "https://block.energized.pro/extensions/social/formats/hosts.txt" }, + { 1741L, 1804L, (short)1, "https://block.energized.pro/extensions/porn-lite/formats/hosts.txt" }, + { 1742L, 1805L, (short)1, "https://block.energized.pro/extensions/regional/formats/hosts.txt" }, + { 1743L, 1806L, (short)1, "https://block.energized.pro/spark/formats/domains.txt" }, + { 1743L, 1807L, (short)2, "https://blokada.org/mirror/v5/energized/spark/hosts.txt" }, + { 1744L, 1808L, (short)1, "https://block.energized.pro/bluGo/formats/domains.txt" }, + { 1745L, 1809L, (short)1, "https://block.energized.pro/blu/formats/domains.txt" }, + { 1745L, 1810L, (short)2, "https://blokada.org/mirror/v5/energized/blu/hosts.txt" }, + { 1746L, 1811L, (short)1, "https://block.energized.pro/basic/formats/domains.txt" }, + { 1746L, 1812L, (short)2, "https://blokada.org/mirror/v5/energized/basic/hosts.txt" }, + { 1747L, 1813L, (short)1, "https://block.energized.pro/porn/formats/domains.txt" }, + { 1748L, 1814L, (short)1, "https://block.energized.pro/ultimate/formats/domains.txt" }, + { 1749L, 1815L, (short)1, "https://block.energized.pro/unified/formats/domains.txt" }, + { 1750L, 1816L, (short)1, "https://block.energized.pro/extensions/xtreme/formats/domains.txt" }, + { 1751L, 1817L, (short)1, "https://block.energized.pro/extensions/social/formats/domains.txt" }, + { 1752L, 1818L, (short)1, "https://block.energized.pro/extensions/porn-lite/formats/domains.txt" }, + { 1753L, 1819L, (short)1, "https://block.energized.pro/extensions/regional/formats/domains.txt" }, + { 1753L, 1820L, (short)2, "https://blokada.org/mirror/v5/energized/regional/hosts.txt" }, + { 1754L, 1821L, (short)1, "https://block.energized.pro/spark/formats/filter" }, + { 1755L, 1822L, (short)1, "https://block.energized.pro/bluGo/formats/filter" }, + { 1756L, 1823L, (short)1, "https://block.energized.pro/blu/formats/filter" }, + { 1757L, 1824L, (short)1, "https://block.energized.pro/basic/formats/filter" }, + { 1758L, 1825L, (short)1, "https://block.energized.pro/porn/formats/filter" }, + { 1759L, 1826L, (short)1, "https://block.energized.pro/ultimate/formats/filter" }, + { 1760L, 1827L, (short)1, "https://block.energized.pro/unified/formats/filter" }, + { 1761L, 1828L, (short)1, "https://block.energized.pro/extensions/xtreme/formats/filter" }, + { 1762L, 1829L, (short)1, "https://block.energized.pro/extensions/social/formats/filter" }, + { 1763L, 1830L, (short)1, "https://block.energized.pro/extensions/porn-lite/formats/filter" }, + { 1764L, 1831L, (short)1, "https://block.energized.pro/extensions/regional/formats/filter" }, + { 1765L, 1832L, (short)1, "https://block.energized.pro/spark/formats/dnsmasq.conf" }, + { 1766L, 1833L, (short)1, "https://block.energized.pro/bluGo/formats/dnsmasq.conf" }, + { 1767L, 1834L, (short)1, "https://block.energized.pro/blu/formats/dnsmasq.conf" }, + { 1768L, 1835L, (short)1, "https://block.energized.pro/basic/formats/dnsmasq.conf" }, + { 1769L, 1836L, (short)1, "https://block.energized.pro/porn/formats/dnsmasq.conf" }, + { 1770L, 1837L, (short)1, "https://block.energized.pro/ultimate/formats/dnsmasq.conf" }, + { 1771L, 1838L, (short)1, "https://block.energized.pro/unified/formats/dnsmasq.conf" }, + { 1772L, 1839L, (short)1, "https://block.energized.pro/extensions/xtreme/formats/dnsmasq.conf" }, + { 1773L, 1840L, (short)1, "https://block.energized.pro/extensions/social/formats/dnsmasq.conf" }, + { 1774L, 1841L, (short)1, "https://block.energized.pro/extensions/porn-lite/formats/dnsmasq.conf" }, + { 1775L, 1842L, (short)1, "https://block.energized.pro/extensions/regional/formats/dnsmasq.conf" }, + { 1776L, 1843L, (short)1, "https://block.energized.pro/spark/formats/unbound.conf" }, + { 1777L, 1844L, (short)1, "https://block.energized.pro/bluGo/formats/unbound.conf" }, + { 1778L, 1845L, (short)1, "https://block.energized.pro/blu/formats/unbound.conf" }, + { 1779L, 1846L, (short)1, "https://block.energized.pro/basic/formats/unbound.conf" }, + { 1780L, 1847L, (short)1, "https://block.energized.pro/porn/formats/unbound.conf" }, + { 1781L, 1848L, (short)1, "https://block.energized.pro/ultimate/formats/unbound.conf" }, + { 1782L, 1849L, (short)1, "https://block.energized.pro/unified/formats/unbound.conf" }, + { 1783L, 1850L, (short)1, "https://block.energized.pro/extensions/xtreme/formats/unbound.conf" }, + { 1784L, 1851L, (short)1, "https://block.energized.pro/extensions/social/formats/unbound.conf" }, + { 1785L, 1852L, (short)1, "https://block.energized.pro/extensions/porn-lite/formats/unbound.conf" }, + { 1786L, 1853L, (short)1, "https://block.energized.pro/extensions/regional/formats/unbound.conf" }, + { 1787L, 1854L, (short)1, "https://block.energized.pro/spark/formats/rpz.txt" }, + { 1788L, 1855L, (short)1, "https://block.energized.pro/bluGo/formats/rpz.txt" }, + { 1789L, 1856L, (short)1, "https://block.energized.pro/blu/formats/rpz.txt" }, + { 1790L, 1857L, (short)1, "https://block.energized.pro/basic/formats/rpz.txt" }, + { 1791L, 1858L, (short)1, "https://block.energized.pro/porn/formats/rpz.txt" }, + { 1792L, 1859L, (short)1, "https://block.energized.pro/ultimate/formats/rpz.txt" }, + { 1793L, 1860L, (short)1, "https://block.energized.pro/unified/formats/rpz.txt" }, + { 1794L, 1861L, (short)1, "https://block.energized.pro/extensions/xtreme/formats/rpz.txt" }, + { 1795L, 1862L, (short)1, "https://block.energized.pro/extensions/social/formats/rpz.txt" }, + { 1796L, 1863L, (short)1, "https://block.energized.pro/extensions/porn-lite/formats/rpz.txt" }, + { 1797L, 1864L, (short)1, "https://block.energized.pro/extensions/regional/formats/rpz.txt" }, + { 1798L, 1865L, (short)1, "https://block.energized.pro/extensions/ips/formats/list.txt" }, + { 1799L, 1866L, (short)1, "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/arabic.txt" }, + { 1800L, 1867L, (short)1, "https://cdn.rixcloud.io/Quantumult/Rules/Default.conf" }, + { 1801L, 1868L, (short)1, "https://raw.githubusercontent.com/lhie1/Rules/master/Auto/REJECT.conf" }, + { 1803L, 1870L, (short)1, "https://raw.githubusercontent.com/scomper/surge-list/master/reject.list" }, + { 1806L, 1873L, (short)1, "https://lists.blocklist.de/lists/all.txt" }, + { 1807L, 1874L, (short)1, "https://danger.rulez.sk/projects/bruteforceblocker/blist.php" }, + { 1808L, 1875L, (short)1, "https://rules.emergingthreats.net/blockrules/compromised-ips.txt" }, + { 1809L, 1876L, (short)1, "https://rules.emergingthreats.net/fwrules/emerging-Block-IPs.txt" }, + { 1810L, 1877L, (short)1, "https://blocklist.greensnow.co/greensnow.txt" }, + { 1811L, 1878L, (short)1, "https://www.binarydefense.com/banlist.txt" }, + { 1813L, 1879L, (short)1, "https://cinsscore.com/list/ci-badguys.txt" }, + { 1814L, 1880L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/TabloidRemover.txt" }, + { 1814L, 1881L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/TabloidRemover.txt" }, + { 1815L, 1882L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiPCPriceHiderList.txt" }, + { 1815L, 1883L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiPCPriceHiderList.txt" }, + { 1816L, 1884L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/KADhosts/master/KADhole.txt" }, + { 1817L, 1885L, (short)1, "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-pihole-filters/hostfile_regex.txt" }, + { 1818L, 1886L, (short)1, "https://raw.githubusercontent.com/mmotti/pihole-regex/master/regex.list" }, + { 1819L, 1887L, (short)1, "https://www.github.developerdan.com/hosts/lists/facebook-extended.txt" }, + { 1824L, 1890L, (short)1, "https://myip.ms/files/blacklist/general/latest_blacklist.txt" }, + { 1825L, 1891L, (short)1, "https://iplists.firehol.org/files/hphosts_pha.ipset" }, + { 1827L, 1892L, (short)1, "https://iplists.firehol.org/files/hphosts_fsa.ipset" }, + { 1828L, 1893L, (short)1, "https://iplists.firehol.org/files/hphosts_grm.ipset" }, + { 1829L, 1894L, (short)1, "https://iplists.firehol.org/files/hphosts_exp.ipset" }, + { 1830L, 1895L, (short)1, "https://iplists.firehol.org/files/hphosts_emd.ipset" }, + { 1831L, 1896L, (short)1, "https://iplists.firehol.org/files/hphosts_ats.ipset" }, + { 1832L, 1897L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiPepeList.txt" }, + { 1832L, 1898L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiPepeList.txt" }, + { 1833L, 1899L, (short)1, "https://raw.githubusercontent.com/hawkeye116477/FilterListsDarkMode/master/DarkFilterLists.txt" }, + { 1834L, 1900L, (short)1, "https://raw.githubusercontent.com/caffeinewriter/DontPushMe/master/filterlist.txt" }, + { 1835L, 1901L, (short)1, "https://raw.githubusercontent.com/Nebula-Mechanica/Anti-AutoTranslation-List/master/anti-autotranslation-list.txt" }, + { 1835L, 1902L, (short)2, "https://gitcdn.xyz/repo/Nebula-Mechanica/Anti-AutoTranslation-List/master/anti-autotranslation-list.txt" }, + { 1835L, 1903L, (short)3, "https://rawcdn.githack.com/Nebula-Mechanica/Anti-AutoTranslation-List/master/anti-autotranslation-list.txt" }, + { 1836L, 1904L, (short)1, "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Hosts" }, + { 1838L, 1905L, (short)1, "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Anti/Anti Social" }, + { 1840L, 1907L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersAdGuardHome.txt" }, + { 1840L, 1908L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersAdGuardHome.txt" }, + { 1841L, 1909L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersPiHole.txt" }, + { 1841L, 1910L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersPiHole.txt" }, + { 1842L, 1911L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersSocks5.list" }, + { 1842L, 1912L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersSocks5.list" }, + { 1843L, 1913L, (short)1, "https://raw.githubusercontent.com/secretsnow/Ad-Filters/master/Ad Filters.txt" }, + { 1844L, 1914L, (short)1, "https://raw.githubusercontent.com/some-username-here1/motd-adblock/master/motd-adblock" }, + { 1845L, 1915L, (short)1, "https://raw.githubusercontent.com/T4Tea/ADPMobileFilter/master/ADPMobileFilter.txt" }, + { 1846L, 1916L, (short)1, "https://raw.githubusercontent.com/RandomAdversary/Macedonian-adBlock-Filters/master/Filters" }, + { 1847L, 1917L, (short)1, "https://raw.githubusercontent.com/dorjmi/nothingblock/master/filter.txt" }, + { 1848L, 1918L, (short)1, "https://raw.githubusercontent.com/Crystal-RainSlide/AdditionalFiltersCN/master/CN.txt" }, + { 1849L, 1919L, (short)1, "https://raw.githubusercontent.com/jiayiming/jCleanList/master/jCleanList_all.txt" }, + { 1850L, 1920L, (short)1, "https://n2o.io/projects/quarklist/dist/quarklist.txt" }, + { 1852L, 1921L, (short)1, "https://adblock-thai.github.io/thai-ads-filter/subscription.txt" }, + { 1853L, 1922L, (short)1, "https://adblock-thai.github.io/thai-ads-filter/annoyance.txt" }, + { 1854L, 1923L, (short)1, "https://raw.githubusercontent.com/masterinspire/Master-AdRules/master/Master-AdRules.txt" }, + { 1856L, 1924L, (short)1, "https://raw.githubusercontent.com/lutoma/nocomments/master/abp.txt" }, + { 1864L, 1932L, (short)1, "https://raw.githubusercontent.com/Ayesh/Adblock-Sinhala/master/filters.txt" }, + { 1865L, 1933L, (short)1, "https://raw.githubusercontent.com/zonprox/adblock/master/abpadv.txt" }, + { 1866L, 1934L, (short)1, "https://raw.githubusercontent.com/LanikSJ/ubo-filters/main/filters/combined-filters.txt" }, + { 1867L, 1935L, (short)1, "https://raw.githubusercontent.com/LanikSJ/ubo-filters/main/filters/ubo-filters.txt" }, + { 1868L, 1936L, (short)1, "https://mkb2091.github.io/blockconvert/output/adblock.txt" }, + { 1869L, 1937L, (short)1, "https://mkb2091.github.io/blockconvert/output/hosts.txt" }, + { 1870L, 1938L, (short)1, "https://mkb2091.github.io/blockconvert/output/domains.txt" }, + { 1871L, 1939L, (short)1, "https://mkb2091.github.io/blockconvert/output/ip_blocklist.txt" }, + { 1872L, 1940L, (short)1, "https://mkb2091.github.io/blockconvert/output/domains.rpz" }, + { 1873L, 1941L, (short)1, "https://mkb2091.github.io/blockconvert/output/whitelist_domains.txt" }, + { 1876L, 1942L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersRPZ.txt" }, + { 1876L, 1943L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersRPZ.txt" }, + { 1877L, 1944L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersUnbound.conf" }, + { 1877L, 1945L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersUnbound.conf" }, + { 1878L, 1946L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersForMinerBlock.txt" }, + { 1878L, 1947L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersForMinerBlock.txt" }, + { 1880L, 1951L, (short)1, "https://curben.gitlab.io/malware-filter/urlhaus-filter-domains-online.txt" }, + { 1880L, 1952L, (short)2, "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-domains-online.txt" }, + { 1880L, 1953L, (short)3, "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-domains-online.txt" }, + { 1881L, 1954L, (short)1, "https://raw.githubusercontent.com/angelics/pfbng/master/ads/ads-domain-list.txt" }, + { 1882L, 1955L, (short)1, "https://raw.githubusercontent.com/blocktastic/pihole/master/blocktastic.txt" }, + { 1886L, 1956L, (short)1, "https://raw.githubusercontent.com/cchevy/macedonian-pi-hole-blocklist/master/hosts.txt" }, + { 1887L, 1957L, (short)1, "https://raw.githubusercontent.com/chrisjudk/hosts/master/hosts" }, + { 1888L, 1958L, (short)1, "https://agh.lite.dcod.ml/hosts.php" }, + { 1890L, 1959L, (short)1, "https://raw.githubusercontent.com/deletescape/noads/master/lists/add-switzerland.txt" }, + { 1891L, 1960L, (short)1, "https://raw.githubusercontent.com/deletescape/noads/master/lists/fo-scumware.txt" }, + { 1892L, 1961L, (short)1, "https://lists.noads.online/lists/compilation.txt" }, + { 1893L, 1962L, (short)1, "https://raw.githubusercontent.com/deletescape/noads/master/lists/unbreak.txt" }, + { 1896L, 1965L, (short)1, "https://raw.githubusercontent.com/DRSDavidSoft/additional-hosts/master/domains/blacklist/adservers-and-trackers.txt" }, + { 1897L, 1966L, (short)1, "https://raw.githubusercontent.com/DRSDavidSoft/additional-hosts/master/domains/blacklist/unwanted-iranian.txt" }, + { 1898L, 1967L, (short)1, "https://raw.githubusercontent.com/herrbischoff/trackers/master/trackers.txt" }, + { 1899L, 1968L, (short)1, "https://raw.githubusercontent.com/javabean/dnsmasq-antispy/master/dnsmasq.ghostery_bugs.conf" }, + { 1900L, 1969L, (short)1, "https://raw.githubusercontent.com/javabean/dnsmasq-antispy/master/dnsmasq.zz-extra-servers-manual.conf" }, + { 1901L, 1970L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiCartoonHipsterList.txt" }, + { 1901L, 1971L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiCartoonHipsterList.txt" }, + { 1902L, 1972L, (short)1, "https://raw.githubusercontent.com/meinhimmel/hosts/master/hosts" }, + { 1903L, 1973L, (short)1, "https://raw.githubusercontent.com/mhhakim/pihole-blocklist/master/custom-blocklist.txt" }, + { 1904L, 1974L, (short)1, "https://raw.githubusercontent.com/Phentora/AdguardPersonalList/master/blocklist.txt" }, + { 1906L, 1975L, (short)1, "https://raw.githubusercontent.com/Rhys-H/hosts-list/master/HostsList.txt" }, + { 1907L, 1976L, (short)1, "https://raw.githubusercontent.com/smed79/blacklist/master/hosts.txt" }, + { 1908L, 1977L, (short)1, "https://raw.githubusercontent.com/stamparm/maltrail/master/trails/static/suspicious/pua.txt" }, + { 1909L, 1978L, (short)1, "https://raw.githubusercontent.com/svetlyobg/svet-custom-domains/master/ads-domains" }, + { 1910L, 1979L, (short)1, "https://raw.githubusercontent.com/svetlyobg/svet-custom-domains/master/ads-IPs" }, + { 1911L, 1980L, (short)1, "https://raw.githubusercontent.com/tomzuu/blacklist-named/master/ad.sites.conf" }, + { 1912L, 1981L, (short)1, "https://raw.githubusercontent.com/tomzuu/blacklist-named/master/phishing.sites.conf" }, + { 1913L, 1982L, (short)1, "https://raw.githubusercontent.com/tomzuu/blacklist-named/master/pushing.sites.conf" }, + { 1914L, 1983L, (short)1, "https://raw.githubusercontent.com/UnbendableStraw/samsungnosnooping/master/README.md" }, + { 1915L, 1984L, (short)1, "https://raw.githubusercontent.com/unchartedsky/adguard-kr/master/adguard-kr.txt" }, + { 1916L, 1985L, (short)1, "https://raw.githubusercontent.com/xlimit91/xlimit91-block-list/master/blacklist.txt" }, + { 1917L, 1986L, (short)1, "https://raw.githubusercontent.com/xlimit91/xlimit91-block-list/master/regex.list" }, + { 1918L, 1987L, (short)1, "https://raw.githubusercontent.com/ZYX2019/host-block-list/master/Custom.txt" }, + { 1919L, 1988L, (short)1, "https://raw.githubusercontent.com/zznidar/BAR/master/BAR-list" }, + { 1920L, 1989L, (short)1, "https://raw.githubusercontent.com/zznidar/BAR/master/URLs_full" }, + { 1921L, 1990L, (short)1, "https://raw.githubusercontent.com/infinitytec/blocklists/master/ads-and-trackers.txt" }, + { 1922L, 1991L, (short)1, "https://raw.githubusercontent.com/infinitytec/blocklists/master/scams-and-phishing.txt" }, + { 1926L, 1995L, (short)1, "https://raw.githubusercontent.com/jackrabbit335/UsefulLinuxShellScripts/master/Hosts %26 sourcelist/blacklist.txt" }, + { 1927L, 1996L, (short)1, "https://raw.githubusercontent.com/Th3M3/blocklists/master/malware.list" }, + { 1928L, 1997L, (short)1, "https://raw.githubusercontent.com/Th3M3/blocklists/master/tracking%26ads.list" }, + { 1930L, 2000L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/GameConsoleAdblockList.txt" }, + { 1930L, 2001L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/GameConsoleAdblockList.txt" }, + { 1931L, 2002L, (short)1, "https://www.thedumbterminal.co.uk/files/services/squidblockedsites/blocked.txt" }, + { 1932L, 2003L, (short)1, "https://assets.windscribe.com/custom_blocklists/clickbait.txt" }, + { 1933L, 2004L, (short)1, "https://gitlab.com/dns-firewall/dns/matrix/matrix/raw/master/source/adware/domains.list" }, + { 1934L, 2005L, (short)1, "https://gitlab.com/dns-firewall/dns/matrix/matrix/raw/master/source/tracking/domains.list" }, + { 1937L, 2008L, (short)1, "https://pastebin.com/raw/UP3s7pEB" }, + { 1938L, 2009L, (short)1, "https://raw.githubusercontent.com/YanFung/Ads/master/Mobile" }, + { 1939L, 2010L, (short)1, "https://raw.githubusercontent.com/yhonay/antipopads/master/hosts" }, + { 1940L, 2011L, (short)1, "https://repo.andnixsh.com/adblocker/hosts" }, + { 1941L, 2012L, (short)1, "https://raw.githubusercontent.com/huanz/surge-hosts/master/surge.conf" }, + { 1942L, 2013L, (short)1, "https://www.bentasker.co.uk/adblock/autolist.txt" }, + { 1943L, 2014L, (short)1, "https://www.bentasker.co.uk/adblock/adblock_compiled.txt" }, + { 1944L, 2015L, (short)1, "https://www.bentasker.co.uk/adblock/blockeddomains.txt" }, + { 1945L, 2016L, (short)1, "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/regex.list" }, + { 1946L, 2017L, (short)1, "https://anonymousposter.gitlab.io/ublockorigin-rules/blockrules.txt" }, + { 1948L, 2019L, (short)1, "https://raw.githubusercontent.com/fengyc/URLRedirector/master/tools/rules.json" }, + { 1949L, 2020L, (short)1, "https://raw.githubusercontent.com/fengyc/URLRedirector/master/tools/rules_geekzu.json" }, + { 1950L, 2021L, (short)1, "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=rpz&showintro=1&mimetype=plaintext" }, + { 1951L, 2022L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AdGuardHomeDisallowedIPs.txt" }, + { 1951L, 2023L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AdGuardHomeDisallowedIPs.txt" }, + { 1952L, 2024L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/TwitterPureReadingExperience.txt" }, + { 1952L, 2025L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/TwitterPureReadingExperience.txt" }, + { 1953L, 2026L, (short)1, "https://raw.githubusercontent.com/badmojr/1Hosts/master/complete/adblock.txt" }, + { 1954L, 2027L, (short)1, "https://raw.githubusercontent.com/badmojr/1Hosts/master/mini/adblock.txt" }, + { 1955L, 2028L, (short)1, "https://raw.githubusercontent.com/badmojr/1Hosts/master/Pro/adblock.txt" }, + { 1956L, 2029L, (short)1, "https://raw.githubusercontent.com/durablenapkin/scamblocklist/master/hosts.txt" }, + { 1957L, 2030L, (short)1, "https://raw.githubusercontent.com/Yumire/kiss-filters/master/filters.txt" }, + { 1958L, 2031L, (short)1, "https://gitlab.com/Sorrow-San/9anime-adblock-filters/raw/master/9Anime filter list" }, + { 1959L, 2032L, (short)1, "https://raw.githubusercontent.com/RiiConnect24/DNS-Server/master/dns_zones-hosts.txt" }, + { 1963L, 2036L, (short)1, "https://gitlab.com/Sorrow-San/9anime-adblock-filters/raw/master_with_banners/9Anime filter list" }, + { 1964L, 2037L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAdventureTimeList.txt" }, + { 1964L, 2038L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAdventureTimeList.txt" }, + { 1965L, 2039L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/HaveIBeenPwnedPasteRemover.txt" }, + { 1965L, 2040L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/HaveIBeenPwnedPasteRemover.txt" }, + { 1967L, 2043L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AdRemovalListForUnusualAds.txt" }, + { 1967L, 2044L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AdRemovalListForUnusualAds.txt" }, + { 1968L, 2045L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/AdguardFilters/master/AnnoyancesFilter/sections/remains.txt" }, + { 1969L, 2046L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/AdguardFilters/master/AnnoyancesFilter/sections/push-notifications.txt" }, + { 1970L, 2047L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/AdguardFilters/master/AnnoyancesFilter/sections/mobile-app.txt" }, + { 1971L, 2048L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/AdguardFilters/master/AnnoyancesFilter/sections/antiadblock.txt" }, + { 1972L, 2049L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AdGuard Home Compilation List/AdGuardHomeCompilationListIPs.txt" }, + { 1972L, 2050L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AdGuard Home Compilation List/AdGuardHomeCompilationListIPs.txt" }, + { 1973L, 2051L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/AntiAmazonListForTwitchDomains.txt" }, + { 1973L, 2052L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/AntiAmazonListForTwitchDomains.txt" }, + { 1974L, 2053L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/AntiAmazonListForTwitchHosts.txt" }, + { 1974L, 2054L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/AntiAmazonListForTwitchHosts.txt" }, + { 1975L, 2055L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/AntiF%25D1%2596%25D0%259C%2520ListDomains.txt" }, + { 1975L, 2056L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/AntiF%25D1%2596%25D0%259C%2520ListDomains.txt" }, + { 1976L, 2057L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiHivemindCartoonTrashingList.txt" }, + { 1976L, 2058L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiHivemindCartoonTrashingList.txt" }, + { 1977L, 2059L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/AntiHivemindCartoonTrashingListDomains.txt" }, + { 1977L, 2060L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/AntiHivemindCartoonTrashingListDomains.txt" }, + { 1978L, 2061L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/AntiStevenUniverseListDomains.txt" }, + { 1978L, 2062L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/AntiStevenUniverseListDomains.txt" }, + { 1979L, 2063L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/BrowseWebsitesWithoutLoggingInAGH.txt" }, + { 1979L, 2064L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/BrowseWebsitesWithoutLoggingInAGH.txt" }, + { 1980L, 2065L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/BrowseWebsitesWithoutLoggingInDomains.txt" }, + { 1980L, 2066L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/BrowseWebsitesWithoutLoggingInDomains.txt" }, + { 1981L, 2067L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/WikiaPureBrowsingExperienceDomains.txt" }, + { 1981L, 2068L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/WikiaPureBrowsingExperienceDomains.txt" }, + { 1983L, 2069L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiSubmissiveEroticaList.txt" }, + { 1983L, 2070L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiSubmissiveEroticaList.txt" }, + { 1984L, 2071L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/ImgurPureImageryExperience.txt" }, + { 1984L, 2072L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/ImgurPureImageryExperience.txt" }, + { 1985L, 2073L, (short)1, "https://dns.adguard.com/dns-query" }, + { 1985L, 2074L, (short)2, "tls://dns.adguard.com/" }, + { 1985L, 2075L, (short)3, "176.103.130.130" }, + { 1985L, 2615L, (short)4, "176.103.130.131" }, + { 1985L, 2616L, (short)5, "2a00:5a60::ad1:0ff" }, + { 1985L, 2617L, (short)6, "2a00:5a60::ad2:0ff" }, + { 1986L, 2076L, (short)1, "https://dns-family.adguard.com/dns-query" }, + { 1986L, 2077L, (short)2, "tls://dns-family.adguard.com/" }, + { 1986L, 2078L, (short)3, "176.103.130.132" }, + { 1986L, 2618L, (short)4, "176.103.130.134" }, + { 1986L, 2619L, (short)5, "2a00:5a60::bad1:0ff" }, + { 1986L, 2620L, (short)6, "2a00:5a60::bad2:0ff" }, + { 1987L, 2079L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/SayNoToRacismOnTwitch.txt" }, + { 1987L, 2080L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/SayNoToRacismOnTwitch.txt" }, + { 1988L, 2081L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/MeWeHappyTimeFunClub.txt" }, + { 1988L, 2082L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/MeWeHappyTimeFunClub.txt" }, + { 1989L, 2083L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/PokémonNoGOZone.txt" }, + { 1989L, 2084L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/PokémonNoGOZone.txt" }, + { 1990L, 2085L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/EmptyPaddingRemover.txt" }, + { 1990L, 2086L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/EmptyPaddingRemover.txt" }, + { 1991L, 2087L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/JapaneseTextSoftener.txt" }, + { 1991L, 2088L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/JapaneseTextSoftener.txt" }, + { 1992L, 2089L, (short)1, "https://dsi.ut-capitole.fr/blacklists/download/sect.tar.gz" }, + { 1993L, 2090L, (short)1, "https://dsi.ut-capitole.fr/blacklists/download/astrology.tar.gz" }, + { 1994L, 2091L, (short)1, "https://dsi.ut-capitole.fr/blacklists/download/shortener.tar.gz" }, + { 1995L, 2092L, (short)1, "https://block.energized.pro/assets/mirror/ut1-gambling.txt" }, + { 1996L, 2093L, (short)1, "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Extensions/Anti Obfuscation" }, + { 1998L, 2095L, (short)1, "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Anti/Anti Location Tracking" }, + { 2000L, 2096L, (short)1, "https://someonewhocares.org/hosts/ipv6/hosts" }, + { 2001L, 2097L, (short)1, "https://raw.githubusercontent.com/badmojr/1Hosts/master/complete/dnsmasq.conf" }, + { 2002L, 2098L, (short)1, "https://raw.githubusercontent.com/badmojr/1Hosts/master/mini/dnsmasq.conf" }, + { 2003L, 2099L, (short)1, "https://raw.githubusercontent.com/badmojr/1Hosts/master/Pro/dnsmasq.conf" }, + { 2004L, 2100L, (short)1, "http://www.accs-net.com/hosts/Downloads/hosts127001.zip" }, + { 2005L, 2101L, (short)1, "https://block.energized.pro/assets/mirror/ut1-cryptojacking.txt" }, + { 2006L, 2102L, (short)1, "https://block.energized.pro/assets/mirror/ut1-adult.txt" }, + { 2007L, 2103L, (short)1, "https://block.energized.pro/assets/mirror/ut1-social-networks.txt" }, + { 2008L, 2104L, (short)1, "https://raw.githubusercontent.com/blocklistproject/Lists/master/ads.txt" }, + { 2009L, 2105L, (short)1, "https://raw.githubusercontent.com/blocklistproject/Lists/master/crypto.txt" }, + { 2010L, 2106L, (short)1, "https://raw.githubusercontent.com/blocklistproject/Lists/master/ransomware.txt" }, + { 2011L, 2107L, (short)1, "https://raw.githubusercontent.com/blocklistproject/Lists/master/piracy.txt" }, + { 2012L, 2108L, (short)1, "https://raw.githubusercontent.com/blocklistproject/Lists/master/tracking.txt" }, + { 2013L, 2109L, (short)1, "https://raw.githubusercontent.com/blocklistproject/Lists/master/scam.txt" }, + { 2014L, 2110L, (short)1, "https://raw.githubusercontent.com/blocklistproject/Lists/master/gambling.txt" }, + { 2017L, 2113L, (short)1, "https://raw.githubusercontent.com/blocklistproject/Lists/master/porn.txt" }, + { 2018L, 2114L, (short)1, "https://raw.githubusercontent.com/blocklistproject/Lists/master/redirect.txt" }, + { 2022L, 2115L, (short)1, "http://ipverse.net/ipblocks/data/countries/cn.zone" }, + { 2023L, 2116L, (short)1, "http://ipverse.net/ipblocks/data/countries/ru.zone" }, + { 2024L, 2117L, (short)1, "http://ipverse.net/ipblocks/data/countries/ua.zone" }, + { 2025L, 2118L, (short)1, "http://ipverse.net/ipblocks/data/countries/ro.zone" }, + { 2026L, 2119L, (short)1, "https://hblock.molinero.dev/hosts_domains.txt" }, + { 2027L, 2120L, (short)1, "https://hblock.molinero.dev/hosts_adblock.txt" }, + { 2028L, 2121L, (short)1, "https://raw.githubusercontent.com/blocklistproject/Lists/master/malware.txt" }, + { 2029L, 2122L, (short)1, "http://ipverse.net/ipblocks/data/countries/cn-ipv6.zone" }, + { 2030L, 2123L, (short)1, "http://ipverse.net/ipblocks/data/countries/ru-ipv6.zone" }, + { 2031L, 2124L, (short)1, "http://ipverse.net/ipblocks/data/countries/ua-ipv6.zone" }, + { 2034L, 2127L, (short)1, "https://easylist-downloads.adblockplus.org/fanboy-notifications.txt" }, + { 2035L, 2128L, (short)1, "https://easylist-downloads.adblockplus.org/fanboy-notifications.tpl" }, + { 2036L, 2129L, (short)1, "https://raw.githubusercontent.com/notracking/hosts-blocklists/master/adblock/adblock.txt" }, + { 2038L, 2130L, (short)1, "https://raw.githubusercontent.com/dnswarden/blocklist/master/blacklist-formats/hosts" }, + { 2039L, 2131L, (short)1, "https://raw.githubusercontent.com/dnswarden/blocklist/master/blacklist-formats/hostnames" }, + { 2040L, 2132L, (short)1, "https://raw.githubusercontent.com/dnswarden/blocklist/master/blacklist-formats/rpz" }, + { 2041L, 2133L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersHostsIPv6.txt" }, + { 2041L, 2134L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersHostsIPv6.txt" }, + { 2043L, 2137L, (short)1, "https://raw.githubusercontent.com/privacy-protection-tools/anti-AD/master/anti-ad-easylist.txt" }, + { 2043L, 2138L, (short)2, "https://cdn.jsdelivr.net/gh/privacy-protection-tools/anti-AD@master/anti-ad-easylist.txt" }, + { 2043L, 2139L, (short)3, "https://anti-ad.net/easylist.txt" }, + { 2044L, 2140L, (short)1, "https://raw.githubusercontent.com/privacy-protection-tools/anti-AD/master/anti-ad-domains.txt" }, + { 2044L, 2141L, (short)2, "https://cdn.jsdelivr.net/gh/privacy-protection-tools/anti-AD@master/anti-ad-domains.txt" }, + { 2044L, 2142L, (short)3, "https://anti-ad.net/domains.txt" }, + { 2045L, 2143L, (short)1, "https://raw.githubusercontent.com/privacy-protection-tools/anti-AD/master/adblock-for-dnsmasq.conf" }, + { 2045L, 2144L, (short)2, "https://cdn.jsdelivr.net/gh/privacy-protection-tools/anti-AD@master/adblock-for-dnsmasq.conf" }, + { 2045L, 2145L, (short)3, "https://anti-ad.net/anti-ad-for-dnsmasq.conf" }, + { 2046L, 2146L, (short)1, "https://raw.githubusercontent.com/privacy-protection-tools/anti-AD/master/anti-ad-surge.txt" }, + { 2046L, 2147L, (short)2, "https://cdn.jsdelivr.net/gh/privacy-protection-tools/anti-AD@master/anti-ad-surge.txt" }, + { 2046L, 2148L, (short)3, "https://anti-ad.net/surge.txt" }, + { 2047L, 2149L, (short)1, "https://raw.githubusercontent.com/danielmiessler/SecLists/master/Discovery/Infrastructure/common-router-ips.txt" }, + { 2048L, 2150L, (short)1, "https://raw.githubusercontent.com/danielmiessler/SecLists/master/IOCs/kaspersky-careto-domains.txt" }, + { 2049L, 2151L, (short)1, "https://raw.githubusercontent.com/danielmiessler/SecLists/master/IOCs/kaspersky-careto-C2.txt" }, + { 2050L, 2152L, (short)1, "https://raw.githubusercontent.com/danielmiessler/SecLists/master/Miscellaneous/dns-resolvers.txt" }, + { 2051L, 2153L, (short)1, "https://hostfiles.frogeye.fr/firstparty-trackers.txt" }, + { 2052L, 2154L, (short)1, "https://hostfiles.frogeye.fr/firstparty-trackers-hosts.txt" }, + { 2053L, 2155L, (short)1, "https://hostfiles.frogeye.fr/firstparty-only-trackers.txt" }, + { 2054L, 2156L, (short)1, "https://hostfiles.frogeye.fr/firstparty-only-trackers-hosts.txt" }, + { 2055L, 2157L, (short)1, "https://hostfiles.frogeye.fr/multiparty-only-trackers.txt" }, + { 2056L, 2158L, (short)1, "https://hostfiles.frogeye.fr/multiparty-only-trackers-hosts.txt" }, + { 2057L, 2159L, (short)1, "https://raw.githubusercontent.com/nextdns/cname-cloaking-blocklist/master/domains" }, + { 2058L, 2160L, (short)1, "https://raw.githubusercontent.com/nextdns/piracy-blocklists/master/torrent-websites" }, + { 2059L, 2161L, (short)1, "https://gist.githubusercontent.com/Marfjeh/97f2f049b41b3f09eabcc04004073ae3/raw/58fe3d12c4157b0bda1a2af313809597ea54bb08/torrent-trackers-host" }, + { 2060L, 2162L, (short)1, "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Other Formats/Extra Format 1" }, + { 2061L, 2163L, (short)1, "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Other Formats/Simplified Domains" }, + { 2062L, 2164L, (short)1, "https://raw.githubusercontent.com/deletescape/noads/master/lists/additional-rules.txt" }, + { 2063L, 2165L, (short)1, "https://nixnet.services/hosts.txt" }, + { 2064L, 2166L, (short)1, "https://adblock.any.dns.nixnet.xyz/dns-query" }, + { 2064L, 2167L, (short)2, "tls://198.251.90.89:853/" }, + { 2064L, 2168L, (short)3, "198.251.90.89" }, + { 2065L, 2169L, (short)1, "https://raw.githubusercontent.com/troysjanda/MyBlockLists/master/yahoocomplete.txt" }, + { 2067L, 2170L, (short)1, "https://ads-doh.securedns.eu/dns-query" }, + { 2067L, 2171L, (short)2, "tls://ads-dot.securedns.eu/" }, + { 2067L, 2172L, (short)3, "146.185.167.43:5443" }, + { 2068L, 2173L, (short)1, "https://www.powershellgallery.com/packages/Manage-AdBlocksOnDNSServer/" }, + { 2069L, 2174L, (short)1, "91.239.26.140" }, + { 2070L, 2175L, (short)1, "https://dns.noads.online/dns-query" }, + { 2070L, 2176L, (short)2, "tls://dns.noads.online:853/" }, + { 2070L, 2177L, (short)3, "167.99.241.49" }, + { 2071L, 2178L, (short)1, "46.101.91.123" }, + { 2072L, 2179L, (short)1, "https://sebsauvage.net/hosts/hosts" }, + { 2073L, 2180L, (short)1, "https://sebsauvage.net/hosts/hosts-adguard" }, + { 2074L, 2181L, (short)1, "https://sebsauvage.net/hosts/raw" }, + { 2075L, 2182L, (short)1, "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/SmartTV-AGH.txt" }, + { 2077L, 2184L, (short)1, "https://raw.githubusercontent.com/durablenapkin/scamblocklist/master/adguard.txt" }, + { 2078L, 2185L, (short)1, "https://ads-for-open-source.readthedocs.io/en/latest/_static/lists/readthedocs-ads.txt" }, + { 2079L, 2186L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/adguard/social-plus.txt" }, + { 2080L, 2187L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/adguard/tracking-plus.txt" }, + { 2081L, 2188L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/sabre-filters2.txt" }, + { 2082L, 2189L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/blog-parts.txt" }, + { 2083L, 2190L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/blog-parts-adult.txt" }, + { 2084L, 2191L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/medium_mode/anti-allowlist.txt" }, + { 2085L, 2192L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/medium_mode/dynamic-rules.txt" }, + { 2086L, 2193L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/medium_mode/static-rules.txt" }, + { 2087L, 2194L, (short)1, "https://raw.githubusercontent.com/scafroglia93/blocklists/master/blocklists-main.txt" }, + { 2088L, 2195L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/medium_mode/dynamic-rules-mob.txt" }, + { 2089L, 2196L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/no_gen_cosm/phhider.txt" }, + { 2090L, 2197L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/no_gen_cosm/phhider-mob.txt" }, + { 2091L, 2198L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-filters.txt" }, + { 2092L, 2199L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-paranoid.txt" }, + { 2093L, 2200L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-social.txt" }, + { 2094L, 2201L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-annoyances.txt" }, + { 2096L, 2683L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/blogroll.txt" }, + { 2097L, 2706L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-annoyances-plus.txt" }, + { 2098L, 2707L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/adguard/anti-antiadb.txt" }, + { 2099L, 2203L, (short)1, "185.228.168.9" }, + { 2099L, 2204L, (short)2, "185.228.169.9" }, + { 2099L, 2205L, (short)3, "2a0d:2a00:1::2" }, + { 2100L, 2206L, (short)1, "https://raw.githubusercontent.com/Kees1958/WS3_annual_most_used_survey_blocklist/master/Top500" }, + { 2101L, 2207L, (short)1, "https://raw.githubusercontent.com/DavidTai780/AdGuard-Home-Private-Rules/master/hosts.txt" }, + { 2102L, 2208L, (short)1, "https://raw.githubusercontent.com/loveqqzj/AdGuard/master/Mobile.txt" }, + { 2103L, 2209L, (short)1, "https://raw.githubusercontent.com/crimsonphobia/etc/master/ips" }, + { 2104L, 2210L, (short)1, "https://raw.githubusercontent.com/banbendalao/ADgk/master/ADgk.txt" }, + { 2104L, 2211L, (short)2, "https://cdn.jsdelivr.net/gh/banbendalao/ADgk@latest/ADgk.txt" }, + { 2104L, 2212L, (short)3, "https://banbendalao.coding.net/p/adgk/d/ADgk/git/raw/master/ADgk.txt" }, + { 2105L, 2213L, (short)1, "https://raw.githubusercontent.com/banbendalao/ADgk/master/kill-baidu-ad.txt" }, + { 2105L, 2214L, (short)2, "https://cdn.jsdelivr.net/gh/banbendalao/ADgk@latest/kill-baidu-ad.txt" }, + { 2105L, 2215L, (short)3, "https://banbendalao.coding.net/p/adgk/d/ADgk/git/raw/master/kill-baidu-ad.txt" }, + { 2106L, 2216L, (short)1, "https://dns.adgk.net:4433/dns-query" }, + { 2106L, 2217L, (short)2, "tls://dns.adgk.net/" }, + { 2106L, 2218L, (short)3, "47.98.48.196" }, + { 2107L, 2219L, (short)1, "45.7.228.197" }, + { 2108L, 2220L, (short)1, "198.91.86.63" }, + { 2109L, 2221L, (short)1, "https://gitee.com/halflife/list/raw/master/ad.txt" }, + { 2109L, 2222L, (short)2, "https://raw.githubusercontent.com/o0HalfLife0o/list/master/ad.txt" }, + { 2110L, 2223L, (short)1, "https://gitee.com/anye1998/Adguard-List-of-personal-rules/raw/master/List-of-personal-rules.txt" }, + { 2111L, 2224L, (short)1, "https://raw.githubusercontent.com/cjx82630/cjxlist/master/cjx-ublock.txt" }, + { 2111L, 2225L, (short)2, "https://gitee.com/cjx82630/cjxlist/raw/master/cjx-ublock.txt" }, + { 2112L, 2226L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/GDPR 451 List.txt" }, + { 2112L, 2227L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/GDPR 451 List.txt" }, + { 2113L, 2228L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/TorRedirectorList-URLRedirector.json" }, + { 2113L, 2229L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/TorRedirectorList-URLRedirector.json" }, + { 2114L, 2230L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/MediaPlayerGradientRemover.txt" }, + { 2114L, 2231L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/MediaPlayerGradientRemover.txt" }, + { 2115L, 2232L, (short)1, "https://easylist-downloads.adblockplus.org/indianlist+easylist.txt" }, + { 2117L, 2233L, (short)1, "https://easylist-downloads.adblockplus.org/indianlist+easylist.tpl" }, + { 2118L, 2234L, (short)1, "https://easylist-downloads.adblockplus.org/koreanlist+easylist.txt" }, + { 2119L, 2235L, (short)1, "https://easylist-downloads.adblockplus.org/koreanlist+easylist.tpl" }, + { 2120L, 2236L, (short)1, "https://easylist-downloads.adblockplus.org/easylistportuguese+easylist.txt" }, + { 2121L, 2237L, (short)1, "https://easylist-downloads.adblockplus.org/easylistportuguese+easylist.tpl" }, + { 2122L, 2238L, (short)1, "https://easylist-downloads.adblockplus.org/abpvn+easylist.txt" }, + { 2123L, 2239L, (short)1, "https://easylist-downloads.adblockplus.org/abpvn+easylist.tpl" }, + { 2124L, 2240L, (short)1, "https://easylist-downloads.adblockplus.org/abpindo+easylist.tpl" }, + { 2125L, 2241L, (short)1, "https://easylist-downloads.adblockplus.org/abp-filters-anti-cv.tpl" }, + { 2126L, 2242L, (short)1, "https://easylist-downloads.adblockplus.org/bitblock.tpl" }, + { 2127L, 2243L, (short)1, "https://easylist-downloads.adblockplus.org/bitblockext.txt" }, + { 2128L, 2244L, (short)1, "https://easylist-downloads.adblockplus.org/bitblockext.tpl" }, + { 2129L, 2245L, (short)1, "https://easylist-downloads.adblockplus.org/antinuha.txt" }, + { 2130L, 2246L, (short)1, "https://easylist-downloads.adblockplus.org/antinuha.tpl" }, + { 2131L, 2247L, (short)1, "https://easylist-downloads.adblockplus.org/cntblock.tpl" }, + { 2132L, 2248L, (short)1, "https://raw.githubusercontent.com/hdd1013/AdBlockListSubKr/master/filter.txt" }, + { 2133L, 2249L, (short)1, "https://raw.githubusercontent.com/dagoll/filters-list/master/dagoll-filters-list.txt" }, + { 2134L, 2250L, (short)1, "https://raw.githubusercontent.com/TheCardinalSystem/Cruncyroll-Filter-List/master/english.txt" }, + { 2135L, 2251L, (short)1, "https://raw.githubusercontent.com/radokristof/HunFakeNewsAdblockList/master/hosts" }, + { 2136L, 2252L, (short)1, "https://raw.githubusercontent.com/dagoll/filters-list/master/dynamic-filtering-rules.txt" }, + { 2137L, 2253L, (short)1, "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/AmazonFireTV.txt" }, + { 2138L, 2254L, (short)1, "https://raw.githubusercontent.com/DariusIurca/RFNBL-Romanian-Fake-News-Block-List/master/RFNBL.txt" }, + { 2139L, 2255L, (short)1, "https://raw.githubusercontent.com/DariusIurca/ROADBLK-EXTRA/master/ROADBLK-EXTRA.txt" }, + { 2140L, 2256L, (short)1, "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/dnscrypt/spy.txt" }, + { 2141L, 2257L, (short)1, "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/dnscrypt/update.txt" }, + { 2142L, 2258L, (short)1, "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/dnscrypt/extra.txt" }, + { 2143L, 2259L, (short)1, "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/openwrt/spy/dnsmasq.conf" }, + { 2144L, 2260L, (short)1, "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/openwrt/update/dnsmasq.conf" }, + { 2145L, 2261L, (short)1, "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/openwrt/extra/dnsmasq.conf" }, + { 2146L, 2262L, (short)1, "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/firewall/spy.txt" }, + { 2147L, 2263L, (short)1, "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/firewall/update.txt" }, + { 2148L, 2264L, (short)1, "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/firewall/extra.txt" }, + { 2149L, 2265L, (short)1, "https://easylist-downloads.adblockplus.org/easylistpolish+easylist.txt" }, + { 2150L, 2266L, (short)1, "https://easylist-downloads.adblockplus.org/easylistpolish+easylist.tpl" }, + { 2151L, 2267L, (short)1, "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/newhosts-final-IPv6.hosts" }, + { 2152L, 2268L, (short)1, "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/newhosts-final-Dual.hosts" }, + { 2153L, 2269L, (short)1, "https://raw.githubusercontent.com/tomzuu/blacklist-named/master/malwaredomainlist.conf" }, + { 2154L, 2270L, (short)1, "https://raw.githubusercontent.com/tomzuu/blacklist-named/master/cedia_justdomains.conf" }, + { 2155L, 2271L, (short)1, "https://abp.oisd.nl/" }, + { 2155L, 2272L, (short)2, "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/abp.txt" }, + { 2155L, 2273L, (short)3, "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/abp.txt" }, + { 2156L, 2274L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Special security lists/IDNHomographProtectionTotal.txt" }, + { 2156L, 2275L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Special security lists/IDNHomographProtectionTotal.txt" }, + { 2157L, 2276L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Special security lists/IDNHomographProtection-USLatinTLDsOnly.txt" }, + { 2157L, 2277L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Special security lists/IDNHomographProtection-USLatinTLDsOnly.txt" }, + { 2158L, 2278L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/EkstraBladetEroticContentRemover.txt" }, + { 2158L, 2279L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/EkstraBladetEroticContentRemover.txt" }, + { 2159L, 2280L, (short)1, "https://orca.pet/notonmyshift/domains.txt" }, + { 2160L, 2281L, (short)1, "https://bl.isx.fr/raw" }, + { 2161L, 2282L, (short)1, "https://raw.githubusercontent.com/hg1978/AdGuard-Home-Whitelist/master/whitelist.txt" }, + { 2162L, 2283L, (short)1, "https://raw.githubusercontent.com/MassMove/AttackVectors/master/LocalJournals/fake-local-journals-list.txt" }, + { 2163L, 2284L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/UndertaleRemoverForSoundCloud.txt" }, + { 2163L, 2285L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/UndertaleRemoverForSoundCloud.txt" }, + { 2165L, 2289L, (short)1, "https://curben.gitlab.io/malware-filter/urlhaus-filter-dnsmasq-online.conf" }, + { 2165L, 2290L, (short)2, "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-dnsmasq-online.conf" }, + { 2165L, 2291L, (short)3, "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-dnsmasq-online.conf" }, + { 2167L, 2295L, (short)1, "https://curben.gitlab.io/malware-filter/urlhaus-filter-hosts-online.txt" }, + { 2167L, 2296L, (short)2, "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-hosts-online.txt" }, + { 2167L, 2297L, (short)3, "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-hosts-online.txt" }, + { 2169L, 2301L, (short)1, "https://curben.gitlab.io/malware-filter/urlhaus-filter-bind-online.conf" }, + { 2169L, 2302L, (short)2, "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-bind-online.conf" }, + { 2169L, 2303L, (short)3, "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-bind-online.conf" }, + { 2171L, 2307L, (short)1, "https://curben.gitlab.io/malware-filter/urlhaus-filter-unbound-online.conf" }, + { 2171L, 2308L, (short)2, "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-unbound-online.conf" }, + { 2171L, 2309L, (short)3, "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-unbound-online.conf" }, + { 2172L, 2310L, (short)1, "https://v.firebog.net/hosts/static/HPHosts/Hostsemd.txt" }, + { 2173L, 2311L, (short)1, "https://v.firebog.net/hosts/static/HPHosts/Hostsexp.txt" }, + { 2174L, 2312L, (short)1, "https://v.firebog.net/hosts/static/HPHosts/Hostsgrm.txt" }, + { 2175L, 2313L, (short)1, "https://v.firebog.net/hosts/static/HPHosts/Hostsfsa.txt" }, + { 2176L, 2314L, (short)1, "https://v.firebog.net/hosts/static/HPHosts/Hostsmmt.txt" }, + { 2177L, 2315L, (short)1, "https://v.firebog.net/hosts/static/HPHosts/Hostspha.txt" }, + { 2179L, 2318L, (short)1, "https://blocklist.palemoon.org/ABL/lunar-blocklist.txt" }, + { 2180L, 2319L, (short)1, "https://mirai.security.gives/data/ip_list.txt" }, + { 2181L, 2320L, (short)1, "https://raw.githubusercontent.com/stamparm/maltrail/master/trails/static/suspicious/crypto_mining.txt" }, + { 2182L, 2321L, (short)1, "https://raw.githubusercontent.com/stamparm/maltrail/master/trails/static/suspicious/dynamic_domain.txt" }, + { 2183L, 2322L, (short)1, "https://raw.githubusercontent.com/stamparm/maltrail/master/trails/static/suspicious/rogue_dns.txt" }, + { 2184L, 2323L, (short)1, "https://raw.githubusercontent.com/stamparm/maltrail/master/trails/static/malicious/magentocore.txt" }, + { 2185L, 2324L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/1_optimized.txt" }, + { 2186L, 2325L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/4_optimized.txt" }, + { 2187L, 2326L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/113_optimized.txt" }, + { 2188L, 2327L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/104_optimized.txt" }, + { 2189L, 2328L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/115_optimized.txt" }, + { 2190L, 2329L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/118_optimized.txt" }, + { 2191L, 2330L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/14_optimized.txt" }, + { 2192L, 2331L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/122_optimized.txt" }, + { 2193L, 2332L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/123_optimized.txt" }, + { 2194L, 2333L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/213_optimized.txt" }, + { 2195L, 2334L, (short)1, "https://raw.githubusercontent.com/bambenek/block-doh/master/doh-hosts.txt" }, + { 2196L, 2335L, (short)1, "https://raw.githubusercontent.com/bambenek/block-doh/master/doh-ipv4.txt" }, + { 2197L, 2336L, (short)1, "https://raw.githubusercontent.com/bambenek/block-doh/master/doh-ipv6.txt" }, + { 2198L, 2337L, (short)1, "https://azorult-tracker.net/api/list/domain?format=plain" }, + { 2199L, 2338L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/10.txt" }, + { 2200L, 2339L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/13.txt" }, + { 2201L, 2340L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/3.txt" }, + { 2202L, 2341L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/9.txt" }, + { 2203L, 2342L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/4.txt" }, + { 2204L, 2343L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/1.txt" }, + { 2205L, 2344L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/11.txt" }, + { 2206L, 2345L, (short)1, "https://filters.adtidy.org/ios/filters/11.txt" }, + { 2207L, 2346L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/7.txt" }, + { 2208L, 2347L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/6.txt" }, + { 2209L, 2348L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/5.txt" }, + { 2210L, 2349L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/2.txt" }, + { 2211L, 2350L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/8.txt" }, + { 2212L, 2351L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/14.txt" }, + { 2213L, 2352L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/16.txt" }, + { 2214L, 2353L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/2_without_easylist.txt" }, + { 2215L, 2354L, (short)1, "https://raw.githubusercontent.com/stamparm/aux/master/maltrail-malware-domains.txt" }, + { 2216L, 2355L, (short)1, "https://infosharing.cybersaiyan.it/feeds/CS-PIHOLE" }, + { 2217L, 2356L, (short)1, "https://raw.githubusercontent.com/stamparm/ipsum/master/levels/4.txt" }, + { 2218L, 2357L, (short)1, "https://raw.githubusercontent.com/stamparm/ipsum/master/levels/5.txt" }, + { 2219L, 2358L, (short)1, "https://raw.githubusercontent.com/stamparm/ipsum/master/levels/6.txt" }, + { 2220L, 2359L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAnthroCombatWaifuList.txt" }, + { 2220L, 2360L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAnthroCombatWaifuList.txt" }, + { 2230L, 2370L, (short)1, "https://easylist-downloads.adblockplus.org/abpindo-minified.txt" }, + { 2231L, 2371L, (short)1, "https://easylist-downloads.adblockplus.org/abpvn-minified.txt" }, + { 2232L, 2372L, (short)1, "https://easylist-downloads.adblockplus.org/ruadlist-minified.txt" }, + { 2233L, 2373L, (short)1, "https://easylist-downloads.adblockplus.org/bulgarian_list-minified.txt" }, + { 2234L, 2374L, (short)1, "https://easylist-downloads.adblockplus.org/easylist-minified.txt" }, + { 2235L, 2375L, (short)1, "https://easylist-downloads.adblockplus.org/easylistchina-minified.txt" }, + { 2236L, 2376L, (short)1, "https://hg.adblockplus.org/customfilterlists/raw-file/default/easylistczechandslovak-minified.txt" }, + { 2237L, 2377L, (short)1, "https://easylist-downloads.adblockplus.org/easylistdutch-minified.txt" }, + { 2238L, 2378L, (short)1, "https://easylist-downloads.adblockplus.org/easylistgermany-minified.txt" }, + { 2239L, 2379L, (short)1, "https://easylist-downloads.adblockplus.org/easylistitaly-minified.txt" }, + { 2240L, 2380L, (short)1, "https://easylist-downloads.adblockplus.org/easylistlithuania-minified.txt" }, + { 2241L, 2381L, (short)1, "https://easylist-downloads.adblockplus.org/easylistpolish-minified.txt" }, + { 2242L, 2382L, (short)1, "https://easylist-downloads.adblockplus.org/easylistportuguese-minified.txt" }, + { 2243L, 2383L, (short)1, "https://easylist-downloads.adblockplus.org/easylistspanish-minified.txt" }, + { 2244L, 2384L, (short)1, "https://easylist-downloads.adblockplus.org/easyprivacy-minified.txt" }, + { 2245L, 2385L, (short)1, "https://easylist-downloads.adblockplus.org/fanboy-social-minified.txt" }, + { 2246L, 2386L, (short)1, "https://easylist-downloads.adblockplus.org/indianlist-minified.txt" }, + { 2247L, 2387L, (short)1, "https://easylist-downloads.adblockplus.org/israellist-minified.txt" }, + { 2248L, 2388L, (short)1, "https://easylist-downloads.adblockplus.org/latvianlist-minified.txt" }, + { 2250L, 2390L, (short)1, "https://easylist-downloads.adblockplus.org/liste_fr-minified.txt" }, + { 2251L, 2391L, (short)1, "https://easylist-downloads.adblockplus.org/rolist-minified.txt" }, + { 2252L, 2392L, (short)1, "https://easylist-downloads.adblockplus.org/easylistchina+easylistchina_compliance+easylist.txt" }, + { 2253L, 2393L, (short)1, "https://easylist-downloads.adblockplus.org/abpindo-minified.tpl" }, + { 2254L, 2394L, (short)1, "https://easylist-downloads.adblockplus.org/abpvn-minified.tpl" }, + { 2255L, 2395L, (short)1, "https://easylist-downloads.adblockplus.org/ruadlist-minified.tpl" }, + { 2256L, 2396L, (short)1, "https://easylist-downloads.adblockplus.org/bulgarian_list-minified.tpl" }, + { 2257L, 2397L, (short)1, "https://easylist-downloads.adblockplus.org/easylist-minified.tpl" }, + { 2258L, 2398L, (short)1, "https://easylist-downloads.adblockplus.org/easylistchina-minified.tpl" }, + { 2260L, 2400L, (short)1, "https://easylist-downloads.adblockplus.org/easylistdutch-minified.tpl" }, + { 2261L, 2401L, (short)1, "https://easylist-downloads.adblockplus.org/easylistgermany-minified.tpl" }, + { 2262L, 2402L, (short)1, "https://easylist-downloads.adblockplus.org/easylistitaly-minified.tpl" }, + { 2263L, 2403L, (short)1, "https://easylist-downloads.adblockplus.org/easylistlithuania-minified.tpl" }, + { 2264L, 2404L, (short)1, "https://easylist-downloads.adblockplus.org/easylistpolish-minified.tpl" }, + { 2265L, 2405L, (short)1, "https://easylist-downloads.adblockplus.org/easylistportuguese-minified.tpl" }, + { 2266L, 2406L, (short)1, "https://easylist-downloads.adblockplus.org/easylistspanish-minified.tpl" }, + { 2267L, 2407L, (short)1, "https://easylist-downloads.adblockplus.org/easyprivacy-minified.tpl" }, + { 2268L, 2408L, (short)1, "https://easylist-downloads.adblockplus.org/fanboy-social-minified.tpl" }, + { 2269L, 2409L, (short)1, "https://easylist-downloads.adblockplus.org/indianlist-minified.tpl" } }); migrationBuilder.InsertData( table: "filter_list_view_urls", - columns: new[] { "id", "filter_list_id", "primariness", "url" }, + columns: new[] { "filter_list_id", "id", "primariness", "url" }, values: new object[,] { - { 2423L, 2281L, (short)1, "https://badmojr.github.io/1Hosts/Pro/wildcards.txt" }, - { 2424L, 2281L, (short)2, "https://raw.githubusercontent.com/badmojr/1Hosts/master/Pro/wildcards.txt" }, - { 2426L, 2283L, (short)1, "https://raw.githubusercontent.com/jerryn70/GoodbyeAds/master/Formats/GoodbyeAds-AdBlock-Filter.txt" }, - { 2427L, 2284L, (short)1, "https://raw.githubusercontent.com/jerryn70/GoodbyeAds/master/Hosts/GoodbyeAds-Ultra.txt" }, - { 2428L, 2285L, (short)1, "https://raw.githubusercontent.com/jerryn70/GoodbyeAds/master/Formats/GoodbyeAds-Ultra-AdBlock-Filter.txt" }, - { 2429L, 2286L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersABP-Inclusion.txt" }, - { 2430L, 2286L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersABP-Inclusion.txt" }, - { 2431L, 2287L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiRacismList.txt" }, - { 2432L, 2287L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiRacismList.txt" }, - { 2433L, 2288L, (short)1, "https://raw.githubusercontent.com/gwarser/filter-lists/master/lan-block.txt" }, - { 2434L, 2289L, (short)1, "https://raw.githubusercontent.com/realodix/AdBlockID-Adult/master/AdBlockID_Adult.txt" }, - { 2435L, 2290L, (short)1, "https://raw.githubusercontent.com/llacb47/miscfilters/master/antipaywall.txt" }, - { 2436L, 2291L, (short)1, "https://raw.githubusercontent.com/llacb47/mischosts/master/blacklist" }, - { 2437L, 2292L, (short)1, "https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/master/accelerated-domains.china.conf" }, - { 2438L, 2293L, (short)1, "https://gitlab.com/intr0/zuckerblock/-/raw/master/uBlockOrigin-noMoreGiphy.txt" }, - { 2439L, 2294L, (short)1, "https://gitlab.com/intr0/zuckerblock/-/raw/master/AdGuard-noMoreGiphy.txt" }, - { 2440L, 2295L, (short)1, "https://raw.githubusercontent.com/hl2guide/DNS-Sinkhole-Lists-A2/master/typosquatting_blocklist.txt" }, - { 2442L, 2297L, (short)1, "https://raw.githubusercontent.com/BlackJack8/iOSAdblockList/master/Hosts.txt" }, - { 2443L, 2298L, (short)1, "https://raw.githubusercontent.com/PebbleOG/pihole-regex/master/regex.list" }, - { 2444L, 2299L, (short)1, "https://raw.githubusercontent.com/anthony-wang/PiHoleBlocklist/master/regex.list" }, - { 2445L, 2300L, (short)1, "https://raw.githubusercontent.com/anthony-wang/PiHoleBlocklist/master/hosts1.txt" }, - { 2446L, 2301L, (short)1, "https://raw.githubusercontent.com/revolveruk30/pihole_regex/master/regex.list" }, - { 2447L, 2302L, (short)1, "https://raw.githubusercontent.com/d43m0nhLInt3r/socialblocklists/master/Skype/skypeblocklist.txt" }, - { 2448L, 2302L, (short)2, "https://raw.githubusercontent.com/evpne/socialblocklists/master/Skype/skypeblocklist.txt" }, - { 2449L, 2303L, (short)1, "https://raw.githubusercontent.com/stamparm/blackbook/master/blackbook.txt" }, - { 2450L, 2304L, (short)1, "https://blocklist.cyberthreatcoalition.org/vetted/domain.txt" }, - { 2451L, 2305L, (short)1, "https://raw.githubusercontent.com/sophoslabs/covid-iocs/master/malicious_domains.txt" }, - { 2452L, 2306L, (short)1, "https://raw.githubusercontent.com/sophoslabs/covid-iocs/master/malware_domains.txt" }, - { 2453L, 2307L, (short)1, "https://managedsentinel.com/downloads/covid19_domains.txt" }, - { 2454L, 2308L, (short)1, "https://managedsentinel.com/downloads/covid19_ipaddresses.txt" }, - { 2455L, 2309L, (short)1, "https://rescure.fruxlabs.com/rescure_domain_blacklist.txt" }, - { 2456L, 2310L, (short)1, "https://rescure.fruxlabs.com/rescure_blacklist.txt" }, - { 2457L, 2311L, (short)1, "https://rescure.fruxlabs.com/covid.txt" }, - { 2458L, 2311L, (short)2, "https://kriskintel.com/feeds/ktip_covid_domains.txt" }, - { 2460L, 2313L, (short)1, "https://kriskintel.com/feeds/ktip_malicious_domains.txt" }, - { 2461L, 2314L, (short)1, "https://kriskintel.com/feeds/ktip_malicious_Ips.txt" }, - { 2462L, 2315L, (short)1, "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/NoFormatting/optimized-win.hosts" }, - { 2463L, 2316L, (short)1, "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/NoFormatting/optimized-win-Dual.hosts" }, - { 2464L, 2317L, (short)1, "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/NoFormatting/combined-flat.cidr" }, - { 2465L, 2318L, (short)1, "https://managedsentinel.com/downloads/covid19_url.txt" }, - { 2466L, 2319L, (short)1, "https://ftpihole.s3.eu-west-2.amazonaws.com/blocklists/smartphone-ads-tracking.txt" }, - { 2467L, 2319L, (short)2, "https://raw.githubusercontent.com/ftpmorph/ftpihole/master/blocklists/smartphone-ads-tracking.txt" }, - { 2468L, 2320L, (short)1, "https://ftpihole.s3.eu-west-2.amazonaws.com/blocklists/xiaomi-ads-tracking.txt" }, - { 2469L, 2320L, (short)2, "https://raw.githubusercontent.com/ftpmorph/ftpihole/master/blocklists/xiaomi-ads-tracking.txt" }, - { 2470L, 2321L, (short)1, "https://filters.adtidy.org/extension/chromium/filters/224.txt" }, - { 2471L, 2322L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/224.txt" }, - { 2472L, 2323L, (short)1, "https://curben.gitlab.io/malware-filter/phishing-filter.txt" }, - { 2473L, 2323L, (short)2, "https://cdn.statically.io/gl/curben/phishing-filter/master/dist/phishing-filter.txt" }, - { 2474L, 2323L, (short)3, "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter.txt" }, - { 2475L, 2324L, (short)1, "https://curben.gitlab.io/malware-filter/phishing-filter-domains.txt" }, - { 2476L, 2324L, (short)2, "https://cdn.statically.io/gl/curben/phishing-filter/master/phishing-filter-domains.txt" }, - { 2477L, 2324L, (short)3, "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter-domains.txt" }, - { 2478L, 2325L, (short)1, "https://curben.gitlab.io/malware-filter/phishing-filter-dnsmasq.conf" }, - { 2479L, 2325L, (short)2, "https://cdn.statically.io/gl/curben/phishing-filter/master/dist/phishing-filter-dnsmasq.conf" }, - { 2480L, 2325L, (short)3, "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter-dnsmasq.conf" }, - { 2481L, 2326L, (short)1, "https://curben.gitlab.io/malware-filter/phishing-filter-hosts.txt" }, - { 2482L, 2326L, (short)2, "https://cdn.statically.io/gl/curben/phishing-filter/master/dist/phishing-filter-hosts.txt" }, - { 2483L, 2326L, (short)3, "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter-hosts.txt" }, - { 2484L, 2327L, (short)1, "https://curben.gitlab.io/malware-filter/phishing-filter-bind.conf" }, - { 2485L, 2327L, (short)2, "https://cdn.statically.io/gl/curben/phishing-filter/master/dist/phishing-filter-bind.conf" }, - { 2486L, 2327L, (short)3, "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter-bind.conf" }, - { 2487L, 2328L, (short)1, "https://curben.gitlab.io/malware-filter/phishing-filter-unbound.conf" }, - { 2488L, 2328L, (short)2, "https://cdn.statically.io/gl/curben/phishing-filter/master/dist/phishing-filter-unbound.conf" }, - { 2489L, 2328L, (short)3, "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter-unbound.conf" }, - { 2490L, 2329L, (short)1, "https://raw.githubusercontent.com/infinitytec/blocklists/master/adfilters.txt" }, - { 2491L, 2330L, (short)1, "https://github.com/infinitytec/blocklists/raw/master/annoyances.txt" }, - { 2492L, 2331L, (short)1, "https://github.com/infinitytec/blocklists/raw/master/medicalpseudoscience.txt" }, - { 2493L, 2332L, (short)1, "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/Anifltrs.txt" }, - { 2494L, 2333L, (short)1, "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/MAL-Sync UI.txt" }, - { 2495L, 2334L, (short)1, "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/Anifiltrs Main/Anifiltrs extra-main.txt" }, - { 2496L, 2335L, (short)1, "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/Anifiltrs Main/Anifiltrs main.txt" }, - { 2497L, 2336L, (short)1, "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/Anifiltrs — skeletonise.txt" }, - { 2498L, 2337L, (short)1, "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/Anifiltrs — skeletonise extra.txt" }, - { 2499L, 2338L, (short)1, "https://raw.githubusercontent.com/L33Tech/uLists/master/Lists/L33TAIO.uBl" }, - { 2500L, 2339L, (short)1, "https://raw.githubusercontent.com/L33Tech/uLists/master/Forks/StopModReposts.uBl" }, - { 2501L, 2340L, (short)1, "https://raw.githubusercontent.com/privacy-protection-tools/anti-AD/master/anti-ad-smartdns.conf" }, - { 2502L, 2340L, (short)2, "https://cdn.jsdelivr.net/gh/privacy-protection-tools/anti-AD@master/anti-ad-smartdns.conf" }, - { 2503L, 2340L, (short)3, "https://anti-ad.net/anti-ad-for-smartdns.conf" }, - { 2504L, 2341L, (short)1, "66.66.23.98" }, - { 2505L, 2342L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/AdGuardSDNSFilter/master/Filters/rules.txt" }, - { 2506L, 2343L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/AdGuardSDNSFilter/master/Filters/exceptions.txt" }, - { 2507L, 2344L, (short)1, "https://www.eff.org/files/effdntlist.txt" }, - { 2508L, 2345L, (short)1, "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/filter" }, - { 2509L, 2346L, (short)1, "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/domains.txt" }, - { 2510L, 2347L, (short)1, "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/dnsmasq.conf" }, - { 2511L, 2348L, (short)1, "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/dnsmasq-ipv6.conf" }, - { 2512L, 2349L, (short)1, "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/unbound.conf" }, - { 2513L, 2350L, (short)1, "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/rpz.txt" }, - { 2514L, 2351L, (short)1, "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/pdnsf.txt" }, - { 2515L, 2352L, (short)1, "https://www.smartadblock.co.uk/filters/sabfilter.txt" }, - { 2516L, 2353L, (short)1, "https://raw.githubusercontent.com/jdlingyu/ad-wars/master/sha_ad_hosts" }, - { 2517L, 2354L, (short)1, "https://raw.githubusercontent.com/Ultimate-Hosts-Blacklist/whitelist/master/domains.list" }, - { 2518L, 2355L, (short)1, "https://raw.githubusercontent.com/notracking/hosts-blocklists-scripts/master/hostnames.whitelist.txt" }, - { 2519L, 2356L, (short)1, "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdBlock" }, - { 2520L, 2357L, (short)1, "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdBlockLite" }, - { 2521L, 2358L, (short)1, "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdList" }, - { 2522L, 2359L, (short)1, "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdListLite" }, - { 2523L, 2360L, (short)1, "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdBlock-dnsmasq" }, - { 2524L, 2361L, (short)1, "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdBlockLite-dnsmasq" }, - { 2525L, 2362L, (short)1, "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdAllowlist" }, - { 2526L, 2363L, (short)1, "https://raw.githubusercontent.com/examplecode/ad-rules-for-xbrowser/master/core-rule-cn.txt" }, - { 2527L, 2364L, (short)1, "https://raw.githubusercontent.com/ilpl/ad-hosts/master/hosts" }, - { 2529L, 2366L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/FalukorvList.txt" }, - { 2530L, 2366L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/FalukorvList.txt" }, - { 2531L, 2367L, (short)1, "https://blokada.org/blocklists/ddgtrackerradar/standard/hosts.txt" }, - { 2532L, 2368L, (short)1, "https://raw.githubusercontent.com/Loyalsoldier/v2ray-rules-dat/release/reject-list.txt" }, - { 2533L, 2369L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiKpopSpammersTwitter.txt" }, - { 2534L, 2369L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiKpopSpammersTwitter.txt" }, - { 2535L, 2370L, (short)1, "https://raw.githubusercontent.com/Goooler/1024_hosts/master/hosts" }, - { 2536L, 2371L, (short)1, "https://raw.githubusercontent.com/adbyby/xwhyc-rules/master/lazy.txt" }, - { 2537L, 2372L, (short)1, "https://raw.githubusercontent.com/privacy-protection-tools/dead-horse/master/anti-ad-white-list.txt" }, - { 2538L, 2373L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAdoptablesList.txt" }, - { 2539L, 2373L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAdoptablesList.txt" }, - { 2540L, 2374L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianCashbackAssistantReborn.txt" }, - { 2541L, 2374L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianCashbackAssistantReborn.txt" }, - { 2542L, 2375L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiNonNewsList.txt" }, - { 2543L, 2375L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiNonNewsList.txt" }, - { 2544L, 2376L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiBadCapitalismList.txt" }, - { 2545L, 2376L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiBadCapitalismList.txt" }, - { 2546L, 2377L, (short)1, "https://easylist-downloads.adblockplus.org/dandelion_sprouts_nordic_filters+easylist.txt" }, - { 2547L, 2378L, (short)1, "https://easylist-downloads.adblockplus.org/dandelion_sprouts_nordic_filters+easylist.tpl" }, - { 2548L, 2379L, (short)1, "https://doh1.blahdns.com/dns-query" }, - { 2549L, 2379L, (short)2, "tls://95.216.212.177:853/" }, - { 2550L, 2379L, (short)3, "95.216.212.177" }, - { 2551L, 2380L, (short)1, "https://raw.githubusercontent.com/googlehosts/hosts/master/hosts-files/surge.conf" }, - { 2552L, 2380L, (short)2, "https://git.qvq.network/googlehosts/hosts/raw/master/hosts-files/surge.conf" }, - { 2553L, 2381L, (short)1, "https://raw.githubusercontent.com/googlehosts/hosts/master/hosts-files/dnsmasq.conf" }, - { 2554L, 2381L, (short)2, "https://git.qvq.network/googlehosts/hosts/raw/master/hosts-files/dnsmasq.conf" }, - { 2555L, 2382L, (short)1, "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/abp_light.txt" }, - { 2556L, 2382L, (short)2, "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/abp_light.txt" }, - { 2557L, 2383L, (short)1, "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dblw.txt" }, - { 2558L, 2383L, (short)2, "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dblw.txt" }, - { 2559L, 2384L, (short)1, "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dblw_light.txt" }, - { 2560L, 2384L, (short)2, "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dblw_light.txt" }, - { 2561L, 2385L, (short)1, "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dnsmasq.txt" }, - { 2562L, 2385L, (short)2, "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dnsmasq.txt" }, - { 2563L, 2386L, (short)1, "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dnsmasq_light.txt" }, - { 2564L, 2386L, (short)2, "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dnsmasq_light.txt" }, - { 2565L, 2387L, (short)1, "https://raw.githubusercontent.com/ryanbr/fanboy-adblock/master/fanboy-anticomments.txt" }, - { 2566L, 2388L, (short)1, "http://blacklists.ntop.org/blacklist-hostnames.txt" }, - { 2567L, 2389L, (short)1, "http://blacklists.ntop.org/adblocker-hostnames.txt" }, - { 2570L, 2392L, (short)1, "https://raw.githubusercontent.com/hufilter/hufilter/master/hufilter-dns.txt" }, - { 2571L, 2393L, (short)1, "https://security.cloudflare-dns.com/dns-query" }, - { 2572L, 2393L, (short)2, "1.1.1.2" }, - { 2573L, 2393L, (short)3, "1.0.0.2" }, - { 2574L, 2394L, (short)1, "https://family.cloudflare-dns.com/dns-query" }, - { 2575L, 2394L, (short)2, "1.1.1.3" }, - { 2576L, 2394L, (short)3, "1.0.0.3" }, - { 2577L, 2395L, (short)1, "156.154.70.2" }, - { 2578L, 2395L, (short)2, "156.154.71.2" }, - { 2579L, 2395L, (short)3, "2610:a1:1018::2" }, - { 2580L, 198L, (short)4, "https://gitlab.com/ABPindo/indonesianadblockrules/raw/master/subscriptions/abpindo.txt" }, - { 2581L, 2396L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/banks.txt" }, - { 2582L, 2397L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/sensitive.txt" }, - { 2583L, 2398L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/issues.txt" }, - { 2584L, 2399L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/windows.txt" }, - { 2585L, 2400L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/mac.txt" }, - { 2586L, 2401L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/android.txt" }, - { 2587L, 2402L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/firefox.txt" }, - { 2588L, 2403L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersDomainsAllowlist.txt" }, - { 2589L, 2403L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersDomainsAllowlist.txt" }, - { 2590L, 2404L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiPorkMeatOnRestaurantMenusList.txt" }, - { 2591L, 2404L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiPorkMeatOnRestaurantMenusList.txt" }, - { 2592L, 2406L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Special security lists/DummyList.txt" }, - { 2593L, 2406L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Special security lists/DummyList.txt" }, - { 2594L, 2405L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/Swedish-List-for-Adblock-Plus/main/Swedish List for Adblock Plus.txt" }, - { 2595L, 214L, (short)2, "https://easylist-downloads.adblockplus.org/antiadblockfilters.txt" }, - { 2596L, 566L, (short)2, "https://easylist-downloads.adblockplus.org/abp-filters-anti-cv.txt" }, - { 2597L, 2407L, (short)1, "https://hg.adblockplus.org/antiadblockfilters/raw-file/tip/antiadblockfilters/antiadblock_english.txt" }, - { 2598L, 2408L, (short)1, "https://hg.adblockplus.org/antiadblockfilters/raw-file/tip/antiadblockfilters/antiadblock_french.txt" }, - { 2599L, 2409L, (short)1, "https://hg.adblockplus.org/antiadblockfilters/raw-file/tip/antiadblockfilters/antiadblock_russian.txt" }, - { 2600L, 2410L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiSnowMarketingList.txt" }, - { 2601L, 2411L, (short)1, "https://raw.githubusercontent.com/pexcn/daily/gh-pages/adlist/adlist.txt" }, - { 2602L, 2412L, (short)1, "https://raw.githubusercontent.com/pexcn/daily/gh-pages/adblock/adblock.conf" }, - { 2603L, 2413L, (short)1, "https://raw.githubusercontent.com/pexcn/daily/gh-pages/shadowrocket/gfwlist.conf" }, - { 2604L, 2414L, (short)1, "https://raw.githubusercontent.com/pexcn/daily/gh-pages/shadowrocket/whitelist.conf" }, - { 2605L, 2415L, (short)1, "https://raw.githubusercontent.com/pexcn/daily/gh-pages/trackerlist/trackerlist.txt" }, - { 2606L, 2416L, (short)1, "https://raw.githubusercontent.com/pexcn/daily/gh-pages/ublacklist/ublacklist.txt" }, - { 2607L, 2417L, (short)1, "https://raw.githubusercontent.com/pexcn/daily/gh-pages/chnroute/chnroute.txt" }, - { 2608L, 2418L, (short)1, "https://raw.githubusercontent.com/pexcn/daily/gh-pages/chnroute/chnroute-v6.txt" }, - { 2609L, 2419L, (short)1, "https://curben.gitlab.io/malware-filter/urlhaus-filter-agh-online.txt" }, - { 2610L, 2420L, (short)1, "https://curben.gitlab.io/malware-filter/urlhaus-filter-ag-online.txt" }, - { 2611L, 2421L, (short)1, "https://curben.gitlab.io/malware-filter/urlhaus-filter-vivaldi-online.txt" }, - { 2612L, 2422L, (short)1, "https://curben.gitlab.io/malware-filter/phishing-filter-agh.txt" }, - { 2613L, 2423L, (short)1, "https://curben.gitlab.io/malware-filter/phishing-filter-ag.txt" }, - { 2614L, 2424L, (short)1, "https://curben.gitlab.io/malware-filter/phishing-filter-vivaldi.txt" }, - { 2615L, 1985L, (short)4, "176.103.130.131" }, - { 2616L, 1985L, (short)5, "2a00:5a60::ad1:0ff" }, - { 2617L, 1985L, (short)6, "2a00:5a60::ad2:0ff" }, - { 2618L, 1986L, (short)4, "176.103.130.134" }, - { 2619L, 1986L, (short)5, "2a00:5a60::bad1:0ff" }, - { 2620L, 1986L, (short)6, "2a00:5a60::bad2:0ff" }, - { 2621L, 2425L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AdGuard Home Compilation List/AdGuardHomeCompilationList-Notifications.txt" }, - { 2622L, 2425L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/AdGuard Home Compilation List/AdGuardHomeCompilationList-Notifications.txt" }, - { 2623L, 2427L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/AdGuardSDNSFilter/master/Filters/exclusions.txt" }, - { 2624L, 2428L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiGachaAndKnockoffGamesList.txt" }, - { 2625L, 2428L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/AntiGachaAndKnockoffGamesList.txt" }, - { 2626L, 2426L, (short)1, "https://raw.githubusercontent.com/rimu/no-qanon/master/etc_hosts.txt" }, - { 2627L, 2429L, (short)1, "https://raw.githubusercontent.com/rimu/no-qanon/master/etc_hosts.txt.ipv6" }, - { 2628L, 2430L, (short)1, "https://www.team-cymru.org/Services/Bogons/bogon-bn-agg.txt" }, - { 2629L, 2431L, (short)1, "https://www.team-cymru.org/Services/Bogons/fullbogons-ipv4.txt" }, - { 2630L, 2432L, (short)1, "https://www.team-cymru.org/Services/Bogons/fullbogons-ipv6.txt" }, - { 2631L, 2433L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFilters-uMatrixSupplement.txt" }, - { 2632L, 2433L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/NorwegianExperimentalList alternate versions/NordicFilters-uMatrixSupplement.txt" }, - { 2633L, 2434L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/LegitimateURLShortener.txt" }, - { 2634L, 2434L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/LegitimateURLShortener.txt" }, - { 2635L, 2435L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/SerboCroatianList.txt" }, - { 2636L, 2435L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/SerboCroatianList.txt" }, - { 2637L, 2436L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/AntiWeebBoobGamesList.txt" }, - { 2638L, 2436L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/Sensitive lists/AntiWeebBoobGamesList.txt" }, - { 2639L, 2437L, (short)1, "https://curben.gitlab.io/malware-filter/urlhaus-filter-online.tpl" }, - { 2640L, 2438L, (short)1, "https://curben.gitlab.io/malware-filter/phishing-filter.tpl" }, - { 2641L, 2439L, (short)1, "https://github.com/arapurayil/aBL/raw/master/lists/general/filter_list.txt" }, - { 2642L, 2440L, (short)1, "https://raw.githubusercontent.com/arapurayil/aBL/master/lists/social/filter_list.txt" }, - { 2643L, 2441L, (short)1, "https://raw.githubusercontent.com/arapurayil/aBL/master/lists/porn_gambling_snuff/filter_list.txt" }, - { 2644L, 2442L, (short)1, "https://raw.githubusercontent.com/arapurayil/aBL/master/lists/regional/filter_list.txt" }, - { 2645L, 2443L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Special security lists/AntiFaviconList.txt" }, - { 2646L, 2443L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/Special security lists/AntiFaviconList.txt" }, - { 2647L, 2444L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareDomains.txt" }, - { 2648L, 2444L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/Alternate versions Anti-Malware List/AntiMalwareDomains.txt" }, - { 2649L, 2445L, (short)1, "https://raw.githubusercontent.com/acnapyx/paywall-remover/master/paywall-remover-list.txt" }, - { 2650L, 2446L, (short)1, "https://dns.hostux.net/ads" }, - { 2651L, 2447L, (short)1, "https://raw.githubusercontent.com/arman68/noappleads/main/adguard-blocklist.txt" }, - { 2652L, 2448L, (short)1, "https://raw.githubusercontent.com/vavavr00m/lists/main/hosts/googletranslate" }, - { 2653L, 2449L, (short)1, "https://raw.githubusercontent.com/vavavr00m/lists/main/hosts/phorm" }, - { 2654L, 2450L, (short)1, "https://raw.githubusercontent.com/jmhenrique/adblock/master/etc/adblock_hosts" }, - { 2656L, 2452L, (short)1, "https://raw.githubusercontent.com/jbunner/adblock/master/a-roblox.txt" }, - { 2657L, 2453L, (short)1, "https://raw.githubusercontent.com/jbunner/adblock/master/a-msteams.txt" }, - { 2658L, 2454L, (short)1, "https://raw.githubusercontent.com/jbunner/adblock/master/a-scratch.txt" }, - { 2659L, 2455L, (short)1, "https://dandelionsprout.asuscomm.com:2501/dns-query" }, - { 2660L, 2455L, (short)2, "tls://dandelionsprout.asuscomm.com:853/" }, - { 2661L, 2456L, (short)1, "https://raw.githubusercontent.com/pafnuty/onlineConsultantBlocker/master/online-consultant.txt" }, - { 2662L, 2457L, (short)1, "https://raw.githubusercontent.com/catsxp/adblock-lists/master/catsxp-unbreak.txt" }, - { 2663L, 2458L, (short)1, "https://raw.githubusercontent.com/RedDragonWebDesign/block-everything/master/block-everything.txt" }, - { 2664L, 2459L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/cname-trackers/master/combined_disguised_trackers.txt" }, - { 2665L, 2460L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/cname-trackers/master/combined_disguised_trackers_justdomains.txt" }, - { 2666L, 2461L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/cname-trackers/master/combined_original_trackers.txt" }, - { 2667L, 2462L, (short)1, "https://raw.githubusercontent.com/WhyIsEvery4thYearAlwaysBad/anti-cancer-filter-lists/master/anti_trash_youtube.txt" }, - { 2668L, 2463L, (short)1, "https://raw.githubusercontent.com/WhyIsEvery4thYearAlwaysBad/anti-cancer-filter-lists/master/anti_trash_new_reddit.txt" }, - { 2669L, 2464L, (short)1, "https://raw.githubusercontent.com/WhyIsEvery4thYearAlwaysBad/anti-cancer-filter-lists/master/anti_trash_old_reddit.txt" }, - { 2670L, 2465L, (short)1, "https://raw.githubusercontent.com/WhyIsEvery4thYearAlwaysBad/anti-cancer-filter-lists/master/anti_scam_internet.txt" }, - { 2671L, 2466L, (short)1, "https://filter.futa.gg/filter.txt" }, - { 2672L, 2466L, (short)2, "https://filter.futa.app/filter.txt" }, - { 2673L, 2467L, (short)1, "https://filter.futa.gg/hosts.txt" }, - { 2674L, 2467L, (short)2, "https://filter.futa.app/hosts.txt" }, - { 2675L, 2468L, (short)1, "https://filter.futa.gg/nofarm_hosts.txt" }, - { 2676L, 2468L, (short)2, "https://filter.futa.app/nofarm_hosts.txt" }, - { 2677L, 2469L, (short)1, "https://raw.githubusercontent.com/FutaGuard/FutaFilter/master/removeparam.txt" }, - { 2678L, 2470L, (short)1, "https://raw.githubusercontent.com/twcau/AdblockRules/master/MurdochList" }, - { 2679L, 2471L, (short)1, "https://raw.githubusercontent.com/BPower0036/AdBlockFilters/main/easydutch.txt" }, - { 2680L, 2472L, (short)1, "https://curben.gitlab.io/malware-filter/urlhaus-filter-rpz-online.conf" }, - { 2681L, 2473L, (short)1, "https://curben.gitlab.io/malware-filter/phishing-filter-rpz.conf" }, - { 2683L, 2096L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/blogroll.txt" }, - { 2684L, 2475L, (short)1, "https://raw.githubusercontent.com/hirorpt/filters/main/fix.txt" }, - { 2685L, 2476L, (short)1, "https://curben.gitlab.io/malware-filter/pup-filter.txt" }, - { 2686L, 2477L, (short)1, "https://curben.gitlab.io/malware-filter/pup-filter-domains.txt" }, - { 2687L, 2478L, (short)1, "https://curben.gitlab.io/malware-filter/pup-filter-dnsmasq.conf" }, - { 2688L, 2479L, (short)1, "https://curben.gitlab.io/malware-filter/pup-filter-hosts.txt" }, - { 2689L, 2480L, (short)1, "https://curben.gitlab.io/malware-filter/pup-filter-bind.conf" }, - { 2690L, 2481L, (short)1, "https://curben.gitlab.io/malware-filter/pup-filter-unbound.conf" }, - { 2691L, 2482L, (short)1, "https://curben.gitlab.io/malware-filter/pup-filter-agh.txt" }, - { 2692L, 2483L, (short)1, "https://curben.gitlab.io/malware-filter/pup-filter-ag.txt" }, - { 2693L, 2484L, (short)1, "https://curben.gitlab.io/malware-filter/pup-filter-vivaldi.txt" }, - { 2694L, 2485L, (short)1, "https://curben.gitlab.io/malware-filter/pup-filter.tpl" }, - { 2695L, 2486L, (short)1, "https://curben.gitlab.io/malware-filter/pup-filter-rpz.conf" }, - { 2696L, 2487L, (short)1, "https://curben.gitlab.io/malware-filter/pup-filter-snort2.rules" }, - { 2697L, 2488L, (short)1, "https://curben.gitlab.io/malware-filter/pup-filter-snort3.rules" }, - { 2698L, 2489L, (short)1, "https://curben.gitlab.io/malware-filter/pup-filter-suricata.conf" }, - { 2699L, 2490L, (short)1, "https://curben.gitlab.io/malware-filter/urlhaus-filter-snort2-online.rules" }, - { 2700L, 2491L, (short)1, "https://curben.gitlab.io/malware-filter/urlhaus-filter-snort3-online.rules" }, - { 2701L, 2492L, (short)1, "https://curben.gitlab.io/malware-filter/urlhaus-filter-suricata-online.rules" }, - { 2702L, 2493L, (short)1, "https://curben.gitlab.io/malware-filter/phishing-filter-snort2.rules" }, - { 2703L, 2494L, (short)1, "https://curben.gitlab.io/malware-filter/phishing-filter-snort3.rules" }, - { 2704L, 2495L, (short)1, "https://curben.gitlab.io/malware-filter/phishing-filter-suricata.rules" }, - { 2705L, 2496L, (short)1, "https://raw.githubusercontent.com/troysjanda/MyBlockLists/master/UBOXPI" }, - { 2706L, 2097L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-annoyances-plus.txt" }, - { 2707L, 2098L, (short)1, "https://raw.githubusercontent.com/Yuki2718/adblock/master/adguard/anti-antiadb.txt" }, - { 2708L, 2497L, (short)1, "https://filters.adtidy.org/windows/filters/17.txt" }, - { 2709L, 2498L, (short)1, "https://www.joinhoney.com/whitelist/honey-smart-shopping.txt" }, - { 2710L, 2499L, (short)1, "https://raw.githubusercontent.com/furkun/Anti-IP-Grabber-Hosts/main/hosts" }, - { 2711L, 2500L, (short)1, "https://raw.githubusercontent.com/Cinnamon-Unltd/Anti-Kpop-Spammers-Filterlist-for-Twitter/main/AntiKPopSpammersFilterlistTwitter.txt" }, - { 2712L, 2501L, (short)1, "https://raw.githubusercontent.com/clarketm/proxy-list/master/proxy-list-raw.txt" }, - { 2713L, 2502L, (short)1, "https://raw.githubusercontent.com/no-cmyk/Search-Engine-Spam-Domains-Blocklist/master/blocklist.txt" }, - { 2714L, 2503L, (short)1, "https://raw.githubusercontent.com/SecOps-Institute/Tor-IP-Addresses/master/tor-nodes.lst" }, - { 2715L, 2504L, (short)1, "https://raw.githubusercontent.com/SecOps-Institute/Tor-IP-Addresses/master/tor-exit-nodes.lst" }, - { 2716L, 2505L, (short)1, "https://raw.githubusercontent.com/SecOps-Institute/SpamhausIPLists/master/drop.txt" }, - { 2717L, 2506L, (short)1, "https://raw.githubusercontent.com/SecOps-Institute/SpamhausIPLists/master/drop_ipv6.txt" }, - { 2718L, 2507L, (short)1, "https://raw.githubusercontent.com/SecOps-Institute/SpamhausIPLists/master/edrop.txt" }, - { 2719L, 2508L, (short)1, "http://ipverse.net/ipblocks/data/countries/nl.zone" }, - { 2720L, 2509L, (short)1, "http://ipverse.net/ipblocks/data/countries/nl-ipv6.zone" }, - { 2721L, 2510L, (short)1, "https://raw.githubusercontent.com/autinerd/anti-axelspringer-hosts/master/ios-adguard.txt" }, - { 2722L, 2511L, (short)1, "https://raw.githubusercontent.com/autinerd/anti-axelspringer-hosts/master/axelspringer-hosts" }, - { 2723L, 2512L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/LegitimateURLShortener-AffiliateTagAllowlist.txt" }, - { 2724L, 2512L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/LegitimateURLShortener-AffiliateTagAllowlist.txt" }, - { 2725L, 2513L, (short)1, "https://raw.githubusercontent.com/DRSDavidSoft/additional-hosts/master/domains/blacklist/fake-domains.txt" }, - { 2726L, 2514L, (short)1, "https://curben.gitlab.io/malware-filter/urlhaus-filter-dnscrypt-blocked-names-online.txt" }, - { 2727L, 2515L, (short)1, "https://curben.gitlab.io/malware-filter/urlhaus-filter-dnscrypt-blocked-ips-online.txt" }, - { 2728L, 2516L, (short)1, "https://curben.gitlab.io/malware-filter/phishing-filter-dnscrypt-blocked-names.txt" }, - { 2729L, 2517L, (short)1, "https://curben.gitlab.io/malware-filter/phishing-filter-dnscrypt-blocked-ips.txt" }, - { 2730L, 2518L, (short)1, "https://curben.gitlab.io/malware-filter/pup-filter-dnscrypt-blocked-names.txt" }, - { 2731L, 2519L, (short)1, "https://raw.githubusercontent.com/JohnyP36/Personal-List/main/Personal List (uBo).txt" }, - { 2732L, 2471L, (short)2, "https://gitlab.com/BPower0036/AdBlockFilters/-/raw/main/easydutch.txt" }, - { 2733L, 2520L, (short)1, "https://raw.githubusercontent.com/BPower0036/AdBlockFilters/main/dynamic rules" }, - { 2734L, 2521L, (short)1, "https://raw.githubusercontent.com/BPower0036/AdBlockFilters/main/my filters" }, - { 2735L, 2522L, (short)1, "https://git.bubblev.org/bubblev/bubble-filter-lists/raw/branch/master/ads_and_trackers1.txt" }, - { 2736L, 2523L, (short)1, "https://git.bubblev.org/bubblev/bubble-filter-lists/raw/branch/master/sites_us_news.txt" }, - { 2737L, 2524L, (short)1, "https://raw.githubusercontent.com/jamiemansfield/minecraft-hosts/master/lists/tracking.txt" }, - { 2738L, 2525L, (short)1, "https://orca.pet/notonmyshift/hosts.txt" }, - { 2739L, 2526L, (short)1, "https://orca.pet/notonmyshift/abp.txt" }, - { 2740L, 2527L, (short)1, "https://gist.githubusercontent.com/opus-x/3e673a9d5db2a214df05929a4eee6a57/raw" }, - { 2741L, 2528L, (short)1, "https://raw.githubusercontent.com/dibdot/DoH-IP-blocklists/master/doh-domains.txt" }, - { 2742L, 2529L, (short)1, "https://raw.githubusercontent.com/AmnestyTech/investigations/master/2021-07-18_nso/domains.txt" }, - { 2743L, 2530L, (short)1, "https://wp.owenthe.dev/fortnite.txt" }, - { 2744L, 2531L, (short)1, "https://wp.owenthe.dev/redshell.txt" }, - { 2745L, 2532L, (short)1, "https://raw.githubusercontent.com/allendema/noplaylist/main/NoPlayList.txt" }, - { 2746L, 2533L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiOwlHouseList.txt" }, - { 2747L, 2533L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/AntiOwlHouseList.txt" }, - { 2748L, 2534L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/Dandelion Sprout's and other adblocker lists' IPs.ipset" }, - { 2749L, 2534L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/Alternate versions Anti-Malware List/Dandelion Sprout's and other adblocker lists' IPs.ipset" }, - { 2750L, 301L, (short)4, "https://downloads.vivaldi.com/easylist/easylist-current.txt" }, - { 2751L, 2535L, (short)1, "https://raw.githubusercontent.com/hadig/Focus-for-Youtube/master/focus4yt.txt" }, - { 2752L, 2537L, (short)1, "https://raw.githubusercontent.com/iam-py-test/my_filters_001/main/antimalware.txt" }, - { 2753L, 2538L, (short)1, "https://raw.githubusercontent.com/iam-py-test/my_filters_001/main/Alternative list formats/antimalware_hosts.txt" } + { 2270L, 2410L, (short)1, "https://easylist-downloads.adblockplus.org/israellist-minified.tpl" }, + { 2271L, 2411L, (short)1, "https://easylist-downloads.adblockplus.org/latvianlist-minified.tpl" }, + { 2272L, 2412L, (short)1, "https://easylist-downloads.adblockplus.org/liste_ar-minified.tpl" }, + { 2273L, 2413L, (short)1, "https://easylist-downloads.adblockplus.org/liste_fr-minified.tpl" }, + { 2274L, 2414L, (short)1, "https://easylist-downloads.adblockplus.org/rolist-minified.tpl" }, + { 2275L, 2415L, (short)1, "https://easylist-downloads.adblockplus.org/easylistchina+easylistchina_compliance+easylist.tpl" }, + { 2276L, 2416L, (short)1, "https://sub.adtchrome.com/adt-chinalist-easylist.txt" }, + { 2277L, 2417L, (short)1, "https://raw.githubusercontent.com/TakoYachty/Gift-Card-Killer/master/Mega Untrusted Hosts Blocker.txt" }, + { 2278L, 2418L, (short)1, "https://raw.githubusercontent.com/stonecrusher/filterlists-pihole/master/watchlist-internet-ph.txt" }, + { 2279L, 2419L, (short)1, "https://badmojr.github.io/1Hosts/complete/wildcards.txt" }, + { 2279L, 2420L, (short)2, "https://raw.githubusercontent.com/badmojr/1Hosts/master/complete/wildcards.txt" }, + { 2280L, 2421L, (short)1, "https://badmojr.github.io/1Hosts/mini/wildcards.txt" }, + { 2280L, 2422L, (short)2, "https://raw.githubusercontent.com/badmojr/1Hosts/master/mini/wildcards.txt" }, + { 2281L, 2423L, (short)1, "https://badmojr.github.io/1Hosts/Pro/wildcards.txt" }, + { 2281L, 2424L, (short)2, "https://raw.githubusercontent.com/badmojr/1Hosts/master/Pro/wildcards.txt" }, + { 2283L, 2426L, (short)1, "https://raw.githubusercontent.com/jerryn70/GoodbyeAds/master/Formats/GoodbyeAds-AdBlock-Filter.txt" }, + { 2284L, 2427L, (short)1, "https://raw.githubusercontent.com/jerryn70/GoodbyeAds/master/Hosts/GoodbyeAds-Ultra.txt" }, + { 2285L, 2428L, (short)1, "https://raw.githubusercontent.com/jerryn70/GoodbyeAds/master/Formats/GoodbyeAds-Ultra-AdBlock-Filter.txt" }, + { 2286L, 2429L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersABP-Inclusion.txt" }, + { 2286L, 2430L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersABP-Inclusion.txt" }, + { 2287L, 2431L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiRacismList.txt" }, + { 2287L, 2432L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiRacismList.txt" }, + { 2288L, 2433L, (short)1, "https://raw.githubusercontent.com/gwarser/filter-lists/master/lan-block.txt" }, + { 2289L, 2434L, (short)1, "https://raw.githubusercontent.com/realodix/AdBlockID-Adult/master/AdBlockID_Adult.txt" }, + { 2290L, 2435L, (short)1, "https://raw.githubusercontent.com/llacb47/miscfilters/master/antipaywall.txt" }, + { 2291L, 2436L, (short)1, "https://raw.githubusercontent.com/llacb47/mischosts/master/blacklist" }, + { 2292L, 2437L, (short)1, "https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/master/accelerated-domains.china.conf" }, + { 2293L, 2438L, (short)1, "https://gitlab.com/intr0/zuckerblock/-/raw/master/uBlockOrigin-noMoreGiphy.txt" }, + { 2294L, 2439L, (short)1, "https://gitlab.com/intr0/zuckerblock/-/raw/master/AdGuard-noMoreGiphy.txt" }, + { 2295L, 2440L, (short)1, "https://raw.githubusercontent.com/hl2guide/DNS-Sinkhole-Lists-A2/master/typosquatting_blocklist.txt" }, + { 2297L, 2442L, (short)1, "https://raw.githubusercontent.com/BlackJack8/iOSAdblockList/master/Hosts.txt" }, + { 2298L, 2443L, (short)1, "https://raw.githubusercontent.com/PebbleOG/pihole-regex/master/regex.list" }, + { 2299L, 2444L, (short)1, "https://raw.githubusercontent.com/anthony-wang/PiHoleBlocklist/master/regex.list" }, + { 2300L, 2445L, (short)1, "https://raw.githubusercontent.com/anthony-wang/PiHoleBlocklist/master/hosts1.txt" }, + { 2301L, 2446L, (short)1, "https://raw.githubusercontent.com/revolveruk30/pihole_regex/master/regex.list" }, + { 2302L, 2447L, (short)1, "https://raw.githubusercontent.com/d43m0nhLInt3r/socialblocklists/master/Skype/skypeblocklist.txt" }, + { 2302L, 2448L, (short)2, "https://raw.githubusercontent.com/evpne/socialblocklists/master/Skype/skypeblocklist.txt" }, + { 2303L, 2449L, (short)1, "https://raw.githubusercontent.com/stamparm/blackbook/master/blackbook.txt" }, + { 2304L, 2450L, (short)1, "https://blocklist.cyberthreatcoalition.org/vetted/domain.txt" }, + { 2305L, 2451L, (short)1, "https://raw.githubusercontent.com/sophoslabs/covid-iocs/master/malicious_domains.txt" }, + { 2306L, 2452L, (short)1, "https://raw.githubusercontent.com/sophoslabs/covid-iocs/master/malware_domains.txt" }, + { 2307L, 2453L, (short)1, "https://managedsentinel.com/downloads/covid19_domains.txt" }, + { 2308L, 2454L, (short)1, "https://managedsentinel.com/downloads/covid19_ipaddresses.txt" }, + { 2309L, 2455L, (short)1, "https://rescure.fruxlabs.com/rescure_domain_blacklist.txt" }, + { 2310L, 2456L, (short)1, "https://rescure.fruxlabs.com/rescure_blacklist.txt" }, + { 2311L, 2457L, (short)1, "https://rescure.fruxlabs.com/covid.txt" }, + { 2311L, 2458L, (short)2, "https://kriskintel.com/feeds/ktip_covid_domains.txt" }, + { 2313L, 2460L, (short)1, "https://kriskintel.com/feeds/ktip_malicious_domains.txt" }, + { 2314L, 2461L, (short)1, "https://kriskintel.com/feeds/ktip_malicious_Ips.txt" }, + { 2315L, 2462L, (short)1, "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/NoFormatting/optimized-win.hosts" }, + { 2316L, 2463L, (short)1, "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/NoFormatting/optimized-win-Dual.hosts" }, + { 2317L, 2464L, (short)1, "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/NoFormatting/combined-flat.cidr" }, + { 2318L, 2465L, (short)1, "https://managedsentinel.com/downloads/covid19_url.txt" }, + { 2319L, 2466L, (short)1, "https://ftpihole.s3.eu-west-2.amazonaws.com/blocklists/smartphone-ads-tracking.txt" }, + { 2319L, 2467L, (short)2, "https://raw.githubusercontent.com/ftpmorph/ftpihole/master/blocklists/smartphone-ads-tracking.txt" }, + { 2320L, 2468L, (short)1, "https://ftpihole.s3.eu-west-2.amazonaws.com/blocklists/xiaomi-ads-tracking.txt" }, + { 2320L, 2469L, (short)2, "https://raw.githubusercontent.com/ftpmorph/ftpihole/master/blocklists/xiaomi-ads-tracking.txt" }, + { 2321L, 2470L, (short)1, "https://filters.adtidy.org/extension/chromium/filters/224.txt" }, + { 2322L, 2471L, (short)1, "https://filters.adtidy.org/extension/ublock/filters/224.txt" }, + { 2323L, 2472L, (short)1, "https://curben.gitlab.io/malware-filter/phishing-filter.txt" }, + { 2323L, 2473L, (short)2, "https://cdn.statically.io/gl/curben/phishing-filter/master/dist/phishing-filter.txt" }, + { 2323L, 2474L, (short)3, "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter.txt" }, + { 2324L, 2475L, (short)1, "https://curben.gitlab.io/malware-filter/phishing-filter-domains.txt" }, + { 2324L, 2476L, (short)2, "https://cdn.statically.io/gl/curben/phishing-filter/master/phishing-filter-domains.txt" }, + { 2324L, 2477L, (short)3, "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter-domains.txt" }, + { 2325L, 2478L, (short)1, "https://curben.gitlab.io/malware-filter/phishing-filter-dnsmasq.conf" }, + { 2325L, 2479L, (short)2, "https://cdn.statically.io/gl/curben/phishing-filter/master/dist/phishing-filter-dnsmasq.conf" }, + { 2325L, 2480L, (short)3, "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter-dnsmasq.conf" }, + { 2326L, 2481L, (short)1, "https://curben.gitlab.io/malware-filter/phishing-filter-hosts.txt" }, + { 2326L, 2482L, (short)2, "https://cdn.statically.io/gl/curben/phishing-filter/master/dist/phishing-filter-hosts.txt" }, + { 2326L, 2483L, (short)3, "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter-hosts.txt" }, + { 2327L, 2484L, (short)1, "https://curben.gitlab.io/malware-filter/phishing-filter-bind.conf" }, + { 2327L, 2485L, (short)2, "https://cdn.statically.io/gl/curben/phishing-filter/master/dist/phishing-filter-bind.conf" }, + { 2327L, 2486L, (short)3, "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter-bind.conf" }, + { 2328L, 2487L, (short)1, "https://curben.gitlab.io/malware-filter/phishing-filter-unbound.conf" }, + { 2328L, 2488L, (short)2, "https://cdn.statically.io/gl/curben/phishing-filter/master/dist/phishing-filter-unbound.conf" }, + { 2328L, 2489L, (short)3, "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter-unbound.conf" }, + { 2329L, 2490L, (short)1, "https://raw.githubusercontent.com/infinitytec/blocklists/master/adfilters.txt" }, + { 2330L, 2491L, (short)1, "https://github.com/infinitytec/blocklists/raw/master/annoyances.txt" }, + { 2331L, 2492L, (short)1, "https://github.com/infinitytec/blocklists/raw/master/medicalpseudoscience.txt" }, + { 2332L, 2493L, (short)1, "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/Anifltrs.txt" }, + { 2333L, 2494L, (short)1, "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/MAL-Sync UI.txt" }, + { 2334L, 2495L, (short)1, "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/Anifiltrs Main/Anifiltrs extra-main.txt" }, + { 2335L, 2496L, (short)1, "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/Anifiltrs Main/Anifiltrs main.txt" }, + { 2336L, 2497L, (short)1, "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/Anifiltrs — skeletonise.txt" }, + { 2337L, 2498L, (short)1, "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/Anifiltrs — skeletonise extra.txt" }, + { 2338L, 2499L, (short)1, "https://raw.githubusercontent.com/L33Tech/uLists/master/Lists/L33TAIO.uBl" }, + { 2339L, 2500L, (short)1, "https://raw.githubusercontent.com/L33Tech/uLists/master/Forks/StopModReposts.uBl" }, + { 2340L, 2501L, (short)1, "https://raw.githubusercontent.com/privacy-protection-tools/anti-AD/master/anti-ad-smartdns.conf" }, + { 2340L, 2502L, (short)2, "https://cdn.jsdelivr.net/gh/privacy-protection-tools/anti-AD@master/anti-ad-smartdns.conf" }, + { 2340L, 2503L, (short)3, "https://anti-ad.net/anti-ad-for-smartdns.conf" }, + { 2341L, 2504L, (short)1, "66.66.23.98" }, + { 2342L, 2505L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/AdGuardSDNSFilter/master/Filters/rules.txt" }, + { 2343L, 2506L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/AdGuardSDNSFilter/master/Filters/exceptions.txt" }, + { 2344L, 2507L, (short)1, "https://www.eff.org/files/effdntlist.txt" }, + { 2345L, 2508L, (short)1, "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/filter" }, + { 2346L, 2509L, (short)1, "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/domains.txt" }, + { 2347L, 2510L, (short)1, "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/dnsmasq.conf" }, + { 2348L, 2511L, (short)1, "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/dnsmasq-ipv6.conf" }, + { 2349L, 2512L, (short)1, "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/unbound.conf" }, + { 2350L, 2513L, (short)1, "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/rpz.txt" }, + { 2351L, 2514L, (short)1, "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/pdnsf.txt" }, + { 2352L, 2515L, (short)1, "https://www.smartadblock.co.uk/filters/sabfilter.txt" }, + { 2353L, 2516L, (short)1, "https://raw.githubusercontent.com/jdlingyu/ad-wars/master/sha_ad_hosts" }, + { 2354L, 2517L, (short)1, "https://raw.githubusercontent.com/Ultimate-Hosts-Blacklist/whitelist/master/domains.list" }, + { 2355L, 2518L, (short)1, "https://raw.githubusercontent.com/notracking/hosts-blocklists-scripts/master/hostnames.whitelist.txt" }, + { 2356L, 2519L, (short)1, "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdBlock" }, + { 2357L, 2520L, (short)1, "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdBlockLite" }, + { 2358L, 2521L, (short)1, "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdList" }, + { 2359L, 2522L, (short)1, "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdListLite" }, + { 2360L, 2523L, (short)1, "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdBlock-dnsmasq" }, + { 2361L, 2524L, (short)1, "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdBlockLite-dnsmasq" }, + { 2362L, 2525L, (short)1, "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdAllowlist" }, + { 2363L, 2526L, (short)1, "https://raw.githubusercontent.com/examplecode/ad-rules-for-xbrowser/master/core-rule-cn.txt" }, + { 2364L, 2527L, (short)1, "https://raw.githubusercontent.com/ilpl/ad-hosts/master/hosts" }, + { 2366L, 2529L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/FalukorvList.txt" }, + { 2366L, 2530L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/FalukorvList.txt" }, + { 2367L, 2531L, (short)1, "https://blokada.org/blocklists/ddgtrackerradar/standard/hosts.txt" }, + { 2368L, 2532L, (short)1, "https://raw.githubusercontent.com/Loyalsoldier/v2ray-rules-dat/release/reject-list.txt" }, + { 2369L, 2533L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiKpopSpammersTwitter.txt" }, + { 2369L, 2534L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiKpopSpammersTwitter.txt" }, + { 2370L, 2535L, (short)1, "https://raw.githubusercontent.com/Goooler/1024_hosts/master/hosts" }, + { 2371L, 2536L, (short)1, "https://raw.githubusercontent.com/adbyby/xwhyc-rules/master/lazy.txt" }, + { 2372L, 2537L, (short)1, "https://raw.githubusercontent.com/privacy-protection-tools/dead-horse/master/anti-ad-white-list.txt" }, + { 2373L, 2538L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAdoptablesList.txt" }, + { 2373L, 2539L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAdoptablesList.txt" }, + { 2374L, 2540L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianCashbackAssistantReborn.txt" }, + { 2374L, 2541L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianCashbackAssistantReborn.txt" }, + { 2375L, 2542L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiNonNewsList.txt" }, + { 2375L, 2543L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiNonNewsList.txt" }, + { 2376L, 2544L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiBadCapitalismList.txt" }, + { 2376L, 2545L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiBadCapitalismList.txt" }, + { 2377L, 2546L, (short)1, "https://easylist-downloads.adblockplus.org/dandelion_sprouts_nordic_filters+easylist.txt" }, + { 2378L, 2547L, (short)1, "https://easylist-downloads.adblockplus.org/dandelion_sprouts_nordic_filters+easylist.tpl" }, + { 2379L, 2548L, (short)1, "https://doh1.blahdns.com/dns-query" }, + { 2379L, 2549L, (short)2, "tls://95.216.212.177:853/" }, + { 2379L, 2550L, (short)3, "95.216.212.177" }, + { 2380L, 2551L, (short)1, "https://raw.githubusercontent.com/googlehosts/hosts/master/hosts-files/surge.conf" }, + { 2380L, 2552L, (short)2, "https://git.qvq.network/googlehosts/hosts/raw/master/hosts-files/surge.conf" }, + { 2381L, 2553L, (short)1, "https://raw.githubusercontent.com/googlehosts/hosts/master/hosts-files/dnsmasq.conf" }, + { 2381L, 2554L, (short)2, "https://git.qvq.network/googlehosts/hosts/raw/master/hosts-files/dnsmasq.conf" }, + { 2382L, 2555L, (short)1, "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/abp_light.txt" }, + { 2382L, 2556L, (short)2, "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/abp_light.txt" }, + { 2383L, 2557L, (short)1, "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dblw.txt" }, + { 2383L, 2558L, (short)2, "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dblw.txt" }, + { 2384L, 2559L, (short)1, "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dblw_light.txt" }, + { 2384L, 2560L, (short)2, "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dblw_light.txt" }, + { 2385L, 2561L, (short)1, "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dnsmasq.txt" }, + { 2385L, 2562L, (short)2, "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dnsmasq.txt" }, + { 2386L, 2563L, (short)1, "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dnsmasq_light.txt" }, + { 2386L, 2564L, (short)2, "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dnsmasq_light.txt" }, + { 2387L, 2565L, (short)1, "https://raw.githubusercontent.com/ryanbr/fanboy-adblock/master/fanboy-anticomments.txt" }, + { 2388L, 2566L, (short)1, "http://blacklists.ntop.org/blacklist-hostnames.txt" }, + { 2389L, 2567L, (short)1, "http://blacklists.ntop.org/adblocker-hostnames.txt" }, + { 2392L, 2570L, (short)1, "https://raw.githubusercontent.com/hufilter/hufilter/master/hufilter-dns.txt" }, + { 2393L, 2571L, (short)1, "https://security.cloudflare-dns.com/dns-query" }, + { 2393L, 2572L, (short)2, "1.1.1.2" }, + { 2393L, 2573L, (short)3, "1.0.0.2" }, + { 2394L, 2574L, (short)1, "https://family.cloudflare-dns.com/dns-query" }, + { 2394L, 2575L, (short)2, "1.1.1.3" }, + { 2394L, 2576L, (short)3, "1.0.0.3" }, + { 2395L, 2577L, (short)1, "156.154.70.2" }, + { 2395L, 2578L, (short)2, "156.154.71.2" }, + { 2395L, 2579L, (short)3, "2610:a1:1018::2" }, + { 2396L, 2581L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/banks.txt" }, + { 2397L, 2582L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/sensitive.txt" }, + { 2398L, 2583L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/issues.txt" }, + { 2399L, 2584L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/windows.txt" }, + { 2400L, 2585L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/mac.txt" }, + { 2401L, 2586L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/android.txt" }, + { 2402L, 2587L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/firefox.txt" }, + { 2403L, 2588L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersDomainsAllowlist.txt" }, + { 2403L, 2589L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersDomainsAllowlist.txt" }, + { 2404L, 2590L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiPorkMeatOnRestaurantMenusList.txt" }, + { 2404L, 2591L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiPorkMeatOnRestaurantMenusList.txt" }, + { 2405L, 2594L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/Swedish-List-for-Adblock-Plus/main/Swedish List for Adblock Plus.txt" }, + { 2406L, 2592L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Special security lists/DummyList.txt" }, + { 2406L, 2593L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/Special security lists/DummyList.txt" }, + { 2407L, 2597L, (short)1, "https://hg.adblockplus.org/antiadblockfilters/raw-file/tip/antiadblockfilters/antiadblock_english.txt" }, + { 2408L, 2598L, (short)1, "https://hg.adblockplus.org/antiadblockfilters/raw-file/tip/antiadblockfilters/antiadblock_french.txt" }, + { 2409L, 2599L, (short)1, "https://hg.adblockplus.org/antiadblockfilters/raw-file/tip/antiadblockfilters/antiadblock_russian.txt" }, + { 2410L, 2600L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiSnowMarketingList.txt" }, + { 2411L, 2601L, (short)1, "https://raw.githubusercontent.com/pexcn/daily/gh-pages/adlist/adlist.txt" }, + { 2412L, 2602L, (short)1, "https://raw.githubusercontent.com/pexcn/daily/gh-pages/adblock/adblock.conf" }, + { 2413L, 2603L, (short)1, "https://raw.githubusercontent.com/pexcn/daily/gh-pages/shadowrocket/gfwlist.conf" }, + { 2414L, 2604L, (short)1, "https://raw.githubusercontent.com/pexcn/daily/gh-pages/shadowrocket/whitelist.conf" }, + { 2415L, 2605L, (short)1, "https://raw.githubusercontent.com/pexcn/daily/gh-pages/trackerlist/trackerlist.txt" }, + { 2416L, 2606L, (short)1, "https://raw.githubusercontent.com/pexcn/daily/gh-pages/ublacklist/ublacklist.txt" }, + { 2417L, 2607L, (short)1, "https://raw.githubusercontent.com/pexcn/daily/gh-pages/chnroute/chnroute.txt" }, + { 2418L, 2608L, (short)1, "https://raw.githubusercontent.com/pexcn/daily/gh-pages/chnroute/chnroute-v6.txt" }, + { 2419L, 2609L, (short)1, "https://curben.gitlab.io/malware-filter/urlhaus-filter-agh-online.txt" }, + { 2420L, 2610L, (short)1, "https://curben.gitlab.io/malware-filter/urlhaus-filter-ag-online.txt" }, + { 2421L, 2611L, (short)1, "https://curben.gitlab.io/malware-filter/urlhaus-filter-vivaldi-online.txt" }, + { 2422L, 2612L, (short)1, "https://curben.gitlab.io/malware-filter/phishing-filter-agh.txt" }, + { 2423L, 2613L, (short)1, "https://curben.gitlab.io/malware-filter/phishing-filter-ag.txt" }, + { 2424L, 2614L, (short)1, "https://curben.gitlab.io/malware-filter/phishing-filter-vivaldi.txt" }, + { 2425L, 2621L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AdGuard Home Compilation List/AdGuardHomeCompilationList-Notifications.txt" }, + { 2425L, 2622L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/AdGuard Home Compilation List/AdGuardHomeCompilationList-Notifications.txt" }, + { 2426L, 2626L, (short)1, "https://raw.githubusercontent.com/rimu/no-qanon/master/etc_hosts.txt" }, + { 2427L, 2623L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/AdGuardSDNSFilter/master/Filters/exclusions.txt" }, + { 2428L, 2624L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiGachaAndKnockoffGamesList.txt" }, + { 2428L, 2625L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/AntiGachaAndKnockoffGamesList.txt" }, + { 2429L, 2627L, (short)1, "https://raw.githubusercontent.com/rimu/no-qanon/master/etc_hosts.txt.ipv6" }, + { 2430L, 2628L, (short)1, "https://www.team-cymru.org/Services/Bogons/bogon-bn-agg.txt" }, + { 2431L, 2629L, (short)1, "https://www.team-cymru.org/Services/Bogons/fullbogons-ipv4.txt" }, + { 2432L, 2630L, (short)1, "https://www.team-cymru.org/Services/Bogons/fullbogons-ipv6.txt" }, + { 2433L, 2631L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFilters-uMatrixSupplement.txt" }, + { 2433L, 2632L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/NorwegianExperimentalList alternate versions/NordicFilters-uMatrixSupplement.txt" }, + { 2434L, 2633L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/LegitimateURLShortener.txt" }, + { 2434L, 2634L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/LegitimateURLShortener.txt" }, + { 2434L, 2755L, (short)3, "https://iam-py-test.github.io/mirrors/LegitimateURLShortener.txt" }, + { 2435L, 2635L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/SerboCroatianList.txt" }, + { 2435L, 2636L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/SerboCroatianList.txt" }, + { 2436L, 2637L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/AntiWeebBoobGamesList.txt" }, + { 2436L, 2638L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/Sensitive lists/AntiWeebBoobGamesList.txt" }, + { 2437L, 2639L, (short)1, "https://curben.gitlab.io/malware-filter/urlhaus-filter-online.tpl" }, + { 2438L, 2640L, (short)1, "https://curben.gitlab.io/malware-filter/phishing-filter.tpl" }, + { 2439L, 2641L, (short)1, "https://github.com/arapurayil/aBL/raw/master/lists/general/filter_list.txt" }, + { 2440L, 2642L, (short)1, "https://raw.githubusercontent.com/arapurayil/aBL/master/lists/social/filter_list.txt" }, + { 2441L, 2643L, (short)1, "https://raw.githubusercontent.com/arapurayil/aBL/master/lists/porn_gambling_snuff/filter_list.txt" }, + { 2442L, 2644L, (short)1, "https://raw.githubusercontent.com/arapurayil/aBL/master/lists/regional/filter_list.txt" }, + { 2443L, 2645L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Special security lists/AntiFaviconList.txt" }, + { 2443L, 2646L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/Special security lists/AntiFaviconList.txt" }, + { 2444L, 2647L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareDomains.txt" }, + { 2444L, 2648L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/Alternate versions Anti-Malware List/AntiMalwareDomains.txt" }, + { 2445L, 2649L, (short)1, "https://raw.githubusercontent.com/acnapyx/paywall-remover/master/paywall-remover-list.txt" }, + { 2446L, 2650L, (short)1, "https://dns.hostux.net/ads" }, + { 2447L, 2651L, (short)1, "https://raw.githubusercontent.com/arman68/noappleads/main/adguard-blocklist.txt" }, + { 2448L, 2652L, (short)1, "https://raw.githubusercontent.com/vavavr00m/lists/main/hosts/googletranslate" }, + { 2449L, 2653L, (short)1, "https://raw.githubusercontent.com/vavavr00m/lists/main/hosts/phorm" }, + { 2450L, 2654L, (short)1, "https://raw.githubusercontent.com/jmhenrique/adblock/master/etc/adblock_hosts" }, + { 2452L, 2656L, (short)1, "https://raw.githubusercontent.com/jbunner/adblock/master/a-roblox.txt" }, + { 2453L, 2657L, (short)1, "https://raw.githubusercontent.com/jbunner/adblock/master/a-msteams.txt" }, + { 2454L, 2658L, (short)1, "https://raw.githubusercontent.com/jbunner/adblock/master/a-scratch.txt" }, + { 2455L, 2659L, (short)1, "https://dandelionsprout.asuscomm.com:2501/dns-query" }, + { 2455L, 2660L, (short)2, "tls://dandelionsprout.asuscomm.com:853/" }, + { 2456L, 2661L, (short)1, "https://raw.githubusercontent.com/pafnuty/onlineConsultantBlocker/master/online-consultant.txt" }, + { 2457L, 2662L, (short)1, "https://raw.githubusercontent.com/catsxp/adblock-lists/master/catsxp-unbreak.txt" }, + { 2458L, 2663L, (short)1, "https://raw.githubusercontent.com/RedDragonWebDesign/block-everything/master/block-everything.txt" }, + { 2459L, 2664L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/cname-trackers/master/combined_disguised_trackers.txt" }, + { 2460L, 2665L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/cname-trackers/master/combined_disguised_trackers_justdomains.txt" }, + { 2461L, 2666L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/cname-trackers/master/combined_original_trackers.txt" }, + { 2462L, 2667L, (short)1, "https://raw.githubusercontent.com/WhyIsEvery4thYearAlwaysBad/anti-cancer-filter-lists/master/anti_trash_youtube.txt" }, + { 2463L, 2668L, (short)1, "https://raw.githubusercontent.com/WhyIsEvery4thYearAlwaysBad/anti-cancer-filter-lists/master/anti_trash_new_reddit.txt" }, + { 2464L, 2669L, (short)1, "https://raw.githubusercontent.com/WhyIsEvery4thYearAlwaysBad/anti-cancer-filter-lists/master/anti_trash_old_reddit.txt" }, + { 2465L, 2670L, (short)1, "https://raw.githubusercontent.com/WhyIsEvery4thYearAlwaysBad/anti-cancer-filter-lists/master/anti_scam_internet.txt" }, + { 2466L, 2671L, (short)1, "https://filter.futa.gg/filter.txt" }, + { 2466L, 2672L, (short)2, "https://filter.futa.app/filter.txt" }, + { 2467L, 2673L, (short)1, "https://filter.futa.gg/hosts.txt" }, + { 2467L, 2674L, (short)2, "https://filter.futa.app/hosts.txt" }, + { 2468L, 2675L, (short)1, "https://filter.futa.gg/nofarm_hosts.txt" }, + { 2468L, 2676L, (short)2, "https://filter.futa.app/nofarm_hosts.txt" }, + { 2469L, 2677L, (short)1, "https://raw.githubusercontent.com/FutaGuard/FutaFilter/master/removeparam.txt" }, + { 2470L, 2678L, (short)1, "https://raw.githubusercontent.com/twcau/AdblockRules/master/MurdochList" }, + { 2471L, 2679L, (short)1, "https://raw.githubusercontent.com/BPower0036/AdBlockFilters/main/easydutch.txt" }, + { 2471L, 2732L, (short)2, "https://gitlab.com/BPower0036/AdBlockFilters/-/raw/main/easydutch.txt" }, + { 2471L, 2798L, (short)3, "https://combinatronics.io/BPower0036/AdBlockFilters/main/easydutch.txt" }, + { 2471L, 2799L, (short)4, "https://cdn.statically.io/gh/BPower0036/AdBlockFilters/main/easydutch.txt" }, + { 2471L, 2800L, (short)5, "https://cdn.statically.io/gl/BPower0036/AdBlockFilters/main/easydutch.txt" }, + { 2471L, 2801L, (short)6, "https://cdn.jsdelivr.net/gh/BPower0036/AdBlockFilters@main/easydutch.txt" }, + { 2472L, 2680L, (short)1, "https://curben.gitlab.io/malware-filter/urlhaus-filter-rpz-online.conf" }, + { 2473L, 2681L, (short)1, "https://curben.gitlab.io/malware-filter/phishing-filter-rpz.conf" }, + { 2475L, 2684L, (short)1, "https://raw.githubusercontent.com/hirorpt/filters/main/fix.txt" }, + { 2476L, 2685L, (short)1, "https://curben.gitlab.io/malware-filter/pup-filter.txt" }, + { 2477L, 2686L, (short)1, "https://curben.gitlab.io/malware-filter/pup-filter-domains.txt" }, + { 2478L, 2687L, (short)1, "https://curben.gitlab.io/malware-filter/pup-filter-dnsmasq.conf" }, + { 2479L, 2688L, (short)1, "https://curben.gitlab.io/malware-filter/pup-filter-hosts.txt" }, + { 2480L, 2689L, (short)1, "https://curben.gitlab.io/malware-filter/pup-filter-bind.conf" }, + { 2481L, 2690L, (short)1, "https://curben.gitlab.io/malware-filter/pup-filter-unbound.conf" }, + { 2482L, 2691L, (short)1, "https://curben.gitlab.io/malware-filter/pup-filter-agh.txt" }, + { 2483L, 2692L, (short)1, "https://curben.gitlab.io/malware-filter/pup-filter-ag.txt" }, + { 2484L, 2693L, (short)1, "https://curben.gitlab.io/malware-filter/pup-filter-vivaldi.txt" }, + { 2485L, 2694L, (short)1, "https://curben.gitlab.io/malware-filter/pup-filter.tpl" }, + { 2486L, 2695L, (short)1, "https://curben.gitlab.io/malware-filter/pup-filter-rpz.conf" }, + { 2487L, 2696L, (short)1, "https://curben.gitlab.io/malware-filter/pup-filter-snort2.rules" }, + { 2488L, 2697L, (short)1, "https://curben.gitlab.io/malware-filter/pup-filter-snort3.rules" }, + { 2489L, 2698L, (short)1, "https://curben.gitlab.io/malware-filter/pup-filter-suricata.conf" }, + { 2490L, 2699L, (short)1, "https://curben.gitlab.io/malware-filter/urlhaus-filter-snort2-online.rules" }, + { 2491L, 2700L, (short)1, "https://curben.gitlab.io/malware-filter/urlhaus-filter-snort3-online.rules" }, + { 2492L, 2701L, (short)1, "https://curben.gitlab.io/malware-filter/urlhaus-filter-suricata-online.rules" }, + { 2493L, 2702L, (short)1, "https://curben.gitlab.io/malware-filter/phishing-filter-snort2.rules" }, + { 2494L, 2703L, (short)1, "https://curben.gitlab.io/malware-filter/phishing-filter-snort3.rules" }, + { 2495L, 2704L, (short)1, "https://curben.gitlab.io/malware-filter/phishing-filter-suricata.rules" }, + { 2496L, 2705L, (short)1, "https://raw.githubusercontent.com/troysjanda/MyBlockLists/master/UBOXPI" }, + { 2497L, 2708L, (short)1, "https://filters.adtidy.org/windows/filters/17.txt" }, + { 2498L, 2709L, (short)1, "https://www.joinhoney.com/whitelist/honey-smart-shopping.txt" }, + { 2499L, 2710L, (short)1, "https://raw.githubusercontent.com/furkun/Anti-IP-Grabber-Hosts/main/hosts" }, + { 2500L, 2711L, (short)1, "https://raw.githubusercontent.com/Cinnamon-Unltd/Anti-Kpop-Spammers-Filterlist-for-Twitter/main/AntiKPopSpammersFilterlistTwitter.txt" }, + { 2501L, 2712L, (short)1, "https://raw.githubusercontent.com/clarketm/proxy-list/master/proxy-list-raw.txt" }, + { 2502L, 2713L, (short)1, "https://raw.githubusercontent.com/no-cmyk/Search-Engine-Spam-Domains-Blocklist/master/blocklist.txt" }, + { 2503L, 2714L, (short)1, "https://raw.githubusercontent.com/SecOps-Institute/Tor-IP-Addresses/master/tor-nodes.lst" }, + { 2504L, 2715L, (short)1, "https://raw.githubusercontent.com/SecOps-Institute/Tor-IP-Addresses/master/tor-exit-nodes.lst" }, + { 2505L, 2716L, (short)1, "https://raw.githubusercontent.com/SecOps-Institute/SpamhausIPLists/master/drop.txt" }, + { 2506L, 2717L, (short)1, "https://raw.githubusercontent.com/SecOps-Institute/SpamhausIPLists/master/drop_ipv6.txt" }, + { 2507L, 2718L, (short)1, "https://raw.githubusercontent.com/SecOps-Institute/SpamhausIPLists/master/edrop.txt" }, + { 2508L, 2719L, (short)1, "http://ipverse.net/ipblocks/data/countries/nl.zone" }, + { 2509L, 2720L, (short)1, "http://ipverse.net/ipblocks/data/countries/nl-ipv6.zone" }, + { 2510L, 2721L, (short)1, "https://raw.githubusercontent.com/autinerd/anti-axelspringer-hosts/master/ios-adguard.txt" }, + { 2511L, 2722L, (short)1, "https://raw.githubusercontent.com/autinerd/anti-axelspringer-hosts/master/axelspringer-hosts" }, + { 2512L, 2723L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/LegitimateURLShortener-AffiliateTagAllowlist.txt" }, + { 2512L, 2724L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/raw/master/LegitimateURLShortener-AffiliateTagAllowlist.txt" }, + { 2513L, 2725L, (short)1, "https://raw.githubusercontent.com/DRSDavidSoft/additional-hosts/master/domains/blacklist/fake-domains.txt" }, + { 2514L, 2726L, (short)1, "https://curben.gitlab.io/malware-filter/urlhaus-filter-dnscrypt-blocked-names-online.txt" }, + { 2515L, 2727L, (short)1, "https://curben.gitlab.io/malware-filter/urlhaus-filter-dnscrypt-blocked-ips-online.txt" }, + { 2516L, 2728L, (short)1, "https://curben.gitlab.io/malware-filter/phishing-filter-dnscrypt-blocked-names.txt" }, + { 2517L, 2729L, (short)1, "https://curben.gitlab.io/malware-filter/phishing-filter-dnscrypt-blocked-ips.txt" }, + { 2518L, 2730L, (short)1, "https://curben.gitlab.io/malware-filter/pup-filter-dnscrypt-blocked-names.txt" }, + { 2519L, 2731L, (short)1, "https://raw.githubusercontent.com/JohnyP36/Personal-List/main/Personal List (uBo).txt" }, + { 2520L, 2733L, (short)1, "https://raw.githubusercontent.com/BPower0036/AdBlockFilters/main/dynamic rules" }, + { 2520L, 2802L, (short)2, "https://gitlab.com/BPower0036/AdBlockFilters/-/raw/main/dynamic rules" }, + { 2520L, 2803L, (short)3, "https://combinatronics.io/BPower0036/AdBlockfilters/main/dynamic rules" }, + { 2520L, 2804L, (short)4, "https://cdn.statically.io/gh/BPower0036/AdBlockfilters/main/dynamic rules" }, + { 2520L, 2805L, (short)5, "https://cdn.statically.io/gl/BPower0036/AdBlockFilters/main/dynamic rules" }, + { 2520L, 2806L, (short)6, "https://cdn.jsdelivr.net/gh/BPower0036/AdBlockfilters@main/dynamic rules" }, + { 2521L, 2734L, (short)1, "https://raw.githubusercontent.com/BPower0036/AdBlockFilters/main/my filters" }, + { 2521L, 2807L, (short)2, "https://gitlab.com/BPower0036/AdBlockFilters/-/raw/main/my filters" }, + { 2521L, 2808L, (short)3, "https://combinatronics.io/BPower0036/AdBlockfilters/main/my filters" }, + { 2521L, 2809L, (short)4, "https://cdn.statically.io/gh/BPower0036/AdBlockfilters/main/my filters" }, + { 2521L, 2810L, (short)5, "https://cdn.statically.io/gl/BPower0036/AdBlockFilters/main/my filters" }, + { 2521L, 2811L, (short)6, "https://cdn.jsdelivr.net/gh/BPower0036/AdBlockfilters@main/my filters" }, + { 2522L, 2735L, (short)1, "https://git.bubblev.org/bubblev/bubble-filter-lists/raw/branch/master/ads_and_trackers1.txt" }, + { 2523L, 2736L, (short)1, "https://git.bubblev.org/bubblev/bubble-filter-lists/raw/branch/master/sites_us_news.txt" }, + { 2524L, 2737L, (short)1, "https://raw.githubusercontent.com/jamiemansfield/minecraft-hosts/master/lists/tracking.txt" }, + { 2525L, 2738L, (short)1, "https://orca.pet/notonmyshift/hosts.txt" }, + { 2526L, 2739L, (short)1, "https://orca.pet/notonmyshift/abp.txt" }, + { 2527L, 2740L, (short)1, "https://gist.githubusercontent.com/opus-x/3e673a9d5db2a214df05929a4eee6a57/raw" }, + { 2528L, 2741L, (short)1, "https://raw.githubusercontent.com/dibdot/DoH-IP-blocklists/master/doh-domains.txt" }, + { 2529L, 2742L, (short)1, "https://raw.githubusercontent.com/AmnestyTech/investigations/master/2021-07-18_nso/domains.txt" }, + { 2530L, 2743L, (short)1, "https://wp.owenthe.dev/fortnite.txt" }, + { 2531L, 2744L, (short)1, "https://wp.owenthe.dev/redshell.txt" }, + { 2532L, 2745L, (short)1, "https://raw.githubusercontent.com/allendema/noplaylist/main/NoPlayList.txt" }, + { 2533L, 2746L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiOwlHouseList.txt" }, + { 2533L, 2747L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/AntiOwlHouseList.txt" }, + { 2534L, 2748L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/Dandelion Sprout's and other adblocker lists' IPs.ipset" }, + { 2534L, 2749L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/Alternate versions Anti-Malware List/Dandelion Sprout's and other adblocker lists' IPs.ipset" }, + { 2535L, 2751L, (short)1, "https://raw.githubusercontent.com/hadig/Focus-for-Youtube/master/focus4yt.txt" } }); migrationBuilder.InsertData( table: "filter_list_view_urls", - columns: new[] { "id", "filter_list_id", "url" }, - values: new object[] { 2754L, 2536L, "https://raw.githubusercontent.com/Arctic-Circle-System/Sketchy-Extension-and-Search-List/main/list.txt" }); + columns: new[] { "filter_list_id", "id", "url" }, + values: new object[] { 2536L, 2754L, "https://raw.githubusercontent.com/Arctic-Circle-System/Sketchy-Extension-and-Search-List/main/list.txt" }); migrationBuilder.InsertData( table: "filter_list_view_urls", - columns: new[] { "id", "filter_list_id", "primariness", "url" }, + columns: new[] { "filter_list_id", "id", "primariness", "url" }, values: new object[,] { - { 2755L, 2434L, (short)3, "https://iam-py-test.github.io/mirrors/LegitimateURLShortener.txt" }, - { 2756L, 2537L, (short)2, "https://iam-py-test.github.io/my_filters_001/antimalware.txt" }, - { 2757L, 2538L, (short)2, "https://iam-py-test.github.io/my_filters_001/Alternative list formats/antimalware_hosts.txt" }, - { 2758L, 2539L, (short)1, "https://ammnt.app/filter.txt" }, - { 2759L, 2540L, (short)1, "https://raw.githubusercontent.com/AmmoniteFilter/TrilobiteFilter/main/filter.txt" }, - { 2760L, 2541L, (short)1, "https://raw.githubusercontent.com/iam-py-test/my_filters_001/main/Alternative list formats/antimalware_domains.txt" }, - { 2761L, 2541L, (short)2, "https://iam-py-test.github.io/my_filters_001/Alternative list formats/antimalware_domains.txt" }, - { 2762L, 2542L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/AdguardFilters/master/AnnoyancesFilter/sections/subscriptions.txt" }, - { 2763L, 2543L, (short)1, "https://pfblockerlists.smallbusinesstech.net/hackerlist.txt" }, - { 2764L, 2544L, (short)1, "https://pfblockerlists.smallbusinesstech.net/spamlist.txt" }, - { 2765L, 2545L, (short)1, "https://raw.githubusercontent.com/nextdns/metadata/master/privacy/affiliate-tracking-domains" }, - { 2766L, 2546L, (short)1, "https://raw.githubusercontent.com/deep-bhatt/huawei-block-list/master/huawei-block-host.txt" }, - { 2767L, 2547L, (short)1, "https://raw.githubusercontent.com/wesbos/burner-email-providers/master/emails.txt" }, - { 2768L, 2548L, (short)1, "https://kriskintel.com/feeds/ktip_ransomware_feeds.txt" }, - { 2769L, 2549L, (short)1, "https://raw.githubusercontent.com/brijrajparmar27/host-sources/master/Porn/hosts" }, - { 2770L, 2550L, (short)1, "https://raw.githubusercontent.com/Zelo72/adguard/main/whitelist.referral.adguard" }, - { 2771L, 2551L, (short)1, "https://github.com/stamparm/maltrail/blob/master/trails/static/suspicious/i2p.txt" }, - { 2772L, 2552L, (short)1, "https://github.com/stamparm/maltrail/blob/master/trails/static/suspicious/ipinfo.txt" }, - { 2773L, 2553L, (short)1, "https://github.com/stamparm/maltrail/blob/master/trails/static/suspicious/parking_site.txt" }, - { 2774L, 2554L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/DeadServerGamePingList.txt" }, - { 2775L, 2554L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/DeadServerGamePingList.txt" }, - { 2776L, 2555L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/TabloidRemover-MastodonCategoryForImports.csv" }, - { 2777L, 2555L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/Sensitive lists/TabloidRemover-MastodonCategoryForImports.csv" }, - { 2778L, 2556L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/ClearURLs for uBo/clear_urls_uboified.txt" }, - { 2779L, 2556L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/ClearURLs for uBo/clear_urls_uboified.txt" }, - { 2780L, 2557L, (short)1, "https://raw.githubusercontent.com/scafroglia93/blocklists/master/blocklists-malware-traffic.txt" }, - { 2781L, 2558L, (short)1, "https://raw.githubusercontent.com/Knuschberkeks/Knuschberblock/main/Knuschberblock.txt" }, - { 2782L, 2559L, (short)1, "https://raw.githubusercontent.com/huzunluartemis/TurkishAdblockList/main/src/HostsList.txt" }, - { 2783L, 2560L, (short)1, "https://raw.githubusercontent.com/huzunluartemis/TurkishAdblockList/main/src/ElementalList.txt" }, - { 2784L, 2561L, (short)1, "https://raw.githubusercontent.com/huzunluartemis/TurkishAdblockList/main/src/BadIpList.txt" }, - { 2785L, 2562L, (short)1, "https://raw.githubusercontent.com/furkun/AndroidSecurityHosts/main/hosts" }, - { 2786L, 2563L, (short)1, "https://raw.githubusercontent.com/furkun/AndroidSecurityHosts/main/domains.txt" }, - { 2787L, 2556L, (short)3, "https://codeberg.org/rusty-snake/firefox-config/src/branch/main/assets/uBlockOrigin:queryprune.txt" }, - { 2788L, 2564L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/PCCassets/main/plCDB.txt" }, - { 2789L, 2564L, (short)2, "https://cdn.jsdelivr.net/gh/FiltersHeroes/PCCassets@main/plCDB.txt" }, - { 2790L, 2564L, (short)3, "https://combinatronics.io/FiltersHeroes/PCCassets/main/plCDB.txt" }, - { 2791L, 2564L, (short)4, "https://cdn.statically.io/gh/FiltersHeroes/PCCassets/main/plCDB.txt" }, - { 2792L, 2564L, (short)5, "https://filtersheroes.gitlab.io/AssetsMirror/plCDB.txt" }, - { 2793L, 2565L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/PCCassets/main/euCDB.txt" }, - { 2794L, 2565L, (short)2, "https://cdn.jsdelivr.net/gh/FiltersHeroes/PCCassets@main/euCDB.txt" }, - { 2795L, 2565L, (short)3, "https://combinatronics.io/FiltersHeroes/PCCassets/main/euCDB.txt" }, - { 2796L, 2565L, (short)4, "https://cdn.statically.io/gh/FiltersHeroes/PCCassets/main/euCDB.txt" }, - { 2797L, 2565L, (short)5, "https://filtersheroes.gitlab.io/AssetsMirror/euCDB.txt" }, - { 2798L, 2471L, (short)3, "https://combinatronics.io/BPower0036/AdBlockFilters/main/easydutch.txt" }, - { 2799L, 2471L, (short)4, "https://cdn.statically.io/gh/BPower0036/AdBlockFilters/main/easydutch.txt" }, - { 2800L, 2471L, (short)5, "https://cdn.statically.io/gl/BPower0036/AdBlockFilters/main/easydutch.txt" }, - { 2801L, 2471L, (short)6, "https://cdn.jsdelivr.net/gh/BPower0036/AdBlockFilters@main/easydutch.txt" }, - { 2802L, 2520L, (short)2, "https://gitlab.com/BPower0036/AdBlockFilters/-/raw/main/dynamic rules" }, - { 2803L, 2520L, (short)3, "https://combinatronics.io/BPower0036/AdBlockfilters/main/dynamic rules" }, - { 2804L, 2520L, (short)4, "https://cdn.statically.io/gh/BPower0036/AdBlockfilters/main/dynamic rules" }, - { 2805L, 2520L, (short)5, "https://cdn.statically.io/gl/BPower0036/AdBlockFilters/main/dynamic rules" }, - { 2806L, 2520L, (short)6, "https://cdn.jsdelivr.net/gh/BPower0036/AdBlockfilters@main/dynamic rules" }, - { 2807L, 2521L, (short)2, "https://gitlab.com/BPower0036/AdBlockFilters/-/raw/main/my filters" }, - { 2808L, 2521L, (short)3, "https://combinatronics.io/BPower0036/AdBlockfilters/main/my filters" }, - { 2809L, 2521L, (short)4, "https://cdn.statically.io/gh/BPower0036/AdBlockfilters/main/my filters" }, - { 2810L, 2521L, (short)5, "https://cdn.statically.io/gl/BPower0036/AdBlockFilters/main/my filters" }, - { 2811L, 2521L, (short)6, "https://cdn.jsdelivr.net/gh/BPower0036/AdBlockfilters@main/my filters" } + { 2537L, 2752L, (short)1, "https://raw.githubusercontent.com/iam-py-test/my_filters_001/main/antimalware.txt" }, + { 2537L, 2756L, (short)2, "https://iam-py-test.github.io/my_filters_001/antimalware.txt" }, + { 2538L, 2753L, (short)1, "https://raw.githubusercontent.com/iam-py-test/my_filters_001/main/Alternative list formats/antimalware_hosts.txt" }, + { 2538L, 2757L, (short)2, "https://iam-py-test.github.io/my_filters_001/Alternative list formats/antimalware_hosts.txt" }, + { 2539L, 2758L, (short)1, "https://ammnt.app/filter.txt" }, + { 2540L, 2759L, (short)1, "https://raw.githubusercontent.com/AmmoniteFilter/TrilobiteFilter/main/filter.txt" }, + { 2541L, 2760L, (short)1, "https://raw.githubusercontent.com/iam-py-test/my_filters_001/main/Alternative list formats/antimalware_domains.txt" }, + { 2541L, 2761L, (short)2, "https://iam-py-test.github.io/my_filters_001/Alternative list formats/antimalware_domains.txt" }, + { 2542L, 2762L, (short)1, "https://raw.githubusercontent.com/AdguardTeam/AdguardFilters/master/AnnoyancesFilter/sections/subscriptions.txt" }, + { 2543L, 2763L, (short)1, "https://pfblockerlists.smallbusinesstech.net/hackerlist.txt" }, + { 2544L, 2764L, (short)1, "https://pfblockerlists.smallbusinesstech.net/spamlist.txt" }, + { 2545L, 2765L, (short)1, "https://raw.githubusercontent.com/nextdns/metadata/master/privacy/affiliate-tracking-domains" }, + { 2546L, 2766L, (short)1, "https://raw.githubusercontent.com/deep-bhatt/huawei-block-list/master/huawei-block-host.txt" }, + { 2547L, 2767L, (short)1, "https://raw.githubusercontent.com/wesbos/burner-email-providers/master/emails.txt" }, + { 2548L, 2768L, (short)1, "https://kriskintel.com/feeds/ktip_ransomware_feeds.txt" }, + { 2549L, 2769L, (short)1, "https://raw.githubusercontent.com/brijrajparmar27/host-sources/master/Porn/hosts" }, + { 2550L, 2770L, (short)1, "https://raw.githubusercontent.com/Zelo72/adguard/main/whitelist.referral.adguard" }, + { 2551L, 2771L, (short)1, "https://github.com/stamparm/maltrail/blob/master/trails/static/suspicious/i2p.txt" }, + { 2552L, 2772L, (short)1, "https://github.com/stamparm/maltrail/blob/master/trails/static/suspicious/ipinfo.txt" }, + { 2553L, 2773L, (short)1, "https://github.com/stamparm/maltrail/blob/master/trails/static/suspicious/parking_site.txt" }, + { 2554L, 2774L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/DeadServerGamePingList.txt" }, + { 2554L, 2775L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/DeadServerGamePingList.txt" }, + { 2555L, 2776L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/TabloidRemover-MastodonCategoryForImports.csv" }, + { 2555L, 2777L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/Sensitive lists/TabloidRemover-MastodonCategoryForImports.csv" }, + { 2556L, 2778L, (short)1, "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/ClearURLs for uBo/clear_urls_uboified.txt" }, + { 2556L, 2779L, (short)2, "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/ClearURLs for uBo/clear_urls_uboified.txt" }, + { 2556L, 2787L, (short)3, "https://codeberg.org/rusty-snake/firefox-config/src/branch/main/assets/uBlockOrigin:queryprune.txt" }, + { 2557L, 2780L, (short)1, "https://raw.githubusercontent.com/scafroglia93/blocklists/master/blocklists-malware-traffic.txt" }, + { 2558L, 2781L, (short)1, "https://raw.githubusercontent.com/Knuschberkeks/Knuschberblock/main/Knuschberblock.txt" }, + { 2559L, 2782L, (short)1, "https://raw.githubusercontent.com/huzunluartemis/TurkishAdblockList/main/src/HostsList.txt" }, + { 2560L, 2783L, (short)1, "https://raw.githubusercontent.com/huzunluartemis/TurkishAdblockList/main/src/ElementalList.txt" }, + { 2561L, 2784L, (short)1, "https://raw.githubusercontent.com/huzunluartemis/TurkishAdblockList/main/src/BadIpList.txt" }, + { 2562L, 2785L, (short)1, "https://raw.githubusercontent.com/furkun/AndroidSecurityHosts/main/hosts" }, + { 2563L, 2786L, (short)1, "https://raw.githubusercontent.com/furkun/AndroidSecurityHosts/main/domains.txt" }, + { 2564L, 2788L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/PCCassets/main/plCDB.txt" }, + { 2564L, 2789L, (short)2, "https://cdn.jsdelivr.net/gh/FiltersHeroes/PCCassets@main/plCDB.txt" }, + { 2564L, 2790L, (short)3, "https://combinatronics.io/FiltersHeroes/PCCassets/main/plCDB.txt" }, + { 2564L, 2791L, (short)4, "https://cdn.statically.io/gh/FiltersHeroes/PCCassets/main/plCDB.txt" }, + { 2564L, 2792L, (short)5, "https://filtersheroes.gitlab.io/AssetsMirror/plCDB.txt" }, + { 2565L, 2793L, (short)1, "https://raw.githubusercontent.com/FiltersHeroes/PCCassets/main/euCDB.txt" }, + { 2565L, 2794L, (short)2, "https://cdn.jsdelivr.net/gh/FiltersHeroes/PCCassets@main/euCDB.txt" }, + { 2565L, 2795L, (short)3, "https://combinatronics.io/FiltersHeroes/PCCassets/main/euCDB.txt" }, + { 2565L, 2796L, (short)4, "https://cdn.statically.io/gh/FiltersHeroes/PCCassets/main/euCDB.txt" }, + { 2565L, 2797L, (short)5, "https://filtersheroes.gitlab.io/AssetsMirror/euCDB.txt" } }); migrationBuilder.InsertData( @@ -52236,13388 +52236,13388 @@ protected override void Down(MigrationBuilder migrationBuilder) migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1L, 1L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2L, 2L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 3L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 3L, 3L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 4L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 4L, 4L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 5L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 4L, 5L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 6L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 4L, 6L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 7L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 5L, 7L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 8L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 6L, 8L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 9L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 6L, 9L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 10L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 6L, 10L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 11L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 10L, 11L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 12L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 11L, 12L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 13L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 12L, 13L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 14L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 13L, 14L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 15L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 14L, 15L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 16L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 16L, 16L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 17L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 17L, 17L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 18L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 17L, 18L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 19L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 17L, 19L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 20L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 18L, 20L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 21L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 18L, 21L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 22L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 18L, 22L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 23L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 19L, 23L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 24L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 19L, 24L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 25L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 19L, 25L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 26L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 20L, 26L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 27L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 20L, 27L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 28L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 27L, 28L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 29L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 27L, 29L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 30L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 27L, 30L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 31L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 28L, 31L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 32L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 28L, 32L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 33L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 28L, 33L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 34L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 29L, 34L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 35L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 29L, 35L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 36L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 29L, 36L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 37L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 30L, 37L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 38L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 30L, 38L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 39L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 30L, 39L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 40L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 31L, 40L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 41L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 32L, 41L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 42L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 33L, 42L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 43L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 33L, 43L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 44L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 33L, 44L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 45L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 34L, 45L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 46L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 36L, 46L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 47L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 36L, 47L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 48L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 36L, 48L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 49L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 38L, 49L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 50L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 38L, 50L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 51L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 38L, 51L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 52L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 39L, 52L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 53L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 47L, 53L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 54L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 47L, 54L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 55L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 49L, 55L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 56L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 50L, 56L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 57L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 50L, 57L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 58L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 50L, 58L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 59L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 51L, 59L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 60L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 51L, 60L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 61L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 51L, 61L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 62L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 52L, 62L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 63L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 53L, 63L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 64L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 53L, 64L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 65L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 54L, 65L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 66L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 56L, 66L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 67L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 59L, 67L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 68L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 59L, 68L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 69L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 59L, 69L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 70L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 60L, 70L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 71L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 60L, 71L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 72L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 60L, 72L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 73L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 61L, 73L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 74L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 61L, 74L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 75L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 61L, 75L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 76L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 62L, 76L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 77L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 63L, 77L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 78L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 64L, 78L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 79L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 64L, 79L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 80L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 64L, 80L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 81L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 65L, 81L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 82L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 65L, 82L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 83L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 65L, 83L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 84L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 66L, 84L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 85L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 67L, 85L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 86L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 67L, 86L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 87L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 67L, 87L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 88L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 68L, 88L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 89L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 68L, 89L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 90L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 68L, 90L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 91L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 69L, 91L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 92L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 70L, 92L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 93L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 70L, 93L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 94L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 70L, 94L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 95L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 71L, 95L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 96L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 72L, 96L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 97L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 72L, 97L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 98L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 72L, 98L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 99L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 78L, 99L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 100L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 78L, 100L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 101L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 78L, 101L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 102L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 79L, 102L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 103L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 79L, 103L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 104L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 79L, 104L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 105L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 80L, 105L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 106L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 80L, 106L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 107L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 80L, 107L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 108L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 81L, 108L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 109L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 81L, 109L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 110L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 81L, 110L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 111L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 82L, 111L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 112L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 82L, 112L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 113L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 82L, 113L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 114L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 83L, 114L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 115L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 83L, 115L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 116L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 84L, 116L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 117L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 84L, 117L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 118L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 84L, 118L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 119L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 85L, 119L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 120L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 85L, 120L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 121L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 85L, 121L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 122L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 86L, 122L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 123L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 86L, 123L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 124L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 86L, 124L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 125L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 87L, 125L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 126L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 87L, 126L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 127L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 87L, 127L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 128L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 88L, 128L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 129L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 88L, 129L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 130L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 88L, 130L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 131L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 89L, 131L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 132L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 89L, 132L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 133L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 89L, 133L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 137L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 91L, 137L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 138L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 91L, 138L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 139L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 91L, 139L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 140L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 93L, 140L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 141L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 93L, 141L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 142L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 93L, 142L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 143L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 94L, 143L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 144L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 95L, 144L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 145L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 95L, 145L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 146L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 95L, 146L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 147L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 96L, 147L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 148L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 96L, 148L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 149L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 96L, 149L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 151L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 97L, 151L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 153L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 98L, 153L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 154L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 99L, 154L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 155L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 99L, 155L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 156L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 99L, 156L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 157L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 100L, 157L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 158L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 100L, 158L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 159L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 100L, 159L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 160L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 101L, 160L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 161L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 101L, 161L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 162L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 101L, 162L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 163L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 102L, 163L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 164L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 102L, 164L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 165L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 102L, 165L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 166L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 103L, 166L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 167L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 103L, 167L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 168L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 103L, 168L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 169L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 104L, 169L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 170L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 104L, 170L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 171L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 104L, 171L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 172L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 105L, 172L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 173L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 105L, 173L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 174L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 105L, 174L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 175L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 106L, 175L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 176L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 106L, 176L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 177L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 106L, 177L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 178L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 107L, 178L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 179L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 107L, 179L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 180L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 107L, 180L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 181L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 108L, 181L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 182L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 108L, 182L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 183L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 108L, 183L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 184L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 109L, 184L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 185L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 109L, 185L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 186L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 109L, 186L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 187L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 110L, 187L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 188L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 110L, 188L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 189L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 110L, 189L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 190L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 111L, 190L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 191L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 111L, 191L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 192L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 111L, 192L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 193L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 112L, 193L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 194L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 112L, 194L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 195L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 112L, 195L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 196L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 113L, 196L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 197L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 114L, 197L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 198L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 114L, 198L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 199L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 114L, 199L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 200L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 115L, 200L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 201L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 116L, 201L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 202L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 117L, 202L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 203L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 118L, 203L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 204L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 119L, 204L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 205L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 119L, 205L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 206L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 119L, 206L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 207L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 131L, 207L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 208L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 132L, 208L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 209L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 133L, 209L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 210L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 134L, 210L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 211L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 135L, 211L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 212L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 136L, 212L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 213L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 136L, 213L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 214L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 136L, 214L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 215L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 137L, 215L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 216L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 137L, 216L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 217L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 137L, 217L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 221L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 139L, 221L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 222L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 139L, 222L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 223L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 139L, 223L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 224L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 140L, 224L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 225L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 140L, 225L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 226L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 140L, 226L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 227L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 141L, 227L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 228L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 142L, 228L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 229L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 143L, 229L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 230L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 144L, 230L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 231L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 145L, 231L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 232L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 146L, 232L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 233L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 147L, 233L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 234L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 147L, 234L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 235L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 150L, 235L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 236L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 151L, 236L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 237L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 152L, 237L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 238L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 155L, 238L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 239L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 156L, 239L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 240L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 157L, 240L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 241L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 158L, 241L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 242L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 159L, 242L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 243L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 160L, 243L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 244L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 161L, 244L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 245L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 162L, 245L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 246L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 163L, 246L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 247L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 164L, 247L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 248L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 165L, 248L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 249L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 166L, 249L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 250L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 167L, 250L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 251L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 168L, 251L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 252L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 169L, 252L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 253L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 170L, 253L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 254L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 171L, 254L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 255L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 173L, 255L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 256L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 175L, 256L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 257L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 175L, 257L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 258L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 175L, 258L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 259L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 176L, 259L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 260L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 176L, 260L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 261L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 176L, 261L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 262L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 177L, 262L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 263L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 178L, 263L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 264L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 178L, 264L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 265L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 178L, 265L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 266L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 179L, 266L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 267L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 181L, 267L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 268L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 181L, 268L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 269L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 183L, 269L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 270L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 183L, 270L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 271L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 183L, 271L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 272L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 184L, 272L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 273L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 185L, 273L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 274L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 186L, 274L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 275L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 186L, 275L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 276L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 187L, 276L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 277L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 187L, 277L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 278L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 188L, 278L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 279L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 189L, 279L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 280L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 190L, 280L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 281L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 190L, 281L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 282L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 190L, 282L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 283L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 191L, 283L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 284L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 191L, 284L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 285L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 191L, 285L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 286L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 192L, 286L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 287L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 192L, 287L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 288L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 192L, 288L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 289L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 197L, 289L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 290L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 198L, 290L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 291L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 198L, 291L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 292L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 198L, 292L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 293L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 198L, 2580L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 294L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 199L, 293L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 295L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 199L, 294L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 296L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 199L, 295L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 297L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 200L, 296L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 298L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 200L, 297L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 299L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 200L, 298L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 300L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 201L, 299L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 301L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 201L, 300L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 302L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 201L, 301L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 303L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 202L, 302L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 304L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 202L, 303L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 305L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 202L, 304L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 306L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 203L, 305L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 307L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 203L, 306L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 308L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 203L, 307L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 309L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 204L, 308L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 310L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 204L, 309L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 311L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 204L, 310L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 312L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 205L, 311L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 313L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 205L, 312L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 314L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 205L, 313L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 315L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 206L, 314L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 316L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 206L, 315L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 317L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 206L, 316L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 318L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 207L, 317L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 319L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 207L, 318L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 320L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 207L, 319L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 321L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 212L, 320L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 322L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 212L, 321L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 323L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 212L, 322L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 324L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 213L, 323L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 325L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 213L, 324L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 326L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 213L, 325L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 327L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 214L, 326L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 328L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 214L, 2595L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 329L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 215L, 327L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 330L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 215L, 328L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 331L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 215L, 329L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 332L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 216L, 330L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 333L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 216L, 331L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 334L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 216L, 332L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 335L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 217L, 333L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 336L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 220L, 334L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 337L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 221L, 335L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 338L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 222L, 336L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 339L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 222L, 337L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 340L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 222L, 338L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 341L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 223L, 339L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 342L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 223L, 340L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 343L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 223L, 341L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 344L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 224L, 342L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 345L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 224L, 343L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 346L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 224L, 344L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 347L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 225L, 345L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 348L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 226L, 346L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 349L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 227L, 347L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 351L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 228L, 348L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 352L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 228L, 349L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 354L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 229L, 351L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 355L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 232L, 352L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 356L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 233L, 354L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 358L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 234L, 355L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 360L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 234L, 356L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 361L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 235L, 358L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 362L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 236L, 360L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 363L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 237L, 361L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 364L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 238L, 362L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 365L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 239L, 363L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 366L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 240L, 364L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 367L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 241L, 365L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 368L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 242L, 366L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 369L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 242L, 367L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 370L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 242L, 368L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 371L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 243L, 369L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 372L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 244L, 370L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 373L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 245L, 371L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 374L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 246L, 372L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 375L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 247L, 373L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 376L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 247L, 374L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 377L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 247L, 375L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 378L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 248L, 376L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 380L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 249L, 377L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 381L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 250L, 378L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 382L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 251L, 380L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 383L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 252L, 381L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 384L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 253L, 382L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 385L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 254L, 383L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 386L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 255L, 384L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 387L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 256L, 385L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 388L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 257L, 386L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 389L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 258L, 387L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 390L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 259L, 388L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 391L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 259L, 389L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 392L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 260L, 390L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 393L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 261L, 391L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 394L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 262L, 392L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 395L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 263L, 393L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 396L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 264L, 394L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 397L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 265L, 395L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 398L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 266L, 396L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 399L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 267L, 397L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 400L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 268L, 398L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 403L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 268L, 399L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 404L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 269L, 400L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 405L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 272L, 403L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 406L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 274L, 404L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 407L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 275L, 405L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 408L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 276L, 406L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 409L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 276L, 407L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 410L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 277L, 408L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 411L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 278L, 409L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 412L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 279L, 410L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 413L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 280L, 411L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 414L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 281L, 412L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 415L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 281L, 413L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 416L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 282L, 414L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 417L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 283L, 415L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 422L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 284L, 416L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 424L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 285L, 417L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 425L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 288L, 422L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 426L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 289L, 424L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 427L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 290L, 425L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 428L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 291L, 426L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 429L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 292L, 427L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 430L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 293L, 428L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 431L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 293L, 429L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 432L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 294L, 430L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 433L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 295L, 431L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 434L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 297L, 432L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 435L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 298L, 433L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 436L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 299L, 434L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 437L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 300L, 435L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 438L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 301L, 436L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 439L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 301L, 437L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 442L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 301L, 438L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 444L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 301L, 2750L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 445L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 302L, 439L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 446L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 305L, 442L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 447L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 306L, 444L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 448L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 307L, 445L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 449L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 308L, 446L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 450L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 309L, 447L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 451L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 311L, 448L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 452L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 312L, 449L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 453L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 313L, 450L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 454L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 315L, 451L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 455L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 316L, 452L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 456L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 317L, 453L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 457L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 318L, 454L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 458L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 319L, 455L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 459L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 320L, 456L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 460L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 321L, 457L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 461L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 322L, 458L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 462L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 323L, 459L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 463L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 324L, 460L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 464L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 325L, 461L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 465L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 327L, 462L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 466L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 327L, 463L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 467L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 329L, 464L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 468L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 330L, 465L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 469L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 330L, 466L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 470L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 331L, 467L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 471L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 331L, 468L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 472L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 332L, 469L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 473L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 333L, 470L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 474L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 334L, 471L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 475L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 335L, 472L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 476L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 336L, 473L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 477L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 337L, 474L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 478L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 338L, 475L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 480L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 339L, 476L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 482L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 340L, 477L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 483L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 341L, 478L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 484L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 343L, 480L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 485L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 345L, 482L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 486L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 346L, 483L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 487L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 347L, 484L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 488L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 348L, 485L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 489L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 349L, 486L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 490L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 349L, 487L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 491L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 349L, 488L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 492L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 350L, 489L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 493L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 352L, 490L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 494L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 353L, 491L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 495L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 354L, 492L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 496L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 355L, 493L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 497L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 356L, 494L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 498L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 357L, 495L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 499L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 358L, 496L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 500L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 359L, 497L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 501L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 360L, 498L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 502L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 361L, 499L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 503L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 362L, 500L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 504L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 363L, 501L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 505L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 367L, 502L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 506L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 368L, 503L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 507L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 369L, 504L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 508L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 370L, 505L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 509L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 371L, 506L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 510L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 372L, 507L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 511L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 373L, 508L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 512L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 374L, 509L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 513L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 375L, 510L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 514L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 376L, 511L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 515L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 377L, 512L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 516L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 378L, 513L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 517L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 379L, 514L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 518L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 380L, 515L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 519L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 381L, 516L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 520L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 383L, 517L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 521L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 385L, 518L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 522L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 385L, 519L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 523L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 388L, 520L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 524L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 388L, 521L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 525L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 390L, 522L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 526L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 391L, 523L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 527L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 391L, 524L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 528L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 392L, 525L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 529L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 392L, 526L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 530L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 393L, 527L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 531L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 393L, 528L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 532L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 395L, 529L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 533L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 396L, 530L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 534L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 397L, 531L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 535L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 398L, 532L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 536L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 399L, 533L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 537L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 399L, 534L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 538L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 400L, 535L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 539L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 401L, 536L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 540L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 403L, 537L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 541L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 403L, 538L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 542L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 405L, 539L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 543L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 410L, 540L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 544L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 412L, 541L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 545L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 413L, 542L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 546L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 414L, 543L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 547L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 415L, 544L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 548L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 416L, 545L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 549L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 417L, 546L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 550L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 418L, 547L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 551L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 419L, 548L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 552L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 420L, 549L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 553L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 421L, 550L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 554L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 422L, 551L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 555L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 424L, 552L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 556L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 425L, 553L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 557L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 426L, 554L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 558L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 427L, 555L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 559L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 428L, 556L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 560L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 429L, 557L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 561L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 430L, 558L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 562L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 430L, 559L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 563L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 431L, 560L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 564L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 431L, 561L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 565L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 432L, 562L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 566L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 432L, 563L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 567L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 433L, 564L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 568L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 433L, 565L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 569L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 434L, 566L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 570L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 434L, 567L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 571L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 435L, 568L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 572L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 435L, 569L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 573L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 436L, 570L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 574L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 436L, 571L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 575L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 437L, 572L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 576L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 438L, 573L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 577L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 439L, 574L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 578L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 440L, 575L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 579L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 441L, 576L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 580L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 442L, 577L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 581L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 445L, 578L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 582L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 446L, 579L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 583L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 447L, 580L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 584L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 448L, 581L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 585L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 449L, 582L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 586L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 450L, 583L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 587L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 451L, 584L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 588L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 465L, 585L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 589L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 465L, 586L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 590L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 467L, 587L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 591L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 468L, 588L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 592L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 469L, 589L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 593L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 470L, 590L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 594L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 471L, 591L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 595L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 472L, 592L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 596L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 473L, 593L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 597L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 474L, 594L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 598L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 475L, 595L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 599L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 476L, 596L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 600L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 477L, 597L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 601L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 478L, 598L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 602L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 479L, 599L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 603L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 480L, 600L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 604L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 481L, 601L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 605L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 482L, 602L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 606L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 482L, 603L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 607L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 483L, 604L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 608L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 484L, 605L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 609L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 485L, 606L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 610L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 486L, 607L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 611L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 487L, 608L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 612L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 490L, 609L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 613L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 491L, 610L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 614L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 492L, 611L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 615L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 493L, 612L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 616L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 494L, 613L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 617L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 495L, 614L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 618L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 496L, 615L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 619L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 504L, 616L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 620L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 504L, 617L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 621L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 505L, 618L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 623L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 505L, 619L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 624L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 506L, 620L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 625L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 507L, 621L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 626L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 509L, 623L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 628L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 510L, 624L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 629L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 512L, 625L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 630L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 513L, 626L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 631L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 515L, 628L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 632L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 516L, 629L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 633L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 517L, 630L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 634L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 518L, 631L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 635L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 519L, 632L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 636L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 519L, 633L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 637L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 520L, 634L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 638L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 521L, 635L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 639L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 522L, 636L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 640L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 525L, 637L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 641L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 525L, 638L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 642L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 526L, 639L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 643L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 526L, 640L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 644L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 562L, 641L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 645L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 563L, 642L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 646L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 564L, 643L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 647L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 565L, 644L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 648L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 566L, 645L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 649L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 566L, 2596L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 650L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 569L, 646L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 651L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 570L, 647L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 652L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 573L, 648L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 653L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 574L, 649L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 654L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 575L, 650L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 655L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 583L, 651L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 656L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 585L, 652L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 657L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 586L, 653L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 658L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 589L, 654L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 659L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 590L, 655L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 660L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 591L, 656L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 661L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 592L, 657L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 662L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 593L, 658L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 663L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 595L, 659L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 664L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 596L, 660L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 665L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 598L, 661L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 666L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 599L, 662L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 667L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 600L, 663L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 668L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 601L, 664L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 669L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 601L, 665L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 670L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 602L, 666L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 671L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 602L, 667L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 672L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 603L, 668L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 673L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 603L, 669L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 674L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 604L, 670L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 675L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 605L, 671L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 676L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 606L, 672L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 677L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 607L, 673L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 678L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 608L, 674L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 679L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 609L, 675L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 680L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 610L, 676L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 681L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 611L, 677L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 682L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 612L, 678L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 683L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 613L, 679L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 684L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 614L, 680L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 685L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 616L, 681L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 686L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 617L, 682L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 687L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 617L, 683L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 688L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 618L, 684L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 689L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 618L, 685L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 690L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 619L, 686L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 691L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 625L, 687L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 692L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 626L, 688L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 693L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 628L, 689L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 694L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 630L, 690L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 695L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 631L, 691L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 696L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 631L, 692L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 697L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 632L, 693L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 698L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 658L, 694L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 699L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 659L, 695L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 700L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 660L, 696L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 701L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 661L, 697L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 702L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 663L, 698L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 703L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 664L, 699L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 704L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 665L, 700L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 705L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 666L, 701L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 706L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 667L, 702L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 707L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 668L, 703L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 708L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 669L, 704L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 709L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 670L, 705L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 710L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 670L, 706L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 711L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 671L, 707L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 712L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 672L, 708L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 713L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 673L, 709L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 714L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 674L, 710L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 715L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 675L, 711L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 716L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 676L, 712L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 717L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 677L, 713L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 718L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 678L, 714L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 719L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 679L, 715L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 720L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 680L, 716L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 721L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 680L, 717L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 724L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 681L, 718L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 725L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 682L, 719L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 726L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 683L, 720L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 727L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 684L, 721L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 728L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 686L, 724L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 729L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 687L, 725L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 730L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 689L, 726L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 731L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 690L, 727L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 732L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 691L, 728L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 733L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 692L, 729L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 734L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 693L, 730L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 735L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 694L, 731L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 736L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 696L, 732L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 737L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 697L, 733L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 738L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 698L, 734L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 739L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 699L, 735L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 740L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 700L, 736L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 741L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 703L, 737L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 742L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 704L, 738L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 743L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 705L, 739L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 744L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 706L, 740L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 745L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 707L, 741L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 746L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 708L, 742L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 747L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 709L, 743L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 748L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 710L, 744L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 750L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 710L, 745L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 751L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 711L, 746L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 752L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 712L, 747L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 753L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 715L, 748L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 754L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 717L, 750L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 755L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 718L, 751L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 756L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 719L, 752L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 757L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 720L, 753L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 758L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 721L, 754L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 759L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 722L, 755L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 760L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 723L, 756L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 761L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 724L, 757L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 762L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 726L, 758L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 763L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 726L, 759L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 764L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 728L, 760L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 765L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 729L, 761L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 766L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 729L, 762L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 767L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 729L, 763L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 769L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 730L, 764L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 770L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 730L, 765L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 771L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 730L, 766L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 772L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 731L, 767L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 773L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 734L, 769L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 774L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 734L, 770L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 775L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 735L, 771L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 776L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 735L, 772L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 777L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 736L, 773L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 778L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 743L, 774L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 779L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 744L, 775L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 780L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 746L, 776L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 781L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 747L, 777L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 782L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 747L, 778L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 783L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 748L, 779L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 784L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 749L, 780L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 785L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 750L, 781L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 786L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 751L, 782L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 787L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 752L, 783L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 788L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 753L, 784L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 789L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 754L, 785L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 790L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 755L, 786L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 791L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 756L, 787L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 792L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 757L, 788L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 793L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 758L, 789L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 794L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 759L, 790L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 795L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 760L, 791L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 796L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 761L, 792L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 797L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 762L, 793L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 798L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 763L, 794L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 799L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 764L, 795L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 800L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 765L, 796L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 801L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 766L, 797L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 802L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 767L, 798L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 803L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 769L, 799L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 804L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 770L, 800L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 805L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 772L, 801L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 806L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 773L, 802L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 807L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 774L, 803L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 808L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 775L, 804L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 809L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 776L, 805L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 810L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 777L, 806L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 811L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 778L, 807L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 812L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 779L, 808L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 813L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 780L, 809L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 814L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 781L, 810L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 815L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 782L, 811L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 816L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 783L, 812L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 817L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 784L, 813L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 818L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 785L, 814L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 819L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 786L, 815L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 820L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 787L, 816L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 821L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 788L, 817L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 822L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 789L, 818L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 823L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 790L, 819L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 824L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 791L, 820L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 825L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 792L, 821L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 826L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 793L, 822L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 827L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 794L, 823L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 828L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 795L, 824L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 829L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 796L, 825L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 830L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 797L, 826L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 831L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 798L, 827L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 832L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 799L, 828L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 833L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 800L, 829L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 834L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 801L, 830L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 835L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 802L, 831L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 836L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 803L, 832L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 837L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 804L, 833L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 838L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 805L, 834L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 839L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 806L, 835L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 840L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 807L, 836L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 841L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 808L, 837L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 842L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 809L, 838L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 843L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 809L, 839L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 844L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 810L, 840L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 845L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 811L, 841L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 846L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 812L, 842L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 847L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 813L, 843L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 848L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 814L, 844L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 849L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 815L, 845L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 850L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 816L, 846L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 851L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 816L, 847L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 852L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 817L, 848L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 854L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 817L, 849L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 855L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 818L, 850L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 856L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 819L, 851L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 857L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 819L, 852L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 858L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 821L, 854L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 859L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 822L, 855L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 860L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 823L, 856L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 861L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 824L, 857L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 862L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 825L, 858L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 863L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 826L, 859L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 864L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 827L, 860L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 865L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 828L, 861L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 866L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 829L, 862L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 867L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 830L, 863L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 868L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 831L, 864L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 869L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 832L, 865L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 870L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 833L, 866L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 872L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 834L, 867L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 873L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 835L, 868L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 874L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 836L, 869L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 875L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 837L, 870L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 876L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 839L, 872L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 877L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 840L, 873L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 878L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 841L, 874L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 879L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 842L, 875L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 880L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 843L, 876L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 881L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 843L, 877L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 882L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 844L, 878L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 883L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 844L, 879L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 884L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 845L, 880L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 885L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 845L, 881L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 886L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 846L, 882L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 887L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 846L, 883L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 888L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 847L, 884L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 889L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 848L, 885L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 890L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 848L, 886L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 891L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 850L, 887L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 892L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 850L, 888L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 893L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 851L, 889L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 894L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 851L, 890L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 895L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 852L, 891L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 896L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 852L, 892L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 897L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 853L, 893L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 898L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 853L, 894L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 899L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 855L, 895L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 900L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 855L, 896L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 904L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 856L, 897L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 905L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 856L, 898L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 906L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 857L, 899L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 907L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 857L, 900L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 908L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 859L, 904L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 909L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 859L, 905L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 910L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 860L, 906L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 911L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 860L, 907L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 912L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 860L, 908L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 913L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 861L, 909L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 914L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 862L, 910L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 915L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 862L, 911L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 918L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 863L, 912L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 919L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 863L, 913L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 920L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 866L, 914L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 921L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 866L, 915L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 922L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 868L, 918L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 923L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 869L, 919L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 924L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 870L, 920L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 925L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 871L, 921L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 926L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 872L, 922L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 927L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 873L, 923L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 928L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 874L, 924L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 929L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 875L, 925L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 930L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 876L, 926L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 931L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 877L, 927L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 932L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 878L, 928L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 933L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 879L, 929L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 934L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 881L, 930L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 935L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 882L, 931L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 936L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 884L, 932L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 937L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 885L, 933L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 938L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 886L, 934L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 939L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 887L, 935L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 940L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 888L, 936L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 941L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 889L, 937L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 942L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 890L, 938L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 943L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 891L, 939L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 944L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 892L, 940L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 945L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 893L, 941L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 946L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 894L, 942L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 947L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 895L, 943L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 948L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 896L, 944L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 949L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 897L, 945L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 950L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 898L, 946L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 951L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 899L, 947L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 952L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 900L, 948L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 953L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 901L, 949L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 954L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 902L, 950L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 955L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 903L, 951L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 956L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 904L, 952L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 957L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 905L, 953L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 958L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 906L, 954L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 959L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 907L, 955L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 960L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 908L, 956L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 961L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 909L, 957L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 962L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 910L, 958L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 963L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 911L, 959L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 964L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 912L, 960L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 965L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 913L, 961L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 966L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 914L, 962L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 967L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 915L, 963L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 968L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 916L, 964L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 969L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 917L, 965L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 970L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 918L, 966L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 971L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 919L, 967L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 972L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 920L, 968L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 973L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 921L, 969L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 974L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 922L, 970L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 975L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 923L, 971L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 976L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 924L, 972L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 977L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 925L, 973L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 978L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 926L, 974L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 979L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 927L, 975L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 980L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 928L, 976L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 981L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 929L, 977L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 982L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 930L, 978L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 983L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 931L, 979L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 984L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 932L, 980L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 985L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 933L, 981L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 986L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 934L, 982L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 987L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 935L, 983L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 988L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 936L, 984L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 989L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 937L, 985L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 990L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 938L, 986L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 991L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 939L, 987L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 992L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 940L, 988L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 993L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 941L, 989L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 994L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 942L, 990L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 995L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 943L, 991L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 996L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 944L, 992L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 997L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 945L, 993L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 998L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 946L, 994L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 999L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 947L, 995L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1000L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 948L, 996L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1001L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 949L, 997L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1002L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 950L, 998L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1003L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 951L, 999L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1004L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 952L, 1000L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1005L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 953L, 1001L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1006L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 954L, 1002L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1007L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 955L, 1003L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1008L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 956L, 1004L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1009L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 957L, 1005L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1010L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 958L, 1006L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1011L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 959L, 1007L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1012L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 960L, 1008L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1013L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 961L, 1009L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1014L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 962L, 1010L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1015L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 963L, 1011L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1016L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 964L, 1012L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1017L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 965L, 1013L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1018L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 966L, 1014L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1019L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 967L, 1015L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1020L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 968L, 1016L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1021L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 969L, 1017L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1022L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 970L, 1018L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1023L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 971L, 1019L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1024L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 972L, 1020L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1025L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 973L, 1021L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1026L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 974L, 1022L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1027L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 975L, 1023L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1028L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 976L, 1024L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1029L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 977L, 1025L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1030L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 978L, 1026L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1031L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 979L, 1027L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1032L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 980L, 1028L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1033L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 981L, 1029L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1034L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 982L, 1030L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1035L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 983L, 1031L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1036L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 984L, 1032L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1037L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 985L, 1033L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1038L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 986L, 1034L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1039L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 987L, 1035L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1040L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 988L, 1036L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1041L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 989L, 1037L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1042L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 990L, 1038L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1043L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 991L, 1039L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1044L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 992L, 1040L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1045L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 993L, 1041L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1046L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 994L, 1042L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1047L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 995L, 1043L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1048L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 996L, 1044L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1049L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 997L, 1045L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1050L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 998L, 1046L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1051L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 999L, 1047L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1052L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1000L, 1048L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1053L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1001L, 1049L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1054L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1002L, 1050L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1055L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1003L, 1051L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1056L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1004L, 1052L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1057L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1005L, 1053L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1058L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1006L, 1054L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1059L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1007L, 1055L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1060L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1008L, 1056L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1061L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1009L, 1057L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1062L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1010L, 1058L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1063L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1011L, 1059L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1064L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1012L, 1060L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1065L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1013L, 1061L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1066L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1014L, 1062L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1067L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1015L, 1063L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1068L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1016L, 1064L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1069L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1017L, 1065L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1070L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1018L, 1066L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1071L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1019L, 1067L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1072L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1020L, 1068L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1073L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1021L, 1069L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1074L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1022L, 1070L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1075L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1023L, 1071L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1076L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1024L, 1072L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1077L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1025L, 1073L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1078L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1026L, 1074L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1079L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1027L, 1075L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1080L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1028L, 1076L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1081L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1029L, 1077L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1082L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1030L, 1078L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1083L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1031L, 1079L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1084L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1032L, 1080L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1085L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1033L, 1081L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1086L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1034L, 1082L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1087L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1035L, 1083L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1088L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1036L, 1084L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1089L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1037L, 1085L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1090L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1038L, 1086L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1091L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1039L, 1087L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1092L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1040L, 1088L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1093L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1041L, 1089L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1094L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1042L, 1090L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1095L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1043L, 1091L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1096L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1044L, 1092L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1097L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1045L, 1093L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1098L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1047L, 1094L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1099L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1048L, 1095L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1100L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1049L, 1096L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1101L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1050L, 1097L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1102L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1051L, 1098L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1103L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1052L, 1099L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1104L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1053L, 1100L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1105L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1054L, 1101L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1106L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1055L, 1102L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1107L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1056L, 1103L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1108L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1057L, 1104L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1109L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1058L, 1105L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1110L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1059L, 1106L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1111L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1060L, 1107L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1112L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1061L, 1108L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1113L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1062L, 1109L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1114L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1063L, 1110L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1115L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1064L, 1111L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1116L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1065L, 1112L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1117L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1066L, 1113L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1118L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1067L, 1114L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1119L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1068L, 1115L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1120L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1069L, 1116L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1121L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1070L, 1117L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1122L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1071L, 1118L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1123L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1072L, 1119L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1124L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1073L, 1120L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1125L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1074L, 1121L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1126L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1075L, 1122L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1127L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1076L, 1123L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1128L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1077L, 1124L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1129L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1078L, 1125L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1130L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1079L, 1126L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1131L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1080L, 1127L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1132L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1081L, 1128L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1133L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1082L, 1129L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1134L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1083L, 1130L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1135L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1084L, 1131L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1136L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1085L, 1132L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1137L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1086L, 1133L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1138L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1087L, 1134L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1139L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1088L, 1135L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1140L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1089L, 1136L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1141L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1090L, 1137L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1142L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1091L, 1138L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1143L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1092L, 1139L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1144L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1093L, 1140L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1145L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1094L, 1141L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1146L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1095L, 1142L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1147L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1096L, 1143L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1148L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1097L, 1144L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1149L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1098L, 1145L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1150L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1099L, 1146L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1151L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1100L, 1147L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1152L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1101L, 1148L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1153L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1102L, 1149L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1154L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1103L, 1150L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1155L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1104L, 1151L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1156L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1105L, 1152L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1157L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1106L, 1153L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1158L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1107L, 1154L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1159L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1108L, 1155L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1160L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1109L, 1156L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1161L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1110L, 1157L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1162L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1111L, 1158L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1163L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1112L, 1159L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1164L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1113L, 1160L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1165L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1114L, 1161L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1166L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1115L, 1162L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1167L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1116L, 1163L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1168L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1117L, 1164L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1169L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1118L, 1165L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1170L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1119L, 1166L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1171L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1120L, 1167L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1173L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1121L, 1168L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1174L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1122L, 1169L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1175L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1123L, 1170L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1176L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1124L, 1171L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1177L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1126L, 1173L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1178L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1127L, 1174L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1179L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1128L, 1175L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1180L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1130L, 1176L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1181L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1133L, 1177L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1182L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1135L, 1178L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1183L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1139L, 1179L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1184L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1140L, 1180L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1185L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1141L, 1181L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1186L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1142L, 1182L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1187L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1143L, 1183L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1188L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1144L, 1184L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1189L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1146L, 1185L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1190L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1148L, 1186L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1191L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1149L, 1187L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1192L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1151L, 1188L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1193L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1152L, 1189L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1194L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1153L, 1190L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1195L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1154L, 1191L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1196L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1155L, 1192L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1197L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1156L, 1193L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1198L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1157L, 1194L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1199L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1158L, 1195L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1200L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1159L, 1196L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1201L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1160L, 1197L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1202L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1161L, 1198L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1203L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1162L, 1199L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1204L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1163L, 1200L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1205L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1164L, 1201L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1206L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1165L, 1202L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1207L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1166L, 1203L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1208L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1167L, 1204L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1209L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1168L, 1205L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1210L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1169L, 1206L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1211L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1172L, 1207L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1212L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1173L, 1208L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1213L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1174L, 1209L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1214L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1175L, 1210L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1215L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1176L, 1211L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1216L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1179L, 1212L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1217L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1180L, 1213L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1218L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1182L, 1214L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1219L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1183L, 1215L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1220L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1184L, 1216L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1221L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1185L, 1217L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1222L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1187L, 1218L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1223L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1189L, 1219L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1224L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1190L, 1220L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1225L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1191L, 1221L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1226L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1192L, 1222L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1227L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1193L, 1223L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1228L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1194L, 1224L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1229L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1196L, 1225L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1230L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1197L, 1226L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1231L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1199L, 1227L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1232L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1202L, 1228L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1233L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1203L, 1229L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1234L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1204L, 1230L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1235L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1205L, 1231L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1236L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1206L, 1232L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1237L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1207L, 1233L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1238L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1209L, 1234L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1239L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1210L, 1235L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1240L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1211L, 1236L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1241L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1212L, 1237L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1242L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1213L, 1238L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1243L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1214L, 1239L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1244L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1215L, 1240L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1245L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1216L, 1241L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1246L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1217L, 1242L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1247L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1218L, 1243L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1248L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1220L, 1244L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1249L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1221L, 1245L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1250L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1222L, 1246L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1251L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1223L, 1247L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1252L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1224L, 1248L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1253L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1225L, 1249L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1254L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1226L, 1250L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1264L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1227L, 1251L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1265L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1228L, 1252L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1266L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1229L, 1253L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1267L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1230L, 1254L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1268L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1243L, 1264L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1269L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1244L, 1265L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1270L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1245L, 1266L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1271L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1247L, 1267L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1272L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1247L, 1268L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1273L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1278L, 1269L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1274L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1279L, 1270L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1275L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1280L, 1271L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1276L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1281L, 1272L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1277L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1282L, 1273L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1278L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1283L, 1274L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1279L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1284L, 1275L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1280L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1285L, 1276L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1281L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1286L, 1277L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1282L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1288L, 1278L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1283L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1288L, 1279L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1284L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1289L, 1280L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1285L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1289L, 1281L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1286L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1290L, 1282L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1287L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1290L, 1283L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1288L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1291L, 1284L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1289L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1291L, 1285L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1290L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1292L, 1286L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1291L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1292L, 1287L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1292L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1293L, 1288L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1293L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1293L, 1289L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1294L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1294L, 1290L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1295L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1295L, 1291L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1296L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1295L, 1292L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1297L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1295L, 1293L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1298L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1296L, 1294L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1299L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1296L, 1295L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1300L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1296L, 1296L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1301L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1297L, 1297L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1302L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1298L, 1298L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1303L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1299L, 1299L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1304L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1299L, 1300L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1305L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1300L, 1301L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1306L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1301L, 1302L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1307L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1301L, 1303L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1308L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1302L, 1304L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1309L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1302L, 1305L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1310L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1303L, 1306L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1311L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1303L, 1307L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1312L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1304L, 1308L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1313L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1304L, 1309L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1314L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1305L, 1310L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1315L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1306L, 1311L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1316L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1307L, 1312L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1317L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1308L, 1313L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1318L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1309L, 1314L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1319L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1310L, 1315L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1320L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1311L, 1316L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1321L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1312L, 1317L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1322L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1313L, 1318L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1323L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1314L, 1319L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1324L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1315L, 1320L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1325L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1316L, 1321L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1326L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1317L, 1322L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1327L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1318L, 1323L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1328L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1319L, 1324L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1329L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1320L, 1325L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1330L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1321L, 1326L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1331L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1322L, 1327L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1332L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1323L, 1328L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1333L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1324L, 1329L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1334L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1325L, 1330L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1335L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1326L, 1331L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1336L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1327L, 1332L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1337L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1328L, 1333L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1338L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1329L, 1334L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1339L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1330L, 1335L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1340L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1331L, 1336L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1341L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1332L, 1337L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1342L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1333L, 1338L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1343L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1334L, 1339L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1344L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1335L, 1340L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1345L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1336L, 1341L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1346L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1337L, 1342L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1347L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1338L, 1343L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1348L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1339L, 1344L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1349L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1340L, 1345L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1350L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1341L, 1346L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1351L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1342L, 1347L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1352L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1343L, 1348L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1353L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1344L, 1349L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1354L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1345L, 1350L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1355L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1346L, 1351L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1356L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1347L, 1352L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1357L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1348L, 1353L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1358L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1349L, 1354L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1359L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1350L, 1355L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1360L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1351L, 1356L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1361L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1352L, 1357L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1362L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1353L, 1358L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1363L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1354L, 1359L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1364L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1355L, 1360L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1365L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1356L, 1361L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1366L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1357L, 1362L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1367L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1358L, 1363L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1368L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1359L, 1364L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1369L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1360L, 1365L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1370L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1361L, 1366L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1371L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1362L, 1367L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1372L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1363L, 1368L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1373L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1364L, 1369L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1374L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1365L, 1370L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1375L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1366L, 1371L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1376L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1367L, 1372L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1377L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1368L, 1373L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1378L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1369L, 1374L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1379L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1370L, 1375L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1380L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1371L, 1376L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1381L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1372L, 1377L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1382L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1373L, 1378L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1383L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1374L, 1379L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1384L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1375L, 1380L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1385L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1376L, 1381L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1386L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1377L, 1382L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1387L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1378L, 1383L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1388L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1379L, 1384L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1389L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1380L, 1385L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1390L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1381L, 1386L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1391L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1382L, 1387L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1392L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1383L, 1388L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1393L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1384L, 1389L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1394L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1385L, 1390L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1395L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1386L, 1391L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1396L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1387L, 1392L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1397L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1388L, 1393L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1398L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1389L, 1394L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1399L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1390L, 1395L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1400L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1391L, 1396L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1401L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1392L, 1397L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1402L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1393L, 1398L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1403L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1394L, 1399L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1404L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1395L, 1400L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1405L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1396L, 1401L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1406L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1397L, 1402L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1407L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1398L, 1403L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1408L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1399L, 1404L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1409L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1400L, 1405L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1410L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1401L, 1406L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1411L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1402L, 1407L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1412L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1403L, 1408L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1413L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1404L, 1409L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1414L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1405L, 1410L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1415L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1406L, 1411L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1416L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1407L, 1412L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1417L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1408L, 1413L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1418L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1409L, 1414L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1419L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1410L, 1415L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1420L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1411L, 1416L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1421L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1412L, 1417L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1422L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1413L, 1418L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1423L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1414L, 1419L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1424L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1415L, 1420L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1425L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1416L, 1421L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1426L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1417L, 1422L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1427L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1418L, 1423L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1428L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1419L, 1424L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1429L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1420L, 1425L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1430L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1421L, 1426L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1431L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1422L, 1427L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1432L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1423L, 1428L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1433L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1424L, 1429L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1434L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1425L, 1430L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1435L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1426L, 1431L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1436L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1427L, 1432L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1437L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1428L, 1433L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1438L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1429L, 1434L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1439L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1430L, 1435L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1440L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1431L, 1436L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1441L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1432L, 1437L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1442L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1433L, 1438L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1443L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1434L, 1439L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1444L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1435L, 1440L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1445L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1436L, 1441L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1446L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1437L, 1442L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1447L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1438L, 1443L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1448L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1439L, 1444L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1449L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1440L, 1445L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1450L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1441L, 1446L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1451L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1442L, 1447L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1452L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1443L, 1448L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1453L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1444L, 1449L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1454L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1445L, 1450L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1455L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1446L, 1451L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1456L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1447L, 1452L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1457L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1448L, 1453L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1458L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1449L, 1454L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1459L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1450L, 1455L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1460L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1451L, 1456L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1461L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1452L, 1457L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1462L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1454L, 1458L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1463L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1454L, 1459L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1464L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1455L, 1460L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1465L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1455L, 1461L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1466L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1456L, 1462L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1467L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1456L, 1463L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1468L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1457L, 1464L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1469L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1458L, 1465L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1470L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1459L, 1466L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1471L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1459L, 1467L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1472L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1460L, 1468L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1473L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1460L, 1469L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1474L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1461L, 1470L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1475L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1461L, 1471L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1476L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1463L, 1472L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1477L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1464L, 1473L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1478L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1465L, 1474L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1479L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1466L, 1475L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1480L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1467L, 1476L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1481L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1468L, 1477L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1482L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1469L, 1478L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1483L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1470L, 1479L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1486L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1471L, 1480L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1487L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1473L, 1481L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1488L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1473L, 1482L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1489L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1474L, 1483L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1492L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1477L, 1486L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1493L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1478L, 1487L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1494L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1479L, 1488L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1495L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1480L, 1489L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1496L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1484L, 1492L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1497L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1485L, 1493L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1498L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1486L, 1494L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1499L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1487L, 1495L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1500L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1490L, 1496L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1501L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1492L, 1497L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1502L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1493L, 1498L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1503L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1494L, 1499L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1504L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1495L, 1500L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1505L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1496L, 1501L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1506L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1497L, 1502L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1507L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1498L, 1503L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1508L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1499L, 1504L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1509L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1500L, 1505L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1510L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1501L, 1506L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1511L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1502L, 1507L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1512L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1503L, 1508L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1513L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1504L, 1509L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1514L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1505L, 1510L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1515L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1506L, 1511L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1516L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1507L, 1512L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1518L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1508L, 1513L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1519L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1509L, 1514L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1520L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1510L, 1515L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1521L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1511L, 1516L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1522L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1513L, 1518L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1523L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1517L, 1519L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1524L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1520L, 1520L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1525L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1523L, 1521L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1527L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1524L, 1522L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1528L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1525L, 1523L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1529L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1526L, 1524L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1530L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1527L, 1525L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1531L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1529L, 1527L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1532L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1530L, 1528L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1533L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1531L, 1529L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1534L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1532L, 1530L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1535L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1533L, 1531L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1536L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1534L, 1532L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1537L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1535L, 1533L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1538L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1535L, 1534L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1539L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1536L, 1535L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1540L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1537L, 1536L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1542L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1538L, 1537L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1543L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1539L, 1538L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1544L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1540L, 1539L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1545L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1541L, 1540L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1546L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1543L, 1542L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1547L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1544L, 1543L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1548L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1545L, 1544L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1549L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1546L, 1545L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1550L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1547L, 1546L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1551L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1548L, 1547L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1552L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1549L, 1548L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1553L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1550L, 1549L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1554L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1550L, 1550L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1555L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1551L, 1551L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1556L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1551L, 1552L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1557L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1552L, 1553L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1558L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1552L, 1554L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1559L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1554L, 1555L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1560L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1554L, 1556L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1561L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1555L, 1557L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1562L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1556L, 1558L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1563L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1557L, 1559L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1564L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1558L, 1560L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1566L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1559L, 1561L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1567L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1560L, 1562L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1570L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1561L, 1563L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1571L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1562L, 1564L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1572L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1564L, 1566L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1573L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1564L, 1567L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1574L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1566L, 1570L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1575L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1567L, 1571L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1576L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1568L, 1572L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1577L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1569L, 1573L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1578L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1570L, 1574L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1579L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1573L, 1575L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1580L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1574L, 1576L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1581L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1575L, 1577L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1582L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1575L, 1578L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1583L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1576L, 1579L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1584L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1576L, 1580L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1585L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1577L, 1581L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1586L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1578L, 1582L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1587L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1579L, 1583L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1588L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1579L, 1584L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1589L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1581L, 1585L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1590L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1581L, 1586L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1591L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1582L, 1587L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1592L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1582L, 1588L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1593L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1583L, 1589L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1594L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1583L, 1590L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1595L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1584L, 1591L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1596L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1584L, 1592L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1597L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1585L, 1593L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1598L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1585L, 1594L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1599L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1586L, 1595L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1600L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1586L, 1596L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1601L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1587L, 1597L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1602L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1587L, 1598L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1603L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1588L, 1599L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1604L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1588L, 1600L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1605L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1589L, 1601L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1606L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1589L, 1602L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1607L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1590L, 1603L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1608L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1590L, 1604L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1609L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1591L, 1605L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1610L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1591L, 1606L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1611L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1592L, 1607L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1612L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1592L, 1608L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1613L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1593L, 1609L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1614L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1593L, 1610L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1615L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1594L, 1611L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1616L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1595L, 1612L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1617L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1596L, 1613L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1618L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1597L, 1614L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1619L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1597L, 1615L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1620L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1597L, 1616L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1621L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1598L, 1617L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1622L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1598L, 1618L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1623L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1598L, 1619L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1624L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1599L, 1620L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1625L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1599L, 1621L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1626L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1599L, 1622L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1627L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1600L, 1623L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1628L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1600L, 1624L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1629L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1600L, 1625L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1630L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1601L, 1626L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1631L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1603L, 1627L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1632L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1603L, 1628L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1633L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1603L, 1629L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1634L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1604L, 1630L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1635L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1604L, 1631L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1636L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1605L, 1632L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1637L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1605L, 1633L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1638L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1606L, 1634L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1639L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1606L, 1635L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1640L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1607L, 1636L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1641L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1608L, 1637L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1642L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1609L, 1638L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1643L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1610L, 1639L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1644L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1611L, 1640L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1645L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1612L, 1641L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1646L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1613L, 1642L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1647L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1614L, 1643L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1648L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1615L, 1644L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1649L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1616L, 1645L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1650L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1617L, 1646L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1651L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1618L, 1647L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1652L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1619L, 1648L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1653L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1620L, 1649L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1654L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1621L, 1650L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1655L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1622L, 1651L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1656L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1623L, 1652L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1657L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1624L, 1653L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1658L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1625L, 1654L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1659L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1626L, 1655L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1660L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1627L, 1656L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1661L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1628L, 1657L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1662L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1629L, 1658L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1663L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1630L, 1659L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1664L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1631L, 1660L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1665L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1632L, 1661L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1666L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1633L, 1662L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1667L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1634L, 1663L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1668L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1635L, 1664L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1669L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1635L, 1665L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1670L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1636L, 1666L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1671L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1636L, 1667L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1672L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1637L, 1668L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1673L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1637L, 1669L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1674L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1638L, 1670L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1675L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1639L, 1671L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1676L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1640L, 1672L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1677L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1641L, 1673L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1678L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1642L, 1674L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1679L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1642L, 1675L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1680L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1643L, 1676L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1681L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1643L, 1677L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1682L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1644L, 1678L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1683L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1645L, 1679L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1684L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1646L, 1680L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1685L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1647L, 1681L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1686L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1648L, 1682L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1687L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1649L, 1683L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1688L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1650L, 1684L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1689L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1651L, 1685L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1690L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1652L, 1686L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1691L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1653L, 1687L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1692L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1656L, 1688L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1693L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1657L, 1689L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1696L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1658L, 1690L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1697L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1659L, 1691L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1698L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1660L, 1692L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1699L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1661L, 1693L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1700L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1664L, 1696L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1701L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1665L, 1697L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1702L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1666L, 1698L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1703L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1667L, 1699L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1704L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1668L, 1700L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1705L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1669L, 1701L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1706L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1669L, 1702L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1707L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1670L, 1703L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1708L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1671L, 1704L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1709L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1672L, 1705L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1710L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1673L, 1706L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1711L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1673L, 1707L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1712L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1674L, 1708L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1713L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1674L, 1709L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1714L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1675L, 1710L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1715L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1675L, 1711L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1716L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1676L, 1712L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1717L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1676L, 1713L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1718L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1677L, 1714L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1719L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1677L, 1715L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1720L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1678L, 1716L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1721L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1678L, 1717L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1722L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1679L, 1718L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1723L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1679L, 1719L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1724L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1680L, 1720L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1725L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1680L, 1721L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1726L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1681L, 1722L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1727L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1681L, 1723L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1728L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1682L, 1724L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1729L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1682L, 1725L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1730L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1683L, 1726L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1731L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1683L, 1727L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1732L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1684L, 1728L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1733L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1684L, 1729L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1734L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1685L, 1730L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1735L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1685L, 1731L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1736L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1686L, 1732L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1737L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1686L, 1733L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1738L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1687L, 1734L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1739L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1687L, 1735L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1740L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1688L, 1736L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1741L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1688L, 1737L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1742L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1689L, 1738L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1743L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1689L, 1739L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1744L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1690L, 1740L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1745L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1690L, 1741L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1746L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1691L, 1742L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1747L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1691L, 1743L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1748L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1692L, 1744L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1749L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1692L, 1745L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1750L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1693L, 1746L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1751L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1693L, 1747L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1752L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1694L, 1748L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1753L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1694L, 1749L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1754L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1695L, 1750L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1755L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1695L, 1751L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1756L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1696L, 1752L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1757L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1696L, 1753L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1758L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1697L, 1754L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1759L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1697L, 1755L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1760L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1698L, 1756L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1761L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1698L, 1757L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1762L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1699L, 1758L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1763L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1699L, 1759L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1764L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1700L, 1760L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1765L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1700L, 1761L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1766L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1701L, 1762L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1767L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1702L, 1763L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1768L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1703L, 1764L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1769L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1704L, 1765L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1770L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1706L, 1766L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1771L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1707L, 1767L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1772L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1708L, 1768L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1773L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1709L, 1769L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1774L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1710L, 1770L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1775L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1711L, 1771L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1776L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1712L, 1772L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1777L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1713L, 1773L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1778L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1714L, 1774L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1779L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1715L, 1775L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1780L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1716L, 1776L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1781L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1717L, 1777L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1782L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1718L, 1778L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1783L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1719L, 1779L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1784L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1720L, 1780L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1785L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1721L, 1781L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1787L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1722L, 1782L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1788L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1723L, 1783L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1789L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1724L, 1784L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1790L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1725L, 1785L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1791L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1727L, 1787L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1792L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1728L, 1788L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1793L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1729L, 1789L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1794L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1730L, 1790L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1795L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1731L, 1791L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1796L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1732L, 1792L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1797L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1733L, 1793L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1798L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1734L, 1794L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1799L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1735L, 1795L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1800L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1736L, 1796L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1801L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1736L, 1797L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1802L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1737L, 1798L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1803L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1737L, 1799L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1804L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1738L, 1800L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1805L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1738L, 1801L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1806L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1739L, 1802L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1807L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1740L, 1803L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1808L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1741L, 1804L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1809L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1742L, 1805L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1810L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1743L, 1806L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1811L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1743L, 1807L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1812L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1744L, 1808L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1813L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1745L, 1809L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1814L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1745L, 1810L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1815L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1746L, 1811L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1816L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1746L, 1812L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1817L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1747L, 1813L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1818L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1748L, 1814L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1819L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1749L, 1815L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1820L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1750L, 1816L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1821L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1751L, 1817L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1822L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1752L, 1818L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1823L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1753L, 1819L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1824L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1753L, 1820L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1825L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1754L, 1821L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1826L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1755L, 1822L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1827L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1756L, 1823L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1828L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1757L, 1824L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1829L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1758L, 1825L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1830L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1759L, 1826L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1831L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1760L, 1827L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1832L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1761L, 1828L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1833L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1762L, 1829L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1834L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1763L, 1830L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1835L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1764L, 1831L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1836L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1765L, 1832L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1837L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1766L, 1833L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1838L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1767L, 1834L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1839L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1768L, 1835L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1840L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1769L, 1836L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1841L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1770L, 1837L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1842L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1771L, 1838L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1843L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1772L, 1839L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1844L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1773L, 1840L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1845L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1774L, 1841L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1846L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1775L, 1842L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1847L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1776L, 1843L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1848L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1777L, 1844L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1849L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1778L, 1845L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1850L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1779L, 1846L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1851L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1780L, 1847L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1852L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1781L, 1848L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1853L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1782L, 1849L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1854L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1783L, 1850L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1855L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1784L, 1851L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1856L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1785L, 1852L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1857L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1786L, 1853L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1858L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1787L, 1854L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1859L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1788L, 1855L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1860L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1789L, 1856L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1861L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1790L, 1857L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1862L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1791L, 1858L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1863L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1792L, 1859L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1864L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1793L, 1860L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1865L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1794L, 1861L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1866L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1795L, 1862L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1867L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1796L, 1863L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1868L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1797L, 1864L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1870L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1798L, 1865L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1873L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1799L, 1866L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1874L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1800L, 1867L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1875L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1801L, 1868L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1876L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1803L, 1870L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1877L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1806L, 1873L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1878L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1807L, 1874L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1879L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1808L, 1875L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1880L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1809L, 1876L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1881L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1810L, 1877L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1882L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1811L, 1878L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1883L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1813L, 1879L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1884L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1814L, 1880L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1885L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1814L, 1881L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1886L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1815L, 1882L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1887L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1815L, 1883L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1890L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1816L, 1884L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1891L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1817L, 1885L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1892L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1818L, 1886L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1893L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1819L, 1887L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1894L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1824L, 1890L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1895L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1825L, 1891L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1896L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1827L, 1892L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1897L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1828L, 1893L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1898L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1829L, 1894L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1899L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1830L, 1895L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1900L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1831L, 1896L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1901L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1832L, 1897L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1902L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1832L, 1898L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1903L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1833L, 1899L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1904L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1834L, 1900L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1905L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1835L, 1901L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1907L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1835L, 1902L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1908L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1835L, 1903L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1909L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1836L, 1904L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1910L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1838L, 1905L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1911L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1840L, 1907L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1912L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1840L, 1908L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1913L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1841L, 1909L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1914L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1841L, 1910L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1915L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1842L, 1911L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1916L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1842L, 1912L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1917L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1843L, 1913L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1918L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1844L, 1914L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1919L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1845L, 1915L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1920L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1846L, 1916L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1921L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1847L, 1917L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1922L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1848L, 1918L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1923L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1849L, 1919L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1924L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1850L, 1920L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1932L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1852L, 1921L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1933L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1853L, 1922L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1934L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1854L, 1923L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1935L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1856L, 1924L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1936L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1864L, 1932L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1937L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1865L, 1933L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1938L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1866L, 1934L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1939L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1867L, 1935L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1940L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1868L, 1936L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1941L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1869L, 1937L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1942L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1870L, 1938L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1943L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1871L, 1939L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1944L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1872L, 1940L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1945L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1873L, 1941L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1946L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1876L, 1942L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1947L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1876L, 1943L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1951L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1877L, 1944L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1952L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1877L, 1945L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1953L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1878L, 1946L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1954L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1878L, 1947L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1955L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1880L, 1951L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1956L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1880L, 1952L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1957L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1880L, 1953L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1958L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1881L, 1954L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1959L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1882L, 1955L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1960L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1886L, 1956L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1961L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1887L, 1957L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1962L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1888L, 1958L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1965L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1890L, 1959L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1966L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1891L, 1960L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1967L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1892L, 1961L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1968L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1893L, 1962L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1969L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1896L, 1965L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1970L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1897L, 1966L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1971L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1898L, 1967L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1972L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1899L, 1968L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1973L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1900L, 1969L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1974L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1901L, 1970L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1975L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1901L, 1971L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1976L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1902L, 1972L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1977L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1903L, 1973L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1978L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1904L, 1974L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1979L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1906L, 1975L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1980L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1907L, 1976L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1981L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1908L, 1977L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1982L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1909L, 1978L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1983L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1910L, 1979L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1984L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1911L, 1980L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1985L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1912L, 1981L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1986L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1913L, 1982L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1987L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1914L, 1983L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1988L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1915L, 1984L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1989L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1916L, 1985L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1990L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1917L, 1986L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1991L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1918L, 1987L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1995L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1919L, 1988L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1996L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1920L, 1989L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 1997L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1921L, 1990L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2000L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1922L, 1991L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2001L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1926L, 1995L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2002L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1927L, 1996L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2003L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1928L, 1997L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2004L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1930L, 2000L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2005L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1930L, 2001L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2008L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1931L, 2002L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2009L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1932L, 2003L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2010L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1933L, 2004L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2011L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1934L, 2005L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2012L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1937L, 2008L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2013L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1938L, 2009L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2014L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1939L, 2010L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2015L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1940L, 2011L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2016L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1941L, 2012L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2017L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1942L, 2013L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2019L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1943L, 2014L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2020L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1944L, 2015L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2021L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1945L, 2016L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2022L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1946L, 2017L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2023L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1948L, 2019L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2024L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1949L, 2020L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2025L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1950L, 2021L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2026L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1951L, 2022L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2027L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1951L, 2023L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2028L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1952L, 2024L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2029L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1952L, 2025L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2030L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1953L, 2026L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2031L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1954L, 2027L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2032L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1955L, 2028L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2036L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1956L, 2029L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2037L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1957L, 2030L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2038L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1958L, 2031L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2039L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1959L, 2032L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2040L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1963L, 2036L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2043L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1964L, 2037L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2044L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1964L, 2038L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2045L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1965L, 2039L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2046L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1965L, 2040L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2047L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1967L, 2043L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2048L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1967L, 2044L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2049L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1968L, 2045L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2050L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1969L, 2046L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2051L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1970L, 2047L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2052L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1971L, 2048L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2053L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1972L, 2049L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2054L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1972L, 2050L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2055L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1973L, 2051L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2056L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1973L, 2052L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2057L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1974L, 2053L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2058L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1974L, 2054L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2059L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1975L, 2055L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2060L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1975L, 2056L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2061L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1976L, 2057L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2062L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1976L, 2058L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2063L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1977L, 2059L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2064L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1977L, 2060L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2065L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1978L, 2061L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2066L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1978L, 2062L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2067L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1979L, 2063L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2068L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1979L, 2064L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2069L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1980L, 2065L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2070L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1980L, 2066L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2071L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1981L, 2067L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2072L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1981L, 2068L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2073L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1983L, 2069L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2074L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1983L, 2070L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2075L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1984L, 2071L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2076L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1984L, 2072L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2077L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1985L, 2073L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2078L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1985L, 2074L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2079L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1985L, 2075L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2080L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1985L, 2615L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2081L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1985L, 2616L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2082L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1985L, 2617L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2083L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1986L, 2076L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2084L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1986L, 2077L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2085L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1986L, 2078L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2086L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1986L, 2618L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2087L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1986L, 2619L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2088L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1986L, 2620L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2089L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1987L, 2079L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2090L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1987L, 2080L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2091L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1988L, 2081L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2092L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1988L, 2082L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2093L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1989L, 2083L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2095L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1989L, 2084L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2096L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1990L, 2085L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2097L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1990L, 2086L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2098L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1991L, 2087L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2099L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1991L, 2088L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2100L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1992L, 2089L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2101L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1993L, 2090L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2102L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1994L, 2091L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2103L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1995L, 2092L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2104L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1996L, 2093L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2105L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 1998L, 2095L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2106L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2000L, 2096L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2107L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2001L, 2097L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2108L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2002L, 2098L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2109L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2003L, 2099L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2110L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2004L, 2100L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2113L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2005L, 2101L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2114L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2006L, 2102L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2115L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2007L, 2103L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2116L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2008L, 2104L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2117L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2009L, 2105L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2118L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2010L, 2106L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2119L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2011L, 2107L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2120L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2012L, 2108L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2121L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2013L, 2109L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2122L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2014L, 2110L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2123L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2017L, 2113L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2124L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2018L, 2114L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2127L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2022L, 2115L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2128L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2023L, 2116L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2129L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2024L, 2117L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2130L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2025L, 2118L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2131L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2026L, 2119L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2132L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2027L, 2120L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2133L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2028L, 2121L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2134L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2029L, 2122L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2137L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2030L, 2123L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2138L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2031L, 2124L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2139L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2034L, 2127L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2140L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2035L, 2128L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2141L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2036L, 2129L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2142L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2038L, 2130L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2143L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2039L, 2131L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2144L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2040L, 2132L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2145L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2041L, 2133L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2146L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2041L, 2134L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2147L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2043L, 2137L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2148L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2043L, 2138L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2149L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2043L, 2139L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2150L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2044L, 2140L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2151L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2044L, 2141L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2152L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2044L, 2142L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2153L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2045L, 2143L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2154L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2045L, 2144L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2155L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2045L, 2145L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2156L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2046L, 2146L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2157L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2046L, 2147L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2158L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2046L, 2148L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2159L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2047L, 2149L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2160L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2048L, 2150L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2161L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2049L, 2151L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2162L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2050L, 2152L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2163L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2051L, 2153L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2164L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2052L, 2154L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2165L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2053L, 2155L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2166L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2054L, 2156L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2167L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2055L, 2157L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2168L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2056L, 2158L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2169L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2057L, 2159L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2170L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2058L, 2160L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2171L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2059L, 2161L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2172L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2060L, 2162L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2173L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2061L, 2163L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2174L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2062L, 2164L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2175L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2063L, 2165L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2176L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2064L, 2166L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2177L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2064L, 2167L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2178L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2064L, 2168L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2179L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2065L, 2169L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2180L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2067L, 2170L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2181L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2067L, 2171L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2182L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2067L, 2172L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2184L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2068L, 2173L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2185L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2069L, 2174L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2186L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2070L, 2175L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2187L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2070L, 2176L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2188L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2070L, 2177L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2189L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2071L, 2178L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2190L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2072L, 2179L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2191L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2073L, 2180L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2192L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2074L, 2181L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2193L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2075L, 2182L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2194L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2077L, 2184L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2195L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2078L, 2185L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2196L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2079L, 2186L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2197L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2080L, 2187L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2198L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2081L, 2188L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2199L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2082L, 2189L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2200L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2083L, 2190L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2201L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2084L, 2191L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2203L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2085L, 2192L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2204L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2086L, 2193L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2205L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2087L, 2194L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2206L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2088L, 2195L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2207L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2089L, 2196L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2208L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2090L, 2197L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2209L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2091L, 2198L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2210L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2092L, 2199L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2211L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2093L, 2200L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2212L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2094L, 2201L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2213L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2096L, 2683L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2214L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2097L, 2706L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2215L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2098L, 2707L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2216L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2099L, 2203L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2217L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2099L, 2204L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2218L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2099L, 2205L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2219L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2100L, 2206L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2220L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2101L, 2207L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2221L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2102L, 2208L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2222L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2103L, 2209L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2223L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2104L, 2210L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2224L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2104L, 2211L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2225L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2104L, 2212L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2226L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2105L, 2213L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2227L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2105L, 2214L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2228L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2105L, 2215L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2229L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2106L, 2216L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2230L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2106L, 2217L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2231L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2106L, 2218L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2232L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2107L, 2219L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2233L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2108L, 2220L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2234L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2109L, 2221L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2235L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2109L, 2222L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2236L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2110L, 2223L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2237L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2111L, 2224L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2238L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2111L, 2225L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2239L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2112L, 2226L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2240L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2112L, 2227L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2241L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2113L, 2228L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2242L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2113L, 2229L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2243L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2114L, 2230L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2244L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2114L, 2231L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2245L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2115L, 2232L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2246L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2117L, 2233L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2247L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2118L, 2234L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2248L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2119L, 2235L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2249L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2120L, 2236L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2250L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2121L, 2237L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2251L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2122L, 2238L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2252L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2123L, 2239L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2253L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2124L, 2240L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2254L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2125L, 2241L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2255L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2126L, 2242L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2256L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2127L, 2243L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2257L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2128L, 2244L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2258L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2129L, 2245L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2259L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2130L, 2246L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2260L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2131L, 2247L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2261L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2132L, 2248L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2262L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2133L, 2249L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2263L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2134L, 2250L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2264L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2135L, 2251L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2265L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2136L, 2252L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2266L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2137L, 2253L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2267L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2138L, 2254L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2268L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2139L, 2255L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2269L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2140L, 2256L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2270L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2141L, 2257L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2271L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2142L, 2258L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2272L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2143L, 2259L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2273L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2144L, 2260L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2274L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2145L, 2261L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2275L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2146L, 2262L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2276L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2147L, 2263L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2277L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2148L, 2264L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2278L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2149L, 2265L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2279L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2150L, 2266L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2280L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2151L, 2267L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2281L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2152L, 2268L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2282L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2153L, 2269L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2283L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2154L, 2270L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2284L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2155L, 2271L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2285L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2155L, 2272L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2289L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2155L, 2273L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2290L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2156L, 2274L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2291L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2156L, 2275L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2295L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2157L, 2276L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2296L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2157L, 2277L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2297L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2158L, 2278L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2301L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2158L, 2279L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2302L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2159L, 2280L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2303L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2160L, 2281L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2307L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2161L, 2282L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2308L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2162L, 2283L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2309L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2163L, 2284L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2310L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2163L, 2285L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2311L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2165L, 2289L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2312L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2165L, 2290L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2313L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2165L, 2291L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2314L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2167L, 2295L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2315L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2167L, 2296L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2318L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2167L, 2297L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2319L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2169L, 2301L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2320L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2169L, 2302L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2321L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2169L, 2303L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2322L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2171L, 2307L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2323L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2171L, 2308L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2324L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2171L, 2309L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2325L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2172L, 2310L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2326L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2173L, 2311L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2327L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2174L, 2312L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2328L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2175L, 2313L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2329L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2176L, 2314L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2330L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2177L, 2315L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2331L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2179L, 2318L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2332L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2180L, 2319L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2333L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2181L, 2320L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2334L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2182L, 2321L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2335L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2183L, 2322L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2336L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2184L, 2323L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2337L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2185L, 2324L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2338L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2186L, 2325L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2339L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2187L, 2326L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2340L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2188L, 2327L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2341L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2189L, 2328L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2342L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2190L, 2329L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2343L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2191L, 2330L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2344L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2192L, 2331L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2345L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2193L, 2332L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2346L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2194L, 2333L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2347L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2195L, 2334L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2348L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2196L, 2335L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2349L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2197L, 2336L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2350L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2198L, 2337L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2351L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2199L, 2338L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2352L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2200L, 2339L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2353L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2201L, 2340L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2354L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2202L, 2341L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2355L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2203L, 2342L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2356L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2204L, 2343L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2357L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2205L, 2344L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2358L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2206L, 2345L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2359L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2207L, 2346L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2360L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2208L, 2347L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2370L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2209L, 2348L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2371L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2210L, 2349L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2372L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2211L, 2350L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2373L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2212L, 2351L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2374L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2213L, 2352L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2375L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2214L, 2353L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2376L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2215L, 2354L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2377L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2216L, 2355L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2378L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2217L, 2356L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2379L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2218L, 2357L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2380L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2219L, 2358L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2381L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2220L, 2359L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2382L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2220L, 2360L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2383L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2230L, 2370L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2384L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2231L, 2371L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2385L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2232L, 2372L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2386L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2233L, 2373L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2387L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2234L, 2374L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2388L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2235L, 2375L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2390L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2236L, 2376L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2391L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2237L, 2377L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2392L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2238L, 2378L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2393L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2239L, 2379L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2394L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2240L, 2380L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2395L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2241L, 2381L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2396L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2242L, 2382L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2397L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2243L, 2383L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2398L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2244L, 2384L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2400L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2245L, 2385L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2401L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2246L, 2386L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2402L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2247L, 2387L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2403L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2248L, 2388L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2404L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2250L, 2390L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2405L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2251L, 2391L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2406L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2252L, 2392L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2407L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2253L, 2393L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2408L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2254L, 2394L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2409L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2255L, 2395L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2410L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2256L, 2396L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2411L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2257L, 2397L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2412L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2258L, 2398L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2413L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2260L, 2400L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2414L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2261L, 2401L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2415L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2262L, 2402L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2416L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2263L, 2403L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2417L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2264L, 2404L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2418L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2265L, 2405L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2419L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2266L, 2406L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2420L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2267L, 2407L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2421L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2268L, 2408L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2422L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2269L, 2409L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2423L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2270L, 2410L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2424L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2271L, 2411L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2426L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2272L, 2412L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2427L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2273L, 2413L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2428L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2274L, 2414L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2429L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2275L, 2415L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2430L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2276L, 2416L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2431L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2277L, 2417L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2432L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2278L, 2418L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2433L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2279L, 2419L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2434L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2279L, 2420L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2435L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2280L, 2421L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2436L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2280L, 2422L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2437L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2281L, 2423L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2438L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2281L, 2424L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2439L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2283L, 2426L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2440L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2284L, 2427L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2442L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2285L, 2428L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2443L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2286L, 2429L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2444L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2286L, 2430L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2445L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2287L, 2431L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2446L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2287L, 2432L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2447L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2288L, 2433L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2448L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2289L, 2434L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2449L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2290L, 2435L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2450L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2291L, 2436L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2451L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2292L, 2437L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2452L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2293L, 2438L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2453L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2294L, 2439L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2454L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2295L, 2440L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2455L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2297L, 2442L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2456L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2298L, 2443L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2457L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2299L, 2444L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2458L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2300L, 2445L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2460L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2301L, 2446L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2461L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2302L, 2447L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2462L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2302L, 2448L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2463L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2303L, 2449L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2464L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2304L, 2450L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2465L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2305L, 2451L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2466L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2306L, 2452L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2467L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2307L, 2453L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2468L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2308L, 2454L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2469L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2309L, 2455L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2470L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2310L, 2456L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2471L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2311L, 2457L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2472L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2311L, 2458L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2473L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2313L, 2460L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2474L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2314L, 2461L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2475L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2315L, 2462L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2476L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2316L, 2463L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2477L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2317L, 2464L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2478L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2318L, 2465L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2479L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2319L, 2466L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2480L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2319L, 2467L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2481L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2320L, 2468L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2482L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2320L, 2469L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2483L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2321L, 2470L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2484L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2322L, 2471L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2485L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2323L, 2472L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2486L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2323L, 2473L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2487L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2323L, 2474L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2488L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2324L, 2475L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2489L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2324L, 2476L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2490L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2324L, 2477L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2491L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2325L, 2478L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2492L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2325L, 2479L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2493L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2325L, 2480L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2494L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2326L, 2481L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2495L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2326L, 2482L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2496L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2326L, 2483L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2497L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2327L, 2484L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2498L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2327L, 2485L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2499L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2327L, 2486L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2500L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2328L, 2487L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2501L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2328L, 2488L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2502L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2328L, 2489L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2503L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2329L, 2490L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2504L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2330L, 2491L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2505L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2331L, 2492L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2506L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2332L, 2493L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2507L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2333L, 2494L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2508L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2334L, 2495L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2509L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2335L, 2496L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2510L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2336L, 2497L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2511L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2337L, 2498L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2512L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2338L, 2499L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2513L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2339L, 2500L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2514L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2340L, 2501L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2515L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2340L, 2502L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2516L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2340L, 2503L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2517L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2341L, 2504L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2518L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2342L, 2505L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2519L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2343L, 2506L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2520L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2344L, 2507L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2521L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2345L, 2508L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2522L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2346L, 2509L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2523L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2347L, 2510L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2524L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2348L, 2511L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2525L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2349L, 2512L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2526L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2350L, 2513L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2527L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2351L, 2514L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2529L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2352L, 2515L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2530L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2353L, 2516L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2531L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2354L, 2517L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2532L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2355L, 2518L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2533L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2356L, 2519L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2534L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2357L, 2520L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2535L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2358L, 2521L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2536L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2359L, 2522L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2537L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2360L, 2523L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2538L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2361L, 2524L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2539L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2362L, 2525L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2540L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2363L, 2526L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2541L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2364L, 2527L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2542L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2366L, 2529L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2543L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2366L, 2530L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2544L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2367L, 2531L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2545L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2368L, 2532L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2546L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2369L, 2533L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2547L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2369L, 2534L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2548L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2370L, 2535L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2549L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2371L, 2536L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2550L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2372L, 2537L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2551L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2373L, 2538L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2552L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2373L, 2539L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2553L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2374L, 2540L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2554L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2374L, 2541L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2555L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2375L, 2542L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2556L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2375L, 2543L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2557L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2376L, 2544L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2558L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2376L, 2545L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2559L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2377L, 2546L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2560L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2378L, 2547L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2561L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2379L, 2548L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2562L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2379L, 2549L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2563L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2379L, 2550L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2564L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2380L, 2551L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2565L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2380L, 2552L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2566L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2381L, 2553L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2567L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2381L, 2554L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2570L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2382L, 2555L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2571L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2382L, 2556L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2572L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2383L, 2557L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2573L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2383L, 2558L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2574L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2384L, 2559L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2575L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2384L, 2560L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2576L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2385L, 2561L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2577L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2385L, 2562L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2578L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2386L, 2563L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2579L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2386L, 2564L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2580L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2387L, 2565L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2581L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2388L, 2566L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2582L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2389L, 2567L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2583L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2392L, 2570L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2584L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2393L, 2571L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2585L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2393L, 2572L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2586L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2393L, 2573L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2587L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2394L, 2574L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2588L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2394L, 2575L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2589L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2394L, 2576L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2590L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2395L, 2577L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2591L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2395L, 2578L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2592L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2395L, 2579L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2593L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2396L, 2581L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2594L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2397L, 2582L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2595L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2398L, 2583L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2596L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2399L, 2584L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2597L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2400L, 2585L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2598L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2401L, 2586L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2599L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2402L, 2587L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2600L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2403L, 2588L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2601L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2403L, 2589L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2602L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2404L, 2590L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2603L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2404L, 2591L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2604L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2405L, 2594L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2605L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2406L, 2592L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2606L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2406L, 2593L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2607L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2407L, 2597L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2608L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2408L, 2598L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2609L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2409L, 2599L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2610L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2410L, 2600L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2611L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2411L, 2601L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2612L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2412L, 2602L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2613L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2413L, 2603L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2614L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2414L, 2604L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2615L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2415L, 2605L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2616L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2416L, 2606L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2617L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2417L, 2607L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2618L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2418L, 2608L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2619L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2419L, 2609L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2620L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2420L, 2610L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2621L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2421L, 2611L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2622L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2422L, 2612L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2623L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2423L, 2613L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2624L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2424L, 2614L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2625L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2425L, 2621L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2626L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2425L, 2622L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2627L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2426L, 2626L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2628L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2427L, 2623L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2629L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2428L, 2624L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2630L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2428L, 2625L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2631L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2429L, 2627L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2632L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2430L, 2628L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2633L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2431L, 2629L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2634L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2432L, 2630L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2635L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2433L, 2631L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2636L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2433L, 2632L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2637L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2434L, 2633L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2638L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2434L, 2634L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2639L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2434L, 2755L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2640L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2435L, 2635L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2641L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2435L, 2636L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2642L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2436L, 2637L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2643L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2436L, 2638L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2644L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2437L, 2639L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2645L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2438L, 2640L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2646L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2439L, 2641L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2647L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2440L, 2642L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2648L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2441L, 2643L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2649L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2442L, 2644L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2650L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2443L, 2645L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2651L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2443L, 2646L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2652L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2444L, 2647L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2653L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2444L, 2648L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2654L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2445L, 2649L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2656L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2446L, 2650L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2657L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2447L, 2651L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2658L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2448L, 2652L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2659L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2449L, 2653L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2660L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2450L, 2654L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2661L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2452L, 2656L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2662L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2453L, 2657L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2663L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2454L, 2658L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2664L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2455L, 2659L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2665L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2455L, 2660L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2666L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2456L, 2661L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2667L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2457L, 2662L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2668L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2458L, 2663L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2669L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2459L, 2664L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2670L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2460L, 2665L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2671L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2461L, 2666L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2672L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2462L, 2667L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2673L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2463L, 2668L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2674L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2464L, 2669L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2675L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2465L, 2670L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2676L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2466L, 2671L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2677L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2466L, 2672L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2678L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2467L, 2673L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2679L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2467L, 2674L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2680L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2468L, 2675L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2681L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2468L, 2676L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2683L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2469L, 2677L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2684L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2470L, 2678L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2685L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2471L, 2679L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2686L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2471L, 2732L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2687L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2471L, 2798L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2688L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2471L, 2799L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2689L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2471L, 2800L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2690L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2471L, 2801L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2691L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2472L, 2680L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2692L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2473L, 2681L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2693L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2475L, 2684L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2694L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2476L, 2685L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2695L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2477L, 2686L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2696L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2478L, 2687L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2697L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2479L, 2688L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2698L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2480L, 2689L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2699L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2481L, 2690L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2700L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2482L, 2691L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2701L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2483L, 2692L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2702L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2484L, 2693L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2703L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2485L, 2694L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2704L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2486L, 2695L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2705L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2487L, 2696L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2706L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2488L, 2697L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2707L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2489L, 2698L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2708L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2490L, 2699L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2709L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2491L, 2700L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2710L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2492L, 2701L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2711L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2493L, 2702L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2712L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2494L, 2703L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2713L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2495L, 2704L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2714L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2496L, 2705L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2715L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2497L, 2708L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2716L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2498L, 2709L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2717L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2499L, 2710L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2718L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2500L, 2711L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2719L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2501L, 2712L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2720L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2502L, 2713L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2721L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2503L, 2714L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2722L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2504L, 2715L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2723L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2505L, 2716L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2724L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2506L, 2717L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2725L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2507L, 2718L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2726L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2508L, 2719L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2727L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2509L, 2720L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2728L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2510L, 2721L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2729L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2511L, 2722L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2730L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2512L, 2723L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2731L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2512L, 2724L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2732L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2513L, 2725L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2733L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2514L, 2726L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2734L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2515L, 2727L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2735L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2516L, 2728L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2736L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2517L, 2729L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2737L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2518L, 2730L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2738L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2519L, 2731L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2739L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2520L, 2733L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2740L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2520L, 2802L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2741L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2520L, 2803L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2742L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2520L, 2804L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2743L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2520L, 2805L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2744L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2520L, 2806L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2745L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2521L, 2734L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2746L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2521L, 2807L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2747L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2521L, 2808L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2748L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2521L, 2809L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2749L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2521L, 2810L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2750L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2521L, 2811L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2751L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2522L, 2735L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2752L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2523L, 2736L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2753L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2524L, 2737L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2754L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2525L, 2738L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2755L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2526L, 2739L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2756L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2527L, 2740L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2757L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2528L, 2741L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2758L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2529L, 2742L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2759L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2530L, 2743L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2760L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2531L, 2744L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2761L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2532L, 2745L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2762L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2533L, 2746L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2763L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2533L, 2747L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2764L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2534L, 2748L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2765L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2534L, 2749L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2766L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2535L, 2751L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2767L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2536L, 2754L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2768L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2537L, 2752L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2769L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2537L, 2756L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2770L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2538L, 2753L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2771L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2538L, 2757L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2772L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2539L, 2758L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2773L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2540L, 2759L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2774L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2541L, 2760L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2775L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2541L, 2761L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2776L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2542L, 2762L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2777L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2543L, 2763L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2778L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2544L, 2764L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2779L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2545L, 2765L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2780L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2546L, 2766L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2781L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2547L, 2767L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2782L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2548L, 2768L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2783L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2549L, 2769L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2784L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2550L, 2770L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2785L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2551L, 2771L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2786L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2552L, 2772L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2787L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2553L, 2773L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2788L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2554L, 2774L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2789L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2554L, 2775L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2790L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2555L, 2776L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2791L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2555L, 2777L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2792L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2556L, 2778L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2793L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2556L, 2779L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2794L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2556L, 2787L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2795L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2557L, 2780L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2796L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2558L, 2781L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2797L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2559L, 2782L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2798L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2560L, 2783L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2799L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2561L, 2784L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2800L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2562L, 2785L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2801L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2563L, 2786L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2802L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2564L, 2788L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2803L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2564L, 2789L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2804L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2564L, 2790L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2805L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2564L, 2791L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2806L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2564L, 2792L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2807L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2565L, 2793L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2808L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2565L, 2794L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2809L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2565L, 2795L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2810L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2565L, 2796L }); migrationBuilder.DeleteData( table: "filter_list_view_urls", - keyColumn: "id", - keyValue: 2811L); + keyColumns: new[] { "filter_list_id", "id" }, + keyValues: new object[] { 2565L, 2797L }); migrationBuilder.DeleteData( table: "filter_lists", diff --git a/services/Directory/FilterLists.Directory.Infrastructure.Migrations/Migrations/QueryDbContextModelSnapshot.cs b/services/Directory/FilterLists.Directory.Infrastructure.Migrations/Migrations/QueryDbContextModelSnapshot.cs index 5d7b8dbef..13c267d3c 100644 --- a/services/Directory/FilterLists.Directory.Infrastructure.Migrations/Migrations/QueryDbContextModelSnapshot.cs +++ b/services/Directory/FilterLists.Directory.Infrastructure.Migrations/Migrations/QueryDbContextModelSnapshot.cs @@ -60372,21464 +60372,6 @@ protected override void BuildModel(ModelBuilder modelBuilder) }); }); - modelBuilder.Entity("FilterLists.Directory.Infrastructure.Persistence.Queries.Entities.FilterListViewUrl", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("bigint") - .HasColumnName("id"); - - NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); - - b.Property("FilterListId") - .HasColumnType("bigint") - .HasColumnName("filter_list_id"); - - b.Property("Primariness") - .ValueGeneratedOnAdd() - .HasColumnType("smallint") - .HasDefaultValue((short)1) - .HasColumnName("primariness"); - - b.Property("SegmentNumber") - .ValueGeneratedOnAdd() - .HasColumnType("smallint") - .HasDefaultValue((short)1) - .HasColumnName("segment_number"); - - b.Property("Url") - .IsRequired() - .HasColumnType("text") - .HasColumnName("url"); - - b.HasKey("Id") - .HasName("pk_filter_list_view_urls"); - - b.HasIndex("FilterListId", "SegmentNumber", "Primariness") - .IsUnique() - .HasDatabaseName("ix_filter_list_view_urls_filter_list_id_segment_number_primari"); - - b.ToTable("filter_list_view_urls", (string)null); - - b.HasData( - new - { - Id = 1L, - FilterListId = 1L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-mob.txt" - }, - new - { - Id = 2L, - FilterListId = 2L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/B-Con/mute/master/mute.txt" - }, - new - { - Id = 3L, - FilterListId = 3L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://adblock.mahakala.is/" - }, - new - { - Id = 4L, - FilterListId = 4L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/michaeltrimm/hosts-blocking/master/_hosts.txt" - }, - new - { - Id = 5L, - FilterListId = 4L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/michaeltrimm/hosts-blocking/master/_hosts.txt" - }, - new - { - Id = 6L, - FilterListId = 4L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/michaeltrimm/hosts-blocking/master/_hosts.txt" - }, - new - { - Id = 7L, - FilterListId = 5L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hg.adblockplus.org/facebookfilters/file/tip/message_seen_remover_for_facebook.txt" - }, - new - { - Id = 8L, - FilterListId = 6L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mayve/private-adblock-filters/master/Adblock_List.txt" - }, - new - { - Id = 9L, - FilterListId = 6L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/mayve/private-adblock-filters/master/Adblock_List.txt" - }, - new - { - Id = 10L, - FilterListId = 6L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/mayve/private-adblock-filters/master/Adblock_List.txt" - }, - new - { - Id = 11L, - FilterListId = 10L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.malwaredomainlist.com/hostslist/hosts.txt" - }, - new - { - Id = 12L, - FilterListId = 11L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/liste_fr+easylist.txt" - }, - new - { - Id = 13L, - FilterListId = 12L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/liste_fr.txt" - }, - new - { - Id = 14L, - FilterListId = 13L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/liste_ar+liste_fr+easylist.txt" - }, - new - { - Id = 15L, - FilterListId = 14L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/Liste_AR.txt" - }, - new - { - Id = 16L, - FilterListId = 16L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/List-KR/List-KR/master/filter.txt" - }, - new - { - Id = 17L, - FilterListId = 17L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://winhelp2002.mvps.org/hosts.txt" - }, - new - { - Id = 18L, - FilterListId = 17L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/data/mvps.org/hosts" - }, - new - { - Id = 19L, - FilterListId = 17L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/data/mvps.org/hosts" - }, - new - { - Id = 20L, - FilterListId = 18L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/taylr/linkedinsanity/master/linkedinsanity.txt" - }, - new - { - Id = 21L, - FilterListId = 18L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/taylr/linkedinsanity/master/linkedinsanity.txt" - }, - new - { - Id = 22L, - FilterListId = 18L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/taylr/linkedinsanity/master/linkedinsanity.txt" - }, - new - { - Id = 23L, - FilterListId = 19L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/hoshsadiq/adblock-nocoin-list/master/nocoin.txt" - }, - new - { - Id = 24L, - FilterListId = 19L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/hoshsadiq/adblock-nocoin-list/master/nocoin.txt" - }, - new - { - Id = 25L, - FilterListId = 19L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/hoshsadiq/adblock-nocoin-list/master/nocoin.txt" - }, - new - { - Id = 26L, - FilterListId = 20L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianList.txt" - }, - new - { - Id = 27L, - FilterListId = 20L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianList.txt" - }, - new - { - Id = 28L, - FilterListId = 27L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/metaphoricgiraffe/tracking-filters/master/trackingfilters.txt" - }, - new - { - Id = 29L, - FilterListId = 27L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/metaphoricgiraffe/tracking-filters/master/trackingfilters.txt" - }, - new - { - Id = 30L, - FilterListId = 27L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/metaphoricgiraffe/tracking-filters/master/trackingfilters.txt" - }, - new - { - Id = 31L, - FilterListId = 28L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/liamja/Prebake/master/quiet.txt" - }, - new - { - Id = 32L, - FilterListId = 28L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/liamja/Prebake/master/quiet.txt" - }, - new - { - Id = 33L, - FilterListId = 28L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/liamja/Prebake/master/quiet.txt" - }, - new - { - Id = 34L, - FilterListId = 29L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/liamja/Prebake/master/obtrusive.txt" - }, - new - { - Id = 35L, - FilterListId = 29L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/liamja/Prebake/master/obtrusive.txt" - }, - new - { - Id = 36L, - FilterListId = 29L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/liamja/Prebake/master/obtrusive.txt" - }, - new - { - Id = 37L, - FilterListId = 30L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PPB.txt" - }, - new - { - Id = 38L, - FilterListId = 30L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/FiltersHeroes/PolishAnnoyanceFilters/master/PPB.txt" - }, - new - { - Id = 39L, - FilterListId = 30L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/FiltersHeroes/PolishAnnoyanceFilters/master/PPB.txt" - }, - new - { - Id = 40L, - FilterListId = 31L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.niecko.pl/adblock/adblock.txt" - }, - new - { - Id = 41L, - FilterListId = 32L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=adblockplus&showintro=1&mimetype=plaintext" - }, - new - { - Id = 42L, - FilterListId = 33L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/LordBadmintonofYorkshire/Overlay-Blocker/master/blocklist.txt" - }, - new - { - Id = 43L, - FilterListId = 33L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/LordBadmintonofYorkshire/Overlay-Blocker/master/blocklist.txt" - }, - new - { - Id = 44L, - FilterListId = 33L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/LordBadmintonofYorkshire/Overlay-Blocker/master/blocklist.txt" - }, - new - { - Id = 45L, - FilterListId = 34L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://openphish.com/feed.txt" - }, - new - { - Id = 46L, - FilterListId = 36L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/genediazjr/nopelist/master/nopelist.txt" - }, - new - { - Id = 47L, - FilterListId = 36L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/genediazjr/nopelist/master/nopelist.txt" - }, - new - { - Id = 48L, - FilterListId = 36L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/genediazjr/nopelist/master/nopelist.txt" - }, - new - { - Id = 49L, - FilterListId = 38L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Rpsl/adblock-leadgenerator-list/master/list/list.txt" - }, - new - { - Id = 50L, - FilterListId = 38L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/Rpsl/adblock-leadgenerator-list/master/list/list.txt" - }, - new - { - Id = 51L, - FilterListId = 38L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/Rpsl/adblock-leadgenerator-list/master/list/list.txt" - }, - new - { - Id = 52L, - FilterListId = 39L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://notabug.org/latvian-list/adblock-latvian/raw/master/lists/latvian-list.txt" - }, - new - { - Id = 53L, - FilterListId = 47L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/NanoMeow/UltimateMirror/master/archive/hphosts.txt" - }, - new - { - Id = 54L, - FilterListId = 47L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/static/HPHosts/HostsAdServers.txt" - }, - new - { - Id = 55L, - FilterListId = 49L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://sites.google.com/site/hosts2ch/ja?attredirects=0" - }, - new - { - Id = 56L, - FilterListId = 50L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/HexxiumCreations/threat-list/gh-pages/hexxiumthreatlist.txt" - }, - new - { - Id = 57L, - FilterListId = 50L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/HexxiumCreations/threat-list/gh-pages/hexxiumthreatlist.txt" - }, - new - { - Id = 58L, - FilterListId = 50L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/HexxiumCreations/threat-list/gh-pages/hexxiumthreatlist.txt" - }, - new - { - Id = 59L, - FilterListId = 51L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kargig/greek-adblockplus-filter/master/void-gr-filters.txt" - }, - new - { - Id = 60L, - FilterListId = 51L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/kargig/greek-adblockplus-filter/master/void-gr-filters.txt" - }, - new - { - Id = 61L, - FilterListId = 51L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/kargig/greek-adblockplus-filter/master/void-gr-filters.txt" - }, - new - { - Id = 62L, - FilterListId = 52L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gnuzilla.gnu.org/filters/blacklist.txt" - }, - new - { - Id = 63L, - FilterListId = 53L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/gmbkslist (Hosts).txt" - }, - new - { - Id = 64L, - FilterListId = 53L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/DandelionSprout/adfilt/master/AncientLibrary/gmbkslist (Hosts).txt" - }, - new - { - Id = 65L, - FilterListId = 54L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://web.archive.org/web/20160221140034if_/http://adblock.gjtech.net/?format=unix-hosts" - }, - new - { - Id = 66L, - FilterListId = 56L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/latvianlist+easylist.txt" - }, - new - { - Id = 67L, - FilterListId = 59L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/gfmaster/adblock-korea-contrib/master/filter.txt" - }, - new - { - Id = 68L, - FilterListId = 59L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/gfmaster/adblock-korea-contrib/master/filter.txt" - }, - new - { - Id = 69L, - FilterListId = 59L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/gfmaster/adblock-korea-contrib/master/filter.txt" - }, - new - { - Id = 70L, - FilterListId = 60L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/KADhosts/master/KADhosts.txt" - }, - new - { - Id = 71L, - FilterListId = 60L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/FiltersHeroes/KADhosts/master/KADhosts.txt" - }, - new - { - Id = 72L, - FilterListId = 60L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/FiltersHeroes/KADhosts/master/KADhosts.txt" - }, - new - { - Id = 73L, - FilterListId = 61L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/KAD/master/KAD.txt" - }, - new - { - Id = 74L, - FilterListId = 61L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/FiltersHeroes/KAD/master/KAD.txt" - }, - new - { - Id = 75L, - FilterListId = 61L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/FiltersHeroes/KAD/master/KAD.txt" - }, - new - { - Id = 76L, - FilterListId = 62L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://qme.mydns.jp/data/AdblockV2.txt" - }, - new - { - Id = 77L, - FilterListId = 63L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://qme.mydns.jp/data/Adblock.txt" - }, - new - { - Id = 78L, - FilterListId = 64L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/lewisje/jansal/master/adblock/hostslt" - }, - new - { - Id = 79L, - FilterListId = 64L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/lewisje/jansal/master/adblock/hostslt" - }, - new - { - Id = 80L, - FilterListId = 64L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitcdn.link/repo/lewisje/jansal/master/adblock/hostslt" - }, - new - { - Id = 81L, - FilterListId = 65L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/lewisje/jansal/master/adblock/hosts" - }, - new - { - Id = 82L, - FilterListId = 65L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/lewisje/jansal/master/adblock/hosts" - }, - new - { - Id = 83L, - FilterListId = 65L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitcdn.link/repo/lewisje/jansal/master/adblock/hosts" - }, - new - { - Id = 84L, - FilterListId = 66L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.jabcreations.com/downloads/adblock-filters.php" - }, - new - { - Id = 85L, - FilterListId = 67L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/piperun/iploggerfilter/master/filterlist" - }, - new - { - Id = 86L, - FilterListId = 67L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/piperun/iploggerfilter/master/filterlist" - }, - new - { - Id = 87L, - FilterListId = 67L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitcdn.link/repo/piperun/iploggerfilter/master/filterlist" - }, - new - { - Id = 88L, - FilterListId = 68L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ilyakatz/adblock_filters/master/inpage_popups.txt" - }, - new - { - Id = 89L, - FilterListId = 68L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/ilyakatz/adblock_filters/master/inpage_popups.txt" - }, - new - { - Id = 90L, - FilterListId = 68L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/ilyakatz/adblock_filters/master/inpage_popups.txt" - }, - new - { - Id = 91L, - FilterListId = 69L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://adblock.gardar.net/is.abp.txt" - }, - new - { - Id = 92L, - FilterListId = 70L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Rudloff/adblock-imokwithcookies/master/filters.txt" - }, - new - { - Id = 93L, - FilterListId = 70L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/Rudloff/adblock-imokwithcookies/master/filters.txt" - }, - new - { - Id = 94L, - FilterListId = 70L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/Rudloff/adblock-imokwithcookies/master/filters.txt" - }, - new - { - Id = 95L, - FilterListId = 71L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.i-dont-care-about-cookies.eu/abp/" - }, - new - { - Id = 96L, - FilterListId = 72L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/hufilter/hufilter/master/hufilter.txt" - }, - new - { - Id = 97L, - FilterListId = 72L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://repo.or.cz/Adblock-list-backups-hufilter.git/blob_plain/refs/heads/master:/hufilter.txt" - }, - new - { - Id = 98L, - FilterListId = 72L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/hufilter/hufilter/master/hufilter.txt" - }, - new - { - Id = 99L, - FilterListId = 78L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts" - }, - new - { - Id = 100L, - FilterListId = 78L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://sbc.io/hosts/alternates/gambling-porn/hosts" - }, - new - { - Id = 101L, - FilterListId = 78L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/gambling-porn/hosts" - }, - new - { - Id = 102L, - FilterListId = 79L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts" - }, - new - { - Id = 103L, - FilterListId = 79L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://sbc.io/hosts/alternates/gambling/hosts" - }, - new - { - Id = 104L, - FilterListId = 79L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/gambling/hosts" - }, - new - { - Id = 105L, - FilterListId = 80L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts" - }, - new - { - Id = 106L, - FilterListId = 80L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://sbc.io/hosts/hosts" - }, - new - { - Id = 107L, - FilterListId = 80L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/hosts" - }, - new - { - Id = 108L, - FilterListId = 81L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/UncheckyAds/hosts" - }, - new - { - Id = 109L, - FilterListId = 81L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/data/UncheckyAds/hosts" - }, - new - { - Id = 110L, - FilterListId = 81L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/data/UncheckyAds/hosts" - }, - new - { - Id = 111L, - FilterListId = 82L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/uBlock-user/uBO-Personal-Filters/master/uPF.txt" - }, - new - { - Id = 112L, - FilterListId = 82L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/uBlock-user/uBO-Personal-Filters/master/uPF.txt" - }, - new - { - Id = 113L, - FilterListId = 82L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/uBlock-user/uBO-Personal-Filters/master/uPF.txt" - }, - new - { - Id = 114L, - FilterListId = 83L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/NanoAdblocker/NanoFilters/master/NanoMirror/NanoDefender.txt" - }, - new - { - Id = 115L, - FilterListId = 83L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/NanoAdblocker/NanoFilters/master/NanoMirror/NanoDefender.txt" - }, - new - { - Id = 116L, - FilterListId = 84L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock_ublock.txt" - }, - new - { - Id = 117L, - FilterListId = 84L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock_ublock.txt" - }, - new - { - Id = 118L, - FilterListId = 84L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock_ublock.txt" - }, - new - { - Id = 119L, - FilterListId = 85L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/IDKwhattoputhere/uBlock-Filters-Plus/master/uBlock-Filters-Plus.txt" - }, - new - { - Id = 120L, - FilterListId = 85L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/IDKwhattoputhere/uBlock-Filters-Plus/master/uBlock-Filters-Plus.txt" - }, - new - { - Id = 121L, - FilterListId = 85L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/IDKwhattoputhere/uBlock-Filters-Plus/master/uBlock-Filters-Plus.txt" - }, - new - { - Id = 122L, - FilterListId = 86L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/byaka/ublock-antiskimming-list/master/build/data.txt" - }, - new - { - Id = 123L, - FilterListId = 86L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/byaka/ublock-antiskimming-list/master/build/data.txt" - }, - new - { - Id = 124L, - FilterListId = 86L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/byaka/ublock-antiskimming-list/master/build/data.txt" - }, - new - { - Id = 125L, - FilterListId = 87L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/unbreak.txt" - }, - new - { - Id = 126L, - FilterListId = 87L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/uBlockOrigin/uAssets/master/filters/unbreak.txt" - }, - new - { - Id = 127L, - FilterListId = 87L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/uBlockOrigin/uAssets/master/filters/unbreak.txt" - }, - new - { - Id = 128L, - FilterListId = 88L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/privacy.txt" - }, - new - { - Id = 129L, - FilterListId = 88L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/uBlockOrigin/uAssets/master/filters/privacy.txt" - }, - new - { - Id = 130L, - FilterListId = 88L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/uBlockOrigin/uAssets/master/filters/privacy.txt" - }, - new - { - Id = 131L, - FilterListId = 89L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/filters.txt" - }, - new - { - Id = 132L, - FilterListId = 89L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/uBlockOrigin/uAssets/master/filters/filters.txt" - }, - new - { - Id = 133L, - FilterListId = 89L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/uBlockOrigin/uAssets/master/filters/filters.txt" - }, - new - { - Id = 137L, - FilterListId = 91L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/badware.txt" - }, - new - { - Id = 138L, - FilterListId = 91L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/uBlockOrigin/uAssets/master/filters/badware.txt" - }, - new - { - Id = 139L, - FilterListId = 91L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/uBlockOrigin/uAssets/master/filters/badware.txt" - }, - new - { - Id = 140L, - FilterListId = 93L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts" - }, - new - { - Id = 141L, - FilterListId = 93L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://sbc.io/hosts/alternates/gambling-porn-social/hosts" - }, - new - { - Id = 142L, - FilterListId = 93L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/gambling-porn-social/hosts" - }, - new - { - Id = 143L, - FilterListId = 94L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.topcashback.com/Misc/AdBlockWhiteList.aspx" - }, - new - { - Id = 144L, - FilterListId = 95L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts" - }, - new - { - Id = 145L, - FilterListId = 95L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://sbc.io/hosts/alternates/gambling-social/hosts" - }, - new - { - Id = 146L, - FilterListId = 95L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/gambling-social/hosts" - }, - new - { - Id = 147L, - FilterListId = 96L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts" - }, - new - { - Id = 148L, - FilterListId = 96L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://sbc.io/hosts/alternates/porn-social/hosts" - }, - new - { - Id = 149L, - FilterListId = 96L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/porn-social/hosts" - }, - new - { - Id = 151L, - FilterListId = 97L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hg.adblockplus.org/youtubefilters/raw-file/default/yt_annoyances_full.txt" - }, - new - { - Id = 153L, - FilterListId = 98L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hg.adblockplus.org/youtubefilters/raw-file/default/yt_annoyances_other.txt" - }, - new - { - Id = 154L, - FilterListId = 99L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/yous/YousList/master/youslist.txt" - }, - new - { - Id = 155L, - FilterListId = 99L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/yous/YousList/master/youslist.txt" - }, - new - { - Id = 156L, - FilterListId = 99L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/yous/YousList/master/youslist.txt" - }, - new - { - Id = 157L, - FilterListId = 100L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/wiltteri/subscriptions/master/wiltteri-reborn.txt" - }, - new - { - Id = 158L, - FilterListId = 100L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/wiltteri/subscriptions/master/wiltteri-reborn.txt" - }, - new - { - Id = 159L, - FilterListId = 100L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/wiltteri/subscriptions/master/wiltteri-reborn.txt" - }, - new - { - Id = 160L, - FilterListId = 101L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/wiltteri/subscriptions/master/wiltteri.txt" - }, - new - { - Id = 161L, - FilterListId = 101L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/wiltteri/subscriptions/master/wiltteri.txt" - }, - new - { - Id = 162L, - FilterListId = 101L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/wiltteri/subscriptions/master/wiltteri.txt" - }, - new - { - Id = 163L, - FilterListId = 102L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/ultralist.txt" - }, - new - { - Id = 164L, - FilterListId = 102L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/yourduskquibbles/webannoyances/master/ultralist.txt" - }, - new - { - Id = 165L, - FilterListId = 102L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/yourduskquibbles/webannoyances/master/ultralist.txt" - }, - new - { - Id = 166L, - FilterListId = 103L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts" - }, - new - { - Id = 167L, - FilterListId = 103L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts" - }, - new - { - Id = 168L, - FilterListId = 103L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-gambling-porn-social/hosts" - }, - new - { - Id = 169L, - FilterListId = 104L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts" - }, - new - { - Id = 170L, - FilterListId = 104L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://sbc.io/hosts/alternates/fakenews-porn-social/hosts" - }, - new - { - Id = 171L, - FilterListId = 104L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-porn-social/hosts" - }, - new - { - Id = 172L, - FilterListId = 105L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts" - }, - new - { - Id = 173L, - FilterListId = 105L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts" - }, - new - { - Id = 174L, - FilterListId = 105L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-gambling-social/hosts" - }, - new - { - Id = 175L, - FilterListId = 106L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts" - }, - new - { - Id = 176L, - FilterListId = 106L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts" - }, - new - { - Id = 177L, - FilterListId = 106L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-gambling-porn/hosts" - }, - new - { - Id = 178L, - FilterListId = 107L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts" - }, - new - { - Id = 179L, - FilterListId = 107L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://sbc.io/hosts/alternates/fakenews-social/hosts" - }, - new - { - Id = 180L, - FilterListId = 107L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-social/hosts" - }, - new - { - Id = 181L, - FilterListId = 108L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts" - }, - new - { - Id = 182L, - FilterListId = 108L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://sbc.io/hosts/alternates/fakenews-porn/hosts" - }, - new - { - Id = 183L, - FilterListId = 108L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-porn/hosts" - }, - new - { - Id = 184L, - FilterListId = 109L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts" - }, - new - { - Id = 185L, - FilterListId = 109L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://sbc.io/hosts/alternates/fakenews-gambling/hosts" - }, - new - { - Id = 186L, - FilterListId = 109L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-gambling/hosts" - }, - new - { - Id = 187L, - FilterListId = 110L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts" - }, - new - { - Id = 188L, - FilterListId = 110L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://sbc.io/hosts/alternates/fakenews/hosts" - }, - new - { - Id = 189L, - FilterListId = 110L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews/hosts" - }, - new - { - Id = 190L, - FilterListId = 111L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts" - }, - new - { - Id = 191L, - FilterListId = 111L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://sbc.io/hosts/alternates/social/hosts" - }, - new - { - Id = 192L, - FilterListId = 111L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/social/hosts" - }, - new - { - Id = 193L, - FilterListId = 112L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts" - }, - new - { - Id = 194L, - FilterListId = 112L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://sbc.io/hosts/alternates/porn/hosts" - }, - new - { - Id = 195L, - FilterListId = 112L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/porn/hosts" - }, - new - { - Id = 196L, - FilterListId = 113L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tofukko/filter/master/Adblock_Plus_list.txt" - }, - new - { - Id = 197L, - FilterListId = 114L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/thoughtconverge/abf/master/abf.txt" - }, - new - { - Id = 198L, - FilterListId = 114L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/thoughtconverge/abf/master/abf.txt" - }, - new - { - Id = 199L, - FilterListId = 114L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/thoughtconverge/abf/master/abf.txt" - }, - new - { - Id = 200L, - FilterListId = 115L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hostsfile.mine.nu/hosts0.txt" - }, - new - { - Id = 201L, - FilterListId = 116L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.zoso.ro/pages/rolist2.txt" - }, - new - { - Id = 202L, - FilterListId = 117L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/rolist+easylist.txt" - }, - new - { - Id = 203L, - FilterListId = 118L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.zoso.ro/pages/rolist.txt" - }, - new - { - Id = 204L, - FilterListId = 119L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://road.adblock.ro/lista.txt" - }, - new - { - Id = 205L, - FilterListId = 119L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tcptomato/ROad-Block/master/road-block-filters-light.txt" - }, - new - { - Id = 206L, - FilterListId = 119L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/tcptomato/ROad-Block/master/road-block-filters-light.txt" - }, - new - { - Id = 207L, - FilterListId = 131L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/advblock.txt" - }, - new - { - Id = 208L, - FilterListId = 132L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://denis-ovs.narod.ru/adblock.txt" - }, - new - { - Id = 209L, - FilterListId = 133L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/ruadlist+easylist.txt" - }, - new - { - Id = 210L, - FilterListId = 134L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/bitblock.txt" - }, - new - { - Id = 211L, - FilterListId = 135L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hostsfile.mine.nu/downloads/adblock.txt" - }, - new - { - Id = 212L, - FilterListId = 136L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/betterwebleon/slovenian-list/master/filters.txt" - }, - new - { - Id = 213L, - FilterListId = 136L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/betterwebleon/slovenian-list/master/filters.txt" - }, - new - { - Id = 214L, - FilterListId = 136L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/betterwebleon/slovenian-list/master/filters.txt" - }, - new - { - Id = 215L, - FilterListId = 137L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/data/StevenBlack/hosts" - }, - new - { - Id = 216L, - FilterListId = 137L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/StevenBlack/hosts/master/data/StevenBlack/hosts" - }, - new - { - Id = 217L, - FilterListId = 137L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/StevenBlack/hosts/raw/master/data/StevenBlack/hosts" - }, - new - { - Id = 221L, - FilterListId = 139L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Spam404/lists/master/main-blacklist.txt" - }, - new - { - Id = 222L, - FilterListId = 139L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/Spam404/lists/master/main-blacklist.txt" - }, - new - { - Id = 223L, - FilterListId = 139L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/Spam404/lists/master/main-blacklist.txt" - }, - new - { - Id = 224L, - FilterListId = 140L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Spam404/lists/master/adblock-list.txt" - }, - new - { - Id = 225L, - FilterListId = 140L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/Spam404/lists/master/adblock-list.txt" - }, - new - { - Id = 226L, - FilterListId = 140L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/Spam404/lists/master/adblock-list.txt" - }, - new - { - Id = 227L, - FilterListId = 141L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://shopping.mileageplus.com/adBlockWhitelist.php" - }, - new - { - Id = 228L, - FilterListId = 142L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://web.archive.org/web/20160221140104if_/http://adblock.gjtech.net/?format=adblock-plus" - }, - new - { - Id = 229L, - FilterListId = 143L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://rapidrewardsshopping.southwest.com/adBlockWhitelist.php" - }, - new - { - Id = 230L, - FilterListId = 144L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.aadvantageeshopping.com/adBlockWhitelist.php" - }, - new - { - Id = 231L, - FilterListId = 145L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.mileageplanshopping.com/adBlockWhitelist.php" - }, - new - { - Id = 232L, - FilterListId = 146L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://web.archive.org/web/20121106002043if_/http://www.schuzak.jp:80/other/abp.conf" - }, - new - { - Id = 233L, - FilterListId = 147L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://adblock.dk/block.csv" - }, - new - { - Id = 234L, - FilterListId = 147L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://adblock.schack.dk/block.txt" - }, - new - { - Id = 235L, - FilterListId = 150L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/cntblock.txt" - }, - new - { - Id = 236L, - FilterListId = 151L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.barclaycardrewardsboost.com/adBlockWhitelist.php" - }, - new - { - Id = 237L, - FilterListId = 152L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://pastebin.com/raw/r9a5WrZa" - }, - new - { - Id = 238L, - FilterListId = 155L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/chromium/filters/10.txt" - }, - new - { - Id = 239L, - FilterListId = 156L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/chromium/filters/13.txt" - }, - new - { - Id = 240L, - FilterListId = 157L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/chromium/filters/3.txt" - }, - new - { - Id = 241L, - FilterListId = 158L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/chromium/filters/9.txt" - }, - new - { - Id = 242L, - FilterListId = 159L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/chromium/filters/4.txt" - }, - new - { - Id = 243L, - FilterListId = 160L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/mac/filters/12.txt" - }, - new - { - Id = 244L, - FilterListId = 161L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/chromium/filters/1.txt" - }, - new - { - Id = 245L, - FilterListId = 162L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/android/filters/11.txt" - }, - new - { - Id = 246L, - FilterListId = 163L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/chromium/filters/7.txt" - }, - new - { - Id = 247L, - FilterListId = 164L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/chromium/filters/6.txt" - }, - new - { - Id = 248L, - FilterListId = 165L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/chromium/filters/5.txt" - }, - new - { - Id = 249L, - FilterListId = 166L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/chromium/filters/2.txt" - }, - new - { - Id = 250L, - FilterListId = 167L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/chromium/filters/8.txt" - }, - new - { - Id = 251L, - FilterListId = 168L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/windows/filters/15.txt" - }, - new - { - Id = 252L, - FilterListId = 169L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/chromium/filters/14.txt" - }, - new - { - Id = 253L, - FilterListId = 170L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hg.adblockplus.org/adwarefilters/raw-file/tip/adwarefilters.txt" - }, - new - { - Id = 254L, - FilterListId = 171L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://dl.dropboxusercontent.com/s/1ybzw9lb7m1qiyl/AAs.txt" - }, - new - { - Id = 255L, - FilterListId = 173L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://rlwpx.free.fr/WPFF/hmis.7z" - }, - new - { - Id = 256L, - FilterListId = 175L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/r4vi/block-the-eu-cookie-shit-list/master/filterlist.txt" - }, - new - { - Id = 257L, - FilterListId = 175L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/r4vi/block-the-eu-cookie-shit-list/master/filterlist.txt" - }, - new - { - Id = 258L, - FilterListId = 175L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/r4vi/block-the-eu-cookie-shit-list/master/filterlist.txt" - }, - new - { - Id = 259L, - FilterListId = 176L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/anarki999/Adblock-List-Archive/master/Better.fyiTrackersBlocklist.txt" - }, - new - { - Id = 260L, - FilterListId = 176L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/anarki999/Adblock-List-Archive/master/Better.fyiTrackersBlocklist.txt" - }, - new - { - Id = 261L, - FilterListId = 176L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/anarki999/Adblock-List-Archive/master/Better.fyiTrackersBlocklist.txt" - }, - new - { - Id = 262L, - FilterListId = 177L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://paulgb.github.io/BarbBlock/blacklists/hosts-file.txt" - }, - new - { - Id = 263L, - FilterListId = 178L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/rebelion76/bankiru_plus_adblock_list/master/bankiru_plus.txt" - }, - new - { - Id = 264L, - FilterListId = 178L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/rebelion76/bankiru_plus_adblock_list/master/bankiru_plus.txt" - }, - new - { - Id = 265L, - FilterListId = 178L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/rebelion76/bankiru_plus_adblock_list/master/bankiru_plus.txt" - }, - new - { - Id = 266L, - FilterListId = 179L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.hostsfile.org/Downloads/hosts.txt" - }, - new - { - Id = 267L, - FilterListId = 181L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://git.sourceforge.jp/view?p=ayucat-list/ayucat-list.git;a=blob_plain;f=ayucat-list.txt;hb=b254c74c132832a3ade7b9d42c2ef8d3dd59fdb9" - }, - new - { - Id = 268L, - FilterListId = 181L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Ayucat Powerful List.txt" - }, - new - { - Id = 269L, - FilterListId = 183L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yhonay/antipopads/master/popads.txt" - }, - new - { - Id = 270L, - FilterListId = 183L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/Yhonay/antipopads/master/popads.txt" - }, - new - { - Id = 271L, - FilterListId = 183L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/Yhonay/antipopads/master/popads.txt" - }, - new - { - Id = 272L, - FilterListId = 184L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/fanboy-antifacebook.txt" - }, - new - { - Id = 273L, - FilterListId = 185L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://rlwpx.free.fr/WPFF/hblc.7z" - }, - new - { - Id = 274L, - FilterListId = 186L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://rlwpx.free.fr/WPFF/hrsk.7z" - }, - new - { - Id = 275L, - FilterListId = 186L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/Airelle-hrsk.txt" - }, - new - { - Id = 276L, - FilterListId = 187L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://rlwpx.free.fr/WPFF/htrc.7z" - }, - new - { - Id = 277L, - FilterListId = 187L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/Airelle-trc.txt" - }, - new - { - Id = 278L, - FilterListId = 188L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://rlwpx.free.fr/WPFF/hsex.7z" - }, - new - { - Id = 279L, - FilterListId = 189L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://rlwpx.free.fr/WPFF/hpub.7z" - }, - new - { - Id = 280L, - FilterListId = 190L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.Spam/hosts" - }, - new - { - Id = 281L, - FilterListId = 190L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/FadeMind/hosts.extras/master/add.Spam/hosts" - }, - new - { - Id = 282L, - FilterListId = 190L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitcdn.link/repo/FadeMind/hosts.extras/master/add.Spam/hosts" - }, - new - { - Id = 283L, - FilterListId = 191L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.Risk/hosts" - }, - new - { - Id = 284L, - FilterListId = 191L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/FadeMind/hosts.extras/master/add.Risk/hosts" - }, - new - { - Id = 285L, - FilterListId = 191L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitcdn.link/repo/FadeMind/hosts.extras/master/add.Risk/hosts" - }, - new - { - Id = 286L, - FilterListId = 192L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.Dead/hosts" - }, - new - { - Id = 287L, - FilterListId = 192L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/FadeMind/hosts.extras/master/add.Dead/hosts" - }, - new - { - Id = 288L, - FilterListId = 192L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitcdn.link/repo/FadeMind/hosts.extras/master/add.Dead/hosts" - }, - new - { - Id = 289L, - FilterListId = 197L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/abpindo+easylist.txt" - }, - new - { - Id = 290L, - FilterListId = 198L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ABPindo/indonesianadblockrules/master/subscriptions/abpindo.txt" - }, - new - { - Id = 291L, - FilterListId = 198L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/heradhis/indonesianadblockrules/master/subscriptions/abpindo.txt" - }, - new - { - Id = 292L, - FilterListId = 198L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/ABPindo/indonesianadblockrules/master/subscriptions/abpindo.txt" - }, - new - { - Id = 293L, - FilterListId = 199L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/gioxx/xfiles/master/facebook.txt" - }, - new - { - Id = 294L, - FilterListId = 199L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/gioxx/xfiles/master/facebook.txt" - }, - new - { - Id = 295L, - FilterListId = 199L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/gioxx/xfiles/master/facebook.txt" - }, - new - { - Id = 296L, - FilterListId = 200L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/gioxx/xfiles/master/siteblock.txt" - }, - new - { - Id = 297L, - FilterListId = 200L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/gioxx/xfiles/master/siteblock.txt" - }, - new - { - Id = 298L, - FilterListId = 200L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/gioxx/xfiles/master/siteblock.txt" - }, - new - { - Id = 299L, - FilterListId = 201L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/gioxx/xfiles/master/filtri.txt" - }, - new - { - Id = 300L, - FilterListId = 201L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/gioxx/xfiles/master/filtri.txt" - }, - new - { - Id = 301L, - FilterListId = 201L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/gioxx/xfiles/master/filtri.txt" - }, - new - { - Id = 302L, - FilterListId = 202L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/k2jp/abp-japanese-filters/master/abpjf_paranoid.txt" - }, - new - { - Id = 303L, - FilterListId = 202L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/k2jp/abp-japanese-filters/master/abpjf_paranoid.txt" - }, - new - { - Id = 304L, - FilterListId = 202L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/k2jp/abp-japanese-filters/master/abpjf_paranoid.txt" - }, - new - { - Id = 305L, - FilterListId = 203L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/k2jp/abp-japanese-filters/master/abpjf.txt" - }, - new - { - Id = 306L, - FilterListId = 203L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/k2jp/abp-japanese-filters/master/abpjf.txt" - }, - new - { - Id = 307L, - FilterListId = 203L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/k2jp/abp-japanese-filters/master/abpjf.txt" - }, - new - { - Id = 308L, - FilterListId = 204L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/k2jp/abp-japanese-filters/master/abpjf_element_hiding.txt" - }, - new - { - Id = 309L, - FilterListId = 204L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/k2jp/abp-japanese-filters/master/abpjf_element_hiding.txt" - }, - new - { - Id = 310L, - FilterListId = 204L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/k2jp/abp-japanese-filters/master/abpjf_element_hiding.txt" - }, - new - { - Id = 311L, - FilterListId = 205L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/k2jp/abp-japanese-filters/master/abpjf_3rd_party_sns.txt" - }, - new - { - Id = 312L, - FilterListId = 205L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/k2jp/abp-japanese-filters/master/abpjf_3rd_party_sns.txt" - }, - new - { - Id = 313L, - FilterListId = 205L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/k2jp/abp-japanese-filters/master/abpjf_3rd_party_sns.txt" - }, - new - { - Id = 314L, - FilterListId = 206L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/abpvn/abpvn/master/filter/abpvn.txt" - }, - new - { - Id = 315L, - FilterListId = 206L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/abpvn/abpvn/master/filter/abpvn.txt" - }, - new - { - Id = 316L, - FilterListId = 206L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/abpvn/abpvn/master/filter/abpvn.txt" - }, - new - { - Id = 317L, - FilterListId = 207L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/reek/anti-adblock-killer/master/anti-adblock-killer-filters.txt" - }, - new - { - Id = 318L, - FilterListId = 207L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/reek/anti-adblock-killer/master/anti-adblock-killer-filters.txt" - }, - new - { - Id = 319L, - FilterListId = 207L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/reek/anti-adblock-killer/master/anti-adblock-killer-filters.txt" - }, - new - { - Id = 320L, - FilterListId = 212L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.2o7Net/hosts" - }, - new - { - Id = 321L, - FilterListId = 212L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/FadeMind/hosts.extras/master/add.2o7Net/hosts" - }, - new - { - Id = 322L, - FilterListId = 212L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitcdn.link/repo/FadeMind/hosts.extras/master/add.2o7Net/hosts" - }, - new - { - Id = 323L, - FilterListId = 213L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kbinani/adblock-youtube-ads/master/signed.txt" - }, - new - { - Id = 324L, - FilterListId = 213L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/kbinani/adblock-youtube-ads/master/signed.txt" - }, - new - { - Id = 325L, - FilterListId = 213L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/kbinani/adblock-youtube-ads/master/signed.txt" - }, - new - { - Id = 326L, - FilterListId = 214L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/antiadblockfilters.txt" - }, - new - { - Id = 327L, - FilterListId = 215L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/adblockpolska/Adblock_PL_List/master/adblock_polska.txt" - }, - new - { - Id = 328L, - FilterListId = 215L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/adblockpolska/Adblock_PL_List/master/adblock_polska.txt" - }, - new - { - Id = 329L, - FilterListId = 215L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/adblockpolska/Adblock_PL_List/master/adblock_polska.txt" - }, - new - { - Id = 330L, - FilterListId = 216L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/adblock_social_filters/adblock_social_list.txt" - }, - new - { - Id = 331L, - FilterListId = 216L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/MajkiIT/polish-ads-filter/master/adblock_social_filters/adblock_social_list.txt" - }, - new - { - Id = 332L, - FilterListId = 216L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/MajkiIT/polish-ads-filter/master/adblock_social_filters/adblock_social_list.txt" - }, - new - { - Id = 333L, - FilterListId = 217L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://ideone.com/plain/K452p" - }, - new - { - Id = 334L, - FilterListId = 220L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://web.archive.org/web/20160411115130if_/http://adblock-korea.googlecode.com:80/git/adblock-korea.txt" - }, - new - { - Id = 335L, - FilterListId = 221L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gurud.ee/ab.txt" - }, - new - { - Id = 336L, - FilterListId = 222L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/SlashArash/adblockfa/master/adblockfa.txt" - }, - new - { - Id = 337L, - FilterListId = 222L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/SlashArash/adblockfa/master/adblockfa.txt" - }, - new - { - Id = 338L, - FilterListId = 222L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/SlashArash/adblockfa/master/adblockfa.txt" - }, - new - { - Id = 339L, - FilterListId = 223L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock.txt" - }, - new - { - Id = 340L, - FilterListId = 223L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock.txt" - }, - new - { - Id = 341L, - FilterListId = 223L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock.txt" - }, - new - { - Id = 342L, - FilterListId = 224L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/cookies_filters/adblock_cookies.txt" - }, - new - { - Id = 343L, - FilterListId = 224L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/MajkiIT/polish-ads-filter/master/cookies_filters/adblock_cookies.txt" - }, - new - { - Id = 344L, - FilterListId = 224L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/MajkiIT/polish-ads-filter/master/cookies_filters/adblock_cookies.txt" - }, - new - { - Id = 345L, - FilterListId = 225L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://sites.google.com/site/logroid/files/hosts.txt?attredirects=0" - }, - new - { - Id = 346L, - FilterListId = 226L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://adaway.org/hosts.txt" - }, - new - { - Id = 347L, - FilterListId = 227L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/exceptionrules.txt" - }, - new - { - Id = 348L, - FilterListId = 228L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/farrokhi/adblock-iran/master/filter.txt" - }, - new - { - Id = 349L, - FilterListId = 228L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/farrokhi/adblock-iran/master/filter.txt" - }, - new - { - Id = 351L, - FilterListId = 229L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hg.adblockplus.org/youtubefilters/raw-file/default/yt_annoyances_comments.txt" - }, - new - { - Id = 352L, - FilterListId = 232L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ryanbr/fanboy-adblock/master/fake-news.txt" - }, - new - { - Id = 354L, - FilterListId = 233L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hg.adblockplus.org/facebookfilters/raw-file/default/fb_annoyances_sidebar.txt" - }, - new - { - Id = 355L, - FilterListId = 234L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://www.squirrelconspiracy.net/abp/facebook-privacy-list.txt" - }, - new - { - Id = 356L, - FilterListId = 234L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Facebook Privacy List.txt" - }, - new - { - Id = 358L, - FilterListId = 235L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hg.adblockplus.org/facebookfilters/raw-file/default/fb_annoyances_newsfeed.txt" - }, - new - { - Id = 360L, - FilterListId = 236L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hg.adblockplus.org/facebookfilters/raw-file/default/fb_annoyances_full.txt" - }, - new - { - Id = 361L, - FilterListId = 237L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://adblock.ee/list.php" - }, - new - { - Id = 362L, - FilterListId = 238L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.ebates.com/whitelist/ebates-cash-back-shopping.txt" - }, - new - { - Id = 363L, - FilterListId = 239L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easytest.txt" - }, - new - { - Id = 364L, - FilterListId = 240L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easyprivacy_nointernational.txt" - }, - new - { - Id = 365L, - FilterListId = 241L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easyprivacy+easylist.txt" - }, - new - { - Id = 366L, - FilterListId = 242L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist.to/easylist/easyprivacy.txt" - }, - new - { - Id = 367L, - FilterListId = 242L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/easyprivacy.txt" - }, - new - { - Id = 368L, - FilterListId = 242L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easyprivacy.txt" - }, - new - { - Id = 369L, - FilterListId = 243L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylist_noadult.txt" - }, - new - { - Id = 370L, - FilterListId = 244L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylist_noelemhide.txt" - }, - new - { - Id = 371L, - FilterListId = 245L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/easylist-thailand/easylist-thailand/master/subscription/easylist-thailand.txt" - }, - new - { - Id = 372L, - FilterListId = 246L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistspanish.txt" - }, - new - { - Id = 373L, - FilterListId = 247L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/fanboy-annoyance.txt" - }, - new - { - Id = 374L, - FilterListId = 247L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/fanboy-annoyance.txt" - }, - new - { - Id = 375L, - FilterListId = 247L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://easylist.to/easylist/fanboy-annoyance.txt" - }, - new - { - Id = 376L, - FilterListId = 248L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistlithuania+easylist.txt" - }, - new - { - Id = 377L, - FilterListId = 249L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/fanboy-antifonts.txt" - }, - new - { - Id = 378L, - FilterListId = 250L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylist-cookie.txt" - }, - new - { - Id = 380L, - FilterListId = 251L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mozillahispano/nauscopio-filtros/master/filtros.txt" - }, - new - { - Id = 381L, - FilterListId = 252L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filtri-dns.ga/filtri.txt" - }, - new - { - Id = 382L, - FilterListId = 253L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/hant0508/uBlock-filters/master/filters.txt" - }, - new - { - Id = 383L, - FilterListId = 254L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/fanboy-vietnam.txt" - }, - new - { - Id = 384L, - FilterListId = 255L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/r/fanboy-ultimate.txt" - }, - new - { - Id = 385L, - FilterListId = 256L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/fanboy-turkish.txt" - }, - new - { - Id = 386L, - FilterListId = 257L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/fanboy-swedish.txt" - }, - new - { - Id = 387L, - FilterListId = 258L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/fanboy-espanol.txt" - }, - new - { - Id = 388L, - FilterListId = 259L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/fanboy-social.txt" - }, - new - { - Id = 389L, - FilterListId = 259L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/fanboy-social.txt" - }, - new - { - Id = 390L, - FilterListId = 260L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/fanboy-polish.txt" - }, - new - { - Id = 391L, - FilterListId = 261L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/fanboy-korean.txt" - }, - new - { - Id = 392L, - FilterListId = 262L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/fanboy-japanese.txt" - }, - new - { - Id = 393L, - FilterListId = 263L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/israelilist/IsraelList.txt" - }, - new - { - Id = 394L, - FilterListId = 264L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/fanboy-indian.txt" - }, - new - { - Id = 395L, - FilterListId = 265L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/enhancedstats.txt" - }, - new - { - Id = 396L, - FilterListId = 266L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/r/fanboy-complete.txt" - }, - new - { - Id = 397L, - FilterListId = 267L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/EasyList-Lithuania/easylist_lithuania/master/easylistlithuania.txt" - }, - new - { - Id = 398L, - FilterListId = 268L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cjx82630/cjxlist/master/cjxlist.txt" - }, - new - { - Id = 399L, - FilterListId = 268L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitee.com/cjx82630/cjxlist/raw/master/cjxlist.txt" - }, - new - { - Id = 400L, - FilterListId = 269L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistitaly+easylist.txt" - }, - new - { - Id = 403L, - FilterListId = 272L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://s3.amazonaws.com/lists.disconnect.me/simple_tracking.txt" - }, - new - { - Id = 404L, - FilterListId = 274L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://s3.amazonaws.com/lists.disconnect.me/simple_malvertising.txt" - }, - new - { - Id = 405L, - FilterListId = 275L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://s3.amazonaws.com/lists.disconnect.me/simple_ad.txt" - }, - new - { - Id = 406L, - FilterListId = 276L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://someonewhocares.org/hosts/zero/hosts" - }, - new - { - Id = 407L, - FilterListId = 276L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/data/someonewhocares.org/hosts" - }, - new - { - Id = 408L, - FilterListId = 277L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Czech Filters for Adblock Plus" - }, - new - { - Id = 409L, - FilterListId = 278L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nicedirector/ADBlock/master/Adblock_Filter.txt" - }, - new - { - Id = 410L, - FilterListId = 279L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.eff.org/files/cookieblocklist.txt" - }, - new - { - Id = 411L, - FilterListId = 280L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cpeterso/clickbait-blocklist/master/clickbait-blocklist.txt" - }, - new - { - Id = 412L, - FilterListId = 281L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cjx82630/cjxlist/master/cjx-annoyance.txt" - }, - new - { - Id = 413L, - FilterListId = 281L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitee.com/cjx82630/cjxlist/raw/master/cjx-annoyance.txt" - }, - new - { - Id = 414L, - FilterListId = 282L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://sysctl.org/cameleon/hosts" - }, - new - { - Id = 415L, - FilterListId = 283L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/bulgarian_list+easylist.txt" - }, - new - { - Id = 416L, - FilterListId = 284L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://stanev.org/abp/adblock_bg.txt" - }, - new - { - Id = 417L, - FilterListId = 285L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://malwaredomains.lehigh.edu/files/dynamic_dns.txt" - }, - new - { - Id = 422L, - FilterListId = 288L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://malwaredomains.lehigh.edu/files/immortal_domains.txt" - }, - new - { - Id = 424L, - FilterListId = 289L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistitaly.txt" - }, - new - { - Id = 425L, - FilterListId = 290L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/israellist+easylist.txt" - }, - new - { - Id = 426L, - FilterListId = 291L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/easylist/EasyListHebrew/master/EasyListHebrew.txt" - }, - new - { - Id = 427L, - FilterListId = 292L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistgermany+easylist.txt" - }, - new - { - Id = 428L, - FilterListId = 293L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistgermany.txt" - }, - new - { - Id = 429L, - FilterListId = 293L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://easylist.to/easylistgermany/easylistgermany.txt" - }, - new - { - Id = 430L, - FilterListId = 294L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistdutch+easylist.txt" - }, - new - { - Id = 431L, - FilterListId = 295L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistdutch.txt" - }, - new - { - Id = 432L, - FilterListId = 297L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistczechslovak+easylist.txt" - }, - new - { - Id = 433L, - FilterListId = 298L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nfer/easylistchina_it/master/easylistchina_it.txt" - }, - new - { - Id = 434L, - FilterListId = 299L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistchina+easylist.txt" - }, - new - { - Id = 435L, - FilterListId = 300L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistchina.txt" - }, - new - { - Id = 436L, - FilterListId = 301L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist.to/easylist/easylist.txt" - }, - new - { - Id = 437L, - FilterListId = 301L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/easylist.txt" - }, - new - { - Id = 438L, - FilterListId = 301L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylist.txt" - }, - new - { - Id = 439L, - FilterListId = 302L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://feeds.dshield.org/block.txt" - }, - new - { - Id = 442L, - FilterListId = 305L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tomasko126/easylistczechandslovak/master/filters.txt" - }, - new - { - Id = 444L, - FilterListId = 306L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hg.adblockplus.org/youtubefilters/raw-file/default/yt_annoyances_suggestions.txt" - }, - new - { - Id = 445L, - FilterListId = 307L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/taylr/linkedinsanity/master/spies-dislike-us.txt" - }, - new - { - Id = 446L, - FilterListId = 308L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/hoshsadiq/adblock-nocoin-list/master/hosts.txt" - }, - new - { - Id = 447L, - FilterListId = 309L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/complete/hosts.txt" - }, - new - { - Id = 448L, - FilterListId = 311L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/elypter/generic_annoying_stickybar_filter/master/generic_header_list.txt" - }, - new - { - Id = 449L, - FilterListId = 312L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/elypter/filter_processor/master/generated_filterlists/blockhead(decoy_generic_extraction).txt" - }, - new - { - Id = 450L, - FilterListId = 313L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/elypter/filter_processor/master/generated_filterlists/blockhead(decoy_generic_selection).txt" - }, - new - { - Id = 451L, - FilterListId = 315L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://alleblock.pl/alleblock/alleblock.txt" - }, - new - { - Id = 452L, - FilterListId = 316L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bkrucarci/turk-adlist/master/hosts" - }, - new - { - Id = 453L, - FilterListId = 317L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/anudeepND/blacklist/master/adservers.txt" - }, - new - { - Id = 454L, - FilterListId = 318L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/anudeepND/blacklist/master/CoinMiner.txt" - }, - new - { - Id = 455L, - FilterListId = 319L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/anudeepND/youtubeadsblacklist/master/domainlist.txt" - }, - new - { - Id = 456L, - FilterListId = 320L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/anudeepND/youtubeadsblacklist/master/hosts.txt" - }, - new - { - Id = 457L, - FilterListId = 321L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/anudeepND/whitelist/master/domains/whitelist.txt" - }, - new - { - Id = 458L, - FilterListId = 322L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/anudeepND/whitelist/master/domains/referral-sites.txt" - }, - new - { - Id = 459L, - FilterListId = 323L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/anudeepND/whitelist/master/domains/optional-list.txt" - }, - new - { - Id = 460L, - FilterListId = 324L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/arcetera/Minimal-Hosts-Blocker/master/etc/MinimalHostsBlocker/minimalhosts" - }, - new - { - Id = 461L, - FilterListId = 325L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bjornstar/hosts/master/hosts" - }, - new - { - Id = 462L, - FilterListId = 327L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/stayingonbrowser/Staying On The Phone Browser" - }, - new - { - Id = 463L, - FilterListId = 327L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/stayingonbrowser/Staying On The Phone Browser" - }, - new - { - Id = 464L, - FilterListId = 329L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/VeleSila/yhosts/master/hosts.txt" - }, - new - { - Id = 465L, - FilterListId = 330L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/ThaiConsentHosts/master/ThaiConsentHosts.txt" - }, - new - { - Id = 466L, - FilterListId = 330L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/ThaiConsentHosts/raw/master/ThaiConsentHosts.txt" - }, - new - { - Id = 467L, - FilterListId = 331L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/ThaiParanoidBlock/master/ThaiParanoid.txt" - }, - new - { - Id = 468L, - FilterListId = 331L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/ThaiParanoidBlock/raw/master/ThaiParanoid.txt" - }, - new - { - Id = 469L, - FilterListId = 332L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/ThaiAntiForceLike/master/AntiForceLike.txt" - }, - new - { - Id = 470L, - FilterListId = 333L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/pureexe/LeeCh-List/master/anime.txt" - }, - new - { - Id = 471L, - FilterListId = 334L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://warui.intaa.net/adhosts/hosts.txt" - }, - new - { - Id = 472L, - FilterListId = 335L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/multiverse2011/adawaylist-jp/master/hosts" - }, - new - { - Id = 473L, - FilterListId = 336L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://sites.google.com/site/cosmonoteshosts/hosts_for_Windows8.txt" - }, - new - { - Id = 474L, - FilterListId = 337L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://sites.google.com/site/cosmonoteshosts/hosts_for_Adaway.txt" - }, - new - { - Id = 475L, - FilterListId = 338L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://sites.google.com/site/cosmonoteshosts/hosts_Ultimate.txt" - }, - new - { - Id = 476L, - FilterListId = 339L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Lerist/Go-Hosts/master/hosts-ad" - }, - new - { - Id = 477L, - FilterListId = 340L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Lerist/Go-Hosts/master/hosts" - }, - new - { - Id = 478L, - FilterListId = 341L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/adblock_social_filters/social_filters_uB_AG.txt" - }, - new - { - Id = 480L, - FilterListId = 343L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/cookies_filters/cookies_uB_AG.txt" - }, - new - { - Id = 482L, - FilterListId = 345L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock_adguard.txt" - }, - new - { - Id = 483L, - FilterListId = 346L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock_test.txt" - }, - new - { - Id = 484L, - FilterListId = 347L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-pihole-filters/hostfile.txt" - }, - new - { - Id = 485L, - FilterListId = 348L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://vxvault.net/URL_List.php" - }, - new - { - Id = 486L, - FilterListId = 349L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/KADhosts/master/KADhosts_without_controversies.txt" - }, - new - { - Id = 487L, - FilterListId = 349L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/FiltersHeroes/KADhosts/master/KADhosts_without_controversies.txt" - }, - new - { - Id = 488L, - FilterListId = 349L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/FiltersHeroes/KADhosts/master/KADhosts_without_controversies.txt" - }, - new - { - Id = 489L, - FilterListId = 350L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/chromium/filters/16.txt" - }, - new - { - Id = 490L, - FilterListId = 352L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eladkarako/hosts/master/build/hosts_adblock.txt" - }, - new - { - Id = 491L, - FilterListId = 353L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eladkarako/hosts/master/build/hosts_adblock_anti_annoyances_block.txt" - }, - new - { - Id = 492L, - FilterListId = 354L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eladkarako/hosts/master/build/hosts_adblock_anti_annoyances_block_inline_script.txt" - }, - new - { - Id = 493L, - FilterListId = 355L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eladkarako/hosts/master/build/hosts_adblock_anti_annoyances_hide.txt" - }, - new - { - Id = 494L, - FilterListId = 356L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eladkarako/hosts/master/build/hosts_adblock_anti_annoyances_style_inject.txt" - }, - new - { - Id = 495L, - FilterListId = 357L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/list.txt" - }, - new - { - Id = 496L, - FilterListId = 358L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/list_optional.txt" - }, - new - { - Id = 497L, - FilterListId = 359L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/list_browser.txt" - }, - new - { - Id = 498L, - FilterListId = 360L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/hosts" - }, - new - { - Id = 499L, - FilterListId = 361L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/hosts_optional" - }, - new - { - Id = 500L, - FilterListId = 362L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/hosts_browser" - }, - new - { - Id = 501L, - FilterListId = 363L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/list_browser_UBO.txt" - }, - new - { - Id = 502L, - FilterListId = 367L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/uMatrix-Rules/uMatrix-Rules-Domain/master/rules.txt" - }, - new - { - Id = 503L, - FilterListId = 368L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/uMatrix-Rules/uMatrix-Rules-Site/master/rules.txt" - }, - new - { - Id = 504L, - FilterListId = 369L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tomasko126/easylistczechandslovak/master/filters_ublock.txt" - }, - new - { - Id = 505L, - FilterListId = 370L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easylistczechslovak+easylist.tpl" - }, - new - { - Id = 506L, - FilterListId = 371L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AFNIL-AntiFakeNewsInternationalList/AFNIL/master/AFNIL-ABP-uBO.txt" - }, - new - { - Id = 507L, - FilterListId = 372L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Hubird-au/Adversity/master/Adversity.txt" - }, - new - { - Id = 508L, - FilterListId = 373L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Hubird-au/Adversity/master/Antisocial.txt" - }, - new - { - Id = 509L, - FilterListId = 374L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Hubird-au/Adversity/master/Extreme-Measures.txt" - }, - new - { - Id = 510L, - FilterListId = 375L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/hl2guide/All-in-One-Customized-Adblock-List/master/aio.txt" - }, - new - { - Id = 511L, - FilterListId = 376L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/haykam821/Blocklists/master/mmo.txt" - }, - new - { - Id = 512L, - FilterListId = 377L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cb-software/CB-Malicious-Domains/master/block_lists/adblock_plus.txt" - }, - new - { - Id = 513L, - FilterListId = 378L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cb-software/CB-Malicious-Domains/master/block_lists/hosts" - }, - new - { - Id = 514L, - FilterListId = 379L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gist.githubusercontent.com/gorhill/ef1b62d606473c68d524/raw/f8181faac18cb5172c7c9bca8e5a3b22f0c925d0/gistfile1.txt" - }, - new - { - Id = 515L, - FilterListId = 380L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/toshiya44/myAssets/master/filters-exp.txt" - }, - new - { - Id = 516L, - FilterListId = 381L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://rickrolldb.com/ricklist.txt" - }, - new - { - Id = 517L, - FilterListId = 383L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://austinhuang.me/0131-block-list/list.txt" - }, - new - { - Id = 518L, - FilterListId = 385L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Username Hider for Compilation Creators.txt" - }, - new - { - Id = 519L, - FilterListId = 385L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Username Hider for Compilation Creators.txt" - }, - new - { - Id = 520L, - FilterListId = 388L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/DandelionSproutsNorskeFiltre.tpl" - }, - new - { - Id = 521L, - FilterListId = 388L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/DandelionSproutsNorskeFiltre.tpl" - }, - new - { - Id = 522L, - FilterListId = 390L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAntiAnnoyingSpecialSupplement/master/polish_rss_filters.txt" - }, - new - { - Id = 523L, - FilterListId = 391L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/IHateOverpromotedGames.txt" - }, - new - { - Id = 524L, - FilterListId = 391L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/IHateOverpromotedGames.txt" - }, - new - { - Id = 525L, - FilterListId = 392L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/BrowseWebsitesWithoutLoggingIn.txt" - }, - new - { - Id = 526L, - FilterListId = 392L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/BrowseWebsitesWithoutLoggingIn.txt" - }, - new - { - Id = 527L, - FilterListId = 393L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Dandelion Sprout-s Redirector Assistant List/DandelionSproutRedirectorList.json" - }, - new - { - Id = 528L, - FilterListId = 393L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Dandelion Sprout-s Redirector Assistant List/DandelionSproutRedirectorList.json" - }, - new - { - Id = 529L, - FilterListId = 395L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/raghavdua1995/DNSlock-PiHole-whitelist/master/whitelist.list" - }, - new - { - Id = 530L, - FilterListId = 396L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/NanoAdblocker/NanoFilters/master/NanoFilters/NanoBase.txt" - }, - new - { - Id = 531L, - FilterListId = 397L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/NanoAdblocker/NanoFilters/master/NanoFilters/NanoWhitelist.txt" - }, - new - { - Id = 532L, - FilterListId = 398L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/NanoAdblocker/NanoFilters/master/NanoFilters/NanoAnnoyance.txt" - }, - new - { - Id = 533L, - FilterListId = 399L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/lassekongo83/Frellwits-filter-lists/master/Frellwits-Swedish-Filter.txt" - }, - new - { - Id = 534L, - FilterListId = 399L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://repo.or.cz/Adblock-list-backups-Frellwits-filter-lists.git/blob_plain/refs/heads/master:/Frellwits-Swedish-Filter.txt" - }, - new - { - Id = 535L, - FilterListId = 400L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/notracking/hosts-blocklists/master/domains.txt" - }, - new - { - Id = 536L, - FilterListId = 401L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/notracking/hosts-blocklists/master/hostnames.txt" - }, - new - { - Id = 537L, - FilterListId = 403L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/lassekongo83/Frellwits-filter-lists/master/emoji-filter.txt" - }, - new - { - Id = 538L, - FilterListId = 403L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://repo.or.cz/Adblock-list-backups-Frellwits-filter-lists.git/blob_plain/refs/heads/master:/emoji-filter.txt" - }, - new - { - Id = 539L, - FilterListId = 405L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/annoyances.txt" - }, - new - { - Id = 540L, - FilterListId = 410L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/resource-abuse.txt" - }, - new - { - Id = 541L, - FilterListId = 412L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gist.githubusercontent.com/BBcan177/d7105c242f17f4498f81/raw/201968fa11b1f409d408a129a0774ffedb1560e2/MS-3" - }, - new - { - Id = 542L, - FilterListId = 413L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gist.githubusercontent.com/BBcan177/b6df57cef74e28d90acf1eec93d62d3b/raw/f0996cf5248657ada2adb396f3636be8716b99eb/MS-4" - }, - new - { - Id = 543L, - FilterListId = 414L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gist.githubusercontent.com/BBcan177/4a8bf37c131be4803cb2/raw/343ff780e15205b4dd0de37c86af34cfb26b2fbe/MS-2" - }, - new - { - Id = 544L, - FilterListId = 415L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gist.githubusercontent.com/BBcan177/bf29d47ea04391cb3eb0/raw/7290e0681bcd07415420b5c80a253652fd13f840/MS-1" - }, - new - { - Id = 545L, - FilterListId = 416L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gist.githubusercontent.com/BBcan177/2a9fc2548c3c5a5e2dc86e580b5795d2/raw/2f5c90ffb3bd02199ace1b16a0bd9f53b29f0879/EasyList_DE" - }, - new - { - Id = 546L, - FilterListId = 417L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/matomo-org/referrer-spam-blacklist/master/spammers.txt" - }, - new - { - Id = 547L, - FilterListId = 418L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/desbma/referer-spam-domains-blacklist/master/spammers.txt" - }, - new - { - Id = 548L, - FilterListId = 419L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.joewein.net/dl/bl/dom-bl-base.txt" - }, - new - { - Id = 549L, - FilterListId = 420L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.joewein.net/dl/bl/from-bl.txt" - }, - new - { - Id = 550L, - FilterListId = 421L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/Kurobeats/phishing_hosts/raw/master/hosts" - }, - new - { - Id = 551L, - FilterListId = 422L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ligyxy/Blocklist/master/BLOCKLIST" - }, - new - { - Id = 552L, - FilterListId = 424L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gist.githubusercontent.com/MOxFIVE/4730cac715ef406bd8eac7b29335be4a/raw/d21fa08e97963edde372d0d3e50703c783c9c32e/Personal%2520Blocklist.txt" - }, - new - { - Id = 553L, - FilterListId = 425L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nabble/semalt-blocker/master/domains/blocked" - }, - new - { - Id = 554L, - FilterListId = 426L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://osint.bambenekconsulting.com/feeds/c2-ipmasterlist.txt" - }, - new - { - Id = 555L, - FilterListId = 427L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://phishing.mailscanner.info/phishing.bad.sites.conf" - }, - new - { - Id = 556L, - FilterListId = 428L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.threatcrowd.org/feeds/domains.txt" - }, - new - { - Id = 557L, - FilterListId = 429L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/betterwebleon/international-list/master/filters.txt" - }, - new - { - Id = 558L, - FilterListId = 430L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/AdawayHosts" - }, - new - { - Id = 559L, - FilterListId = 430L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/AdawayHosts" - }, - new - { - Id = 560L, - FilterListId = 431L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Dandelion Sprout's Website Stretcher.txt" - }, - new - { - Id = 561L, - FilterListId = 431L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Dandelion Sprout%27s Website Stretcher.txt" - }, - new - { - Id = 562L, - FilterListId = 432L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-FіМ List.txt" - }, - new - { - Id = 563L, - FilterListId = 432L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-FіМ List.txt" - }, - new - { - Id = 564L, - FilterListId = 433L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-IMDB List.txt" - }, - new - { - Id = 565L, - FilterListId = 433L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-IMDB List.txt" - }, - new - { - Id = 566L, - FilterListId = 434L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/StopAutoplayOnYouTube.txt" - }, - new - { - Id = 567L, - FilterListId = 434L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/StopAutoplayOnYouTube.txt" - }, - new - { - Id = 568L, - FilterListId = 435L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/googlehosts/hosts/master/hosts-files/hosts" - }, - new - { - Id = 569L, - FilterListId = 435L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://git.qvq.network/googlehosts/hosts/raw/master/hosts-files/hosts" - }, - new - { - Id = 570L, - FilterListId = 436L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/lassekongo83/Frellwits-filter-lists/master/i-dont-want-your-app.txt" - }, - new - { - Id = 571L, - FilterListId = 436L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://repo.or.cz/Adblock-list-backups-Frellwits-filter-lists.git/blob_plain/refs/heads/master:/i-dont-want-your-app.txt" - }, - new - { - Id = 572L, - FilterListId = 437L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/easylistbrasil/easylistbrasil/filtro/easylistbrasil.txt" - }, - new - { - Id = 573L, - FilterListId = 438L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/SessionReplay.txt" - }, - new - { - Id = 574L, - FilterListId = 439L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/SmartTV.txt" - }, - new - { - Id = 575L, - FilterListId = 440L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/android-tracking.txt" - }, - new - { - Id = 576L, - FilterListId = 441L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/static/w3kbl.txt" - }, - new - { - Id = 577L, - FilterListId = 442L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/BillStearns.txt" - }, - new - { - Id = 578L, - FilterListId = 445L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/Easyprivacy.txt" - }, - new - { - Id = 579L, - FilterListId = 446L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/Prigent-Ads.txt" - }, - new - { - Id = 580L, - FilterListId = 447L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/quidsup/notrack-blocklists/raw/master/notrack-blocklist.txt" - }, - new - { - Id = 581L, - FilterListId = 448L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/quidsup/notrack-blocklists/raw/master/notrack-malware.txt" - }, - new - { - Id = 582L, - FilterListId = 449L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/hosts/spy.txt" - }, - new - { - Id = 583L, - FilterListId = 450L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/hosts/update.txt" - }, - new - { - Id = 584L, - FilterListId = 451L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/hosts/extra.txt" - }, - new - { - Id = 585L, - FilterListId = 465L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/Shalla-mal.txt" - }, - new - { - Id = 586L, - FilterListId = 465L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Shalla-Malicious.txt" - }, - new - { - Id = 587L, - FilterListId = 467L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kano1/I/master/badway.txt" - }, - new - { - Id = 588L, - FilterListId = 468L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kano1/I/master/adware.txt" - }, - new - { - Id = 589L, - FilterListId = 469L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kano1/Kano/master/Spyware.txt" - }, - new - { - Id = 590L, - FilterListId = 470L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/firehol_level1.netset" - }, - new - { - Id = 591L, - FilterListId = 471L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/firehol_level2.netset" - }, - new - { - Id = 592L, - FilterListId = 472L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/pinterest/all" - }, - new - { - Id = 593L, - FilterListId = 473L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/cloudflare/all" - }, - new - { - Id = 594L, - FilterListId = 474L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/facebook/all" - }, - new - { - Id = 595L, - FilterListId = 475L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/mozilla/all" - }, - new - { - Id = 596L, - FilterListId = 476L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/microsoft/all" - }, - new - { - Id = 597L, - FilterListId = 477L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/google/non_localized" - }, - new - { - Id = 598L, - FilterListId = 478L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/google/localized" - }, - new - { - Id = 599L, - FilterListId = 479L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistpolish.txt" - }, - new - { - Id = 600L, - FilterListId = 480L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/yecarrillo/adblock-colombia/master/adblock_co.txt" - }, - new - { - Id = 601L, - FilterListId = 481L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/spark/formats/hosts.txt" - }, - new - { - Id = 602L, - FilterListId = 482L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/bluGo/formats/hosts.txt" - }, - new - { - Id = 603L, - FilterListId = 482L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/bluGo/formats/hosts.txt" - }, - new - { - Id = 604L, - FilterListId = 483L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/blu/formats/hosts.txt" - }, - new - { - Id = 605L, - FilterListId = 484L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/basic/formats/hosts.txt" - }, - new - { - Id = 606L, - FilterListId = 485L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/porn/formats/hosts.txt" - }, - new - { - Id = 607L, - FilterListId = 486L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/ultimate/formats/hosts.txt" - }, - new - { - Id = 608L, - FilterListId = 487L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/unified/formats/hosts.txt" - }, - new - { - Id = 609L, - FilterListId = 490L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/CyanideBrother/anti-pr0n/master/hosts" - }, - new - { - Id = 610L, - FilterListId = 491L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/extensions/porn/clefspeare13/hosts" - }, - new - { - Id = 611L, - FilterListId = 492L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mhxion/pornaway/master/hosts/porn_sites.txt" - }, - new - { - Id = 612L, - FilterListId = 493L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mhxion/pornaway/master/hosts/porn_ads.txt" - }, - new - { - Id = 613L, - FilterListId = 494L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mitchellkrogza/Badd-Boyz-Hosts/master/hosts" - }, - new - { - Id = 614L, - FilterListId = 495L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/MetaMask/eth-phishing-detect/master/src/hosts.txt" - }, - new - { - Id = 615L, - FilterListId = 496L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/MrThreat/Confirmed-Phish/master/phish.txt" - }, - new - { - Id = 616L, - FilterListId = 504L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Adblock list templates/Adblock list template -Beginner-.txt" - }, - new - { - Id = 617L, - FilterListId = 504L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Adblock list templates/Adblock list template -Beginner-.txt" - }, - new - { - Id = 618L, - FilterListId = 505L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Adblock list templates/Adblock list template -Novice-.txt" - }, - new - { - Id = 619L, - FilterListId = 505L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Adblock list templates/Adblock list template -Novice-.txt" - }, - new - { - Id = 620L, - FilterListId = 506L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/exceptionrules-privacy-friendly.txt" - }, - new - { - Id = 621L, - FilterListId = 507L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easylist.tpl" - }, - new - { - Id = 623L, - FilterListId = 509L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/endolith/clickbait/master/clickbait.txt" - }, - new - { - Id = 624L, - FilterListId = 510L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/UnluckyLuke/BlockUnderRadarJunk/master/blockunderradarjunk-list.txt" - }, - new - { - Id = 625L, - FilterListId = 512L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/xd4rker/MinerBlock/master/assets/filters.txt" - }, - new - { - Id = 626L, - FilterListId = 513L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/hit3shjain/Andromeda-ublock-list/master/hosts.txt" - }, - new - { - Id = 628L, - FilterListId = 515L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://paulgb.github.io/BarbBlock/blacklists/ublock-origin.txt" - }, - new - { - Id = 629L, - FilterListId = 516L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://paulgb.github.io/BarbBlock/blacklists/domain-list.txt" - }, - new - { - Id = 630L, - FilterListId = 517L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://paulgb.github.io/BarbBlock/blacklists/adblock-plus.txt" - }, - new - { - Id = 631L, - FilterListId = 518L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.dshield.org/feeds/suspiciousdomains_Low.txt" - }, - new - { - Id = 632L, - FilterListId = 519L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.dshield.org/feeds/suspiciousdomains_Medium.txt" - }, - new - { - Id = 633L, - FilterListId = 519L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://isc.sans.edu/feeds/suspiciousdomains_Medium.txt" - }, - new - { - Id = 634L, - FilterListId = 520L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.dshield.org/feeds/suspiciousdomains_High.txt" - }, - new - { - Id = 635L, - FilterListId = 521L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://list.kwbt.de/kwbtlist.txt" - }, - new - { - Id = 636L, - FilterListId = 522L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://list.kwbt.de/kwbtlist.txt" - }, - new - { - Id = 637L, - FilterListId = 525L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/chadmayfield/my-pihole-blocklists/master/lists/pi_blocklist_porn_top1m.list" - }, - new - { - Id = 638L, - FilterListId = 525L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Chad-Mayfield-Porn-Blocklist-Light.txt" - }, - new - { - Id = 639L, - FilterListId = 526L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/chadmayfield/my-pihole-blocklists/master/lists/pi_blocklist_porn_all.list" - }, - new - { - Id = 640L, - FilterListId = 526L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Chad-Mayfield-Porn-Blocklist-Heavy.txt" - }, - new - { - Id = 641L, - FilterListId = 562L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/xinggsf/Adblock-Plus-Rule/master/ABP-FX.txt" - }, - new - { - Id = 642L, - FilterListId = 563L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/andromedarabbit/List-KR/master/filter.txt" - }, - new - { - Id = 643L, - FilterListId = 564L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://fanboy.co.nz/fanboy-problematic-sites.txt" - }, - new - { - Id = 644L, - FilterListId = 565L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://cdn.adblockcdn.com/filters/easylist_lite.txt" - }, - new - { - Id = 645L, - FilterListId = 566L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/abp-filters-anti-cv.txt" - }, - new - { - Id = 646L, - FilterListId = 569L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/chinese.txt" - }, - new - { - Id = 647L, - FilterListId = 570L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/czech.txt" - }, - new - { - Id = 648L, - FilterListId = 573L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/english.txt" - }, - new - { - Id = 649L, - FilterListId = 574L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/french.txt" - }, - new - { - Id = 650L, - FilterListId = 575L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/german.txt" - }, - new - { - Id = 651L, - FilterListId = 583L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/portuguese.txt" - }, - new - { - Id = 652L, - FilterListId = 585L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/russian.txt" - }, - new - { - Id = 653L, - FilterListId = 586L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/spanish.txt" - }, - new - { - Id = 654L, - FilterListId = 589L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Sinfonietta/hostfiles/master/gambling-hosts" - }, - new - { - Id = 655L, - FilterListId = 590L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Sinfonietta/hostfiles/master/pornography-hosts" - }, - new - { - Id = 656L, - FilterListId = 591L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Sinfonietta/hostfiles/master/snuff-hosts" - }, - new - { - Id = 657L, - FilterListId = 592L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Sinfonietta/hostfiles/master/social-hosts" - }, - new - { - Id = 658L, - FilterListId = 593L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/marktron/fakenews/master/fakenews" - }, - new - { - Id = 659L, - FilterListId = 595L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.github.developerdan.com/hosts/lists/ads-and-tracking-extended.txt" - }, - new - { - Id = 660L, - FilterListId = 596L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.github.developerdan.com/hosts/lists/tracking-aggressive-extended.txt" - }, - new - { - Id = 661L, - FilterListId = 598L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bigdargon/hostsVN/master/hosts" - }, - new - { - Id = 662L, - FilterListId = 599L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://abpvn.com/android/abpvn.txt" - }, - new - { - Id = 663L, - FilterListId = 600L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/abpvn/abpvn/master/filter/abpvn_noelemhide.txt" - }, - new - { - Id = 664L, - FilterListId = 601L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/ThaiAntiTokenSites/master/AntiPumpSites.txt" - }, - new - { - Id = 665L, - FilterListId = 601L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/ThaiAntiTokenSites/raw/master/AntiPumpSites.txt" - }, - new - { - Id = 666L, - FilterListId = 602L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/ThaiAntiTokenSites/master/AntiPumpSites_hosts.txt" - }, - new - { - Id = 667L, - FilterListId = 602L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/ThaiAntiTokenSites/raw/master/AntiPumpSites_hosts.txt" - }, - new - { - Id = 668L, - FilterListId = 603L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-Elsagate List.txt" - }, - new - { - Id = 669L, - FilterListId = 603L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-Elsagate List.txt" - }, - new - { - Id = 670L, - FilterListId = 604L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/stopforumspam_30d.ipset" - }, - new - { - Id = 671L, - FilterListId = 605L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/firehol_level3.netset" - }, - new - { - Id = 672L, - FilterListId = 606L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jerryn70/GoodbyeAds/master/Hosts/GoodbyeAds.txt" - }, - new - { - Id = 673L, - FilterListId = 607L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_newsletters.txt" - }, - new - { - Id = 674L, - FilterListId = 608L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_arrows.txt" - }, - new - { - Id = 675L, - FilterListId = 609L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_push.txt" - }, - new - { - Id = 676L, - FilterListId = 610L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_scrolling_videos.txt" - }, - new - { - Id = 677L, - FilterListId = 611L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_backgrounds_self-advertising.txt" - }, - new - { - Id = 678L, - FilterListId = 612L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_pop-ups.txt" - }, - new - { - Id = 679L, - FilterListId = 613L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_contact_feedback_widgets.txt" - }, - new - { - Id = 680L, - FilterListId = 614L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_tagged_internal_links.txt" - }, - new - { - Id = 681L, - FilterListId = 616L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_other_widgets.txt" - }, - new - { - Id = 682L, - FilterListId = 617L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=hosts&showintro=1&mimetype=plaintext" - }, - new - { - Id = 683L, - FilterListId = 617L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/data/yoyo.org/hosts" - }, - new - { - Id = 684L, - FilterListId = 618L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://bitbucket.org/ethanr/dns-blacklists/raw/8575c9f96e5b4a1308f2f12394abd86d0927a4a0/bad_lists/Mandiant_APT1_Report_Appendix_D.txt" - }, - new - { - Id = 685L, - FilterListId = 618L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Mandiant-APT1-Report.txt" - }, - new - { - Id = 686L, - FilterListId = 619L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/HenningVanRaumle/pihole-ytadblock/master/ytadblock.txt" - }, - new - { - Id = 687L, - FilterListId = 625L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nathanaccidentally/SystemHostsBlocker/master/hosts" - }, - new - { - Id = 688L, - FilterListId = 626L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tyzbit/hosts/master/data/tyzbit/hosts" - }, - new - { - Id = 689L, - FilterListId = 628L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/TakoYachty/Gift-Card-Killer/master/Untrusted Hosts Blocker.txt" - }, - new - { - Id = 690L, - FilterListId = 630L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/AdguardDNS.txt" - }, - new - { - Id = 691L, - FilterListId = 631L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/Prigent-Phishing.txt" - }, - new - { - Id = 692L, - FilterListId = 631L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Prigent-Phishing.txt" - }, - new - { - Id = 693L, - FilterListId = 632L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/static/SamsungSmart.txt" - }, - new - { - Id = 694L, - FilterListId = 658L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/filters/generic_filters.txt" - }, - new - { - Id = 695L, - FilterListId = 659L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/filters/modal_filters.txt" - }, - new - { - Id = 696L, - FilterListId = 660L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/filters/newsletter_filters.txt" - }, - new - { - Id = 697L, - FilterListId = 661L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/filters/social_filters.txt" - }, - new - { - Id = 698L, - FilterListId = 663L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nmtrung/FMSF-2.0/master/fmsf_2.0.txt" - }, - new - { - Id = 699L, - FilterListId = 664L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/AdguardMobileAds.txt" - }, - new - { - Id = 700L, - FilterListId = 665L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/AdguardMobileSpyware.txt" - }, - new - { - Id = 701L, - FilterListId = 666L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/AdguardApps.txt" - }, - new - { - Id = 702L, - FilterListId = 667L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/AdguardDNS.txt" - }, - new - { - Id = 703L, - FilterListId = 668L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://tgc.cloud/downloads/iOSAds.txt" - }, - new - { - Id = 704L, - FilterListId = 669L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://tgc.cloud/downloads/hosts.txt" - }, - new - { - Id = 705L, - FilterListId = 670L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/LittleSnitchNorwegianList.lsrules" - }, - new - { - Id = 706L, - FilterListId = 670L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/LittleSnitchNorwegianList.lsrules" - }, - new - { - Id = 707L, - FilterListId = 671L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://obdev.at/resources/littlesnitch/blocklist-example.lsrules" - }, - new - { - Id = 708L, - FilterListId = 672L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=littlesnitch-rule-group-subscriptions;showintro=1&mimetype=plaintext" - }, - new - { - Id = 709L, - FilterListId = 673L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=msfilter&showintro=1&mimetype=plaintext" - }, - new - { - Id = 710L, - FilterListId = 674L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=nohtml&showintro=1&mimetype=plaintext" - }, - new - { - Id = 711L, - FilterListId = 675L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://pgl.yoyo.org/adservers/iplist.php?ipformat=plain&showintro=1&mimetype=plaintext" - }, - new - { - Id = 712L, - FilterListId = 676L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://pgl.yoyo.org/as/serverlist.php?hostformat=junkbuster;showintro=1&mimetype=plaintext" - }, - new - { - Id = 713L, - FilterListId = 677L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://pgl.yoyo.org/as/serverlist.php?hostformat=adblock;showintro=1&mimetype=plaintext" - }, - new - { - Id = 714L, - FilterListId = 678L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gist.githubusercontent.com/sx2008/2766874/raw/c12a305decef3332663d1e04efa80b881211cfac/user.action" - }, - new - { - Id = 715L, - FilterListId = 679L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/fdb/privoxy-config/master/block-trackers.action" - }, - new - { - Id = 716L, - FilterListId = 680L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/DandelionSproutsNorskeFiltreDomains.txt" - }, - new - { - Id = 717L, - FilterListId = 680L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/DandelionSproutsNorskeFiltreDomains.txt" - }, - new - { - Id = 718L, - FilterListId = 681L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.malwaredomainlist.com/hostslist/ip.txt" - }, - new - { - Id = 719L, - FilterListId = 682L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://malc0de.com/bl/IP_Blacklist.txt" - }, - new - { - Id = 720L, - FilterListId = 683L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://www.urlvir.com/export-ip-addresses/" - }, - new - { - Id = 721L, - FilterListId = 684L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://www.urlvir.com/export-hosts/" - }, - new - { - Id = 724L, - FilterListId = 686L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://cdn.adblockcdn.com/filters/adblock_custom.txt" - }, - new - { - Id = 725L, - FilterListId = 687L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://www.quero.at/download/adblock-hosts.zip" - }, - new - { - Id = 726L, - FilterListId = 689L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/xxcriticxx/.pl-host-file/master/hosts.txt" - }, - new - { - Id = 727L, - FilterListId = 690L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mitchellkrogza/Suspicious.Snooping.Sniffing.Hacking.IP.Addresses/master/ips.list" - }, - new - { - Id = 728L, - FilterListId = 691L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mitchellkrogza/Top-Attacking-IP-Addresses-Against-Wordpress-Sites/master/wordpress-attacking-ips.txt" - }, - new - { - Id = 729L, - FilterListId = 692L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mitchellkrogza/The-Big-List-of-Hacked-Malware-Web-Sites/master/hacked-domains.list" - }, - new - { - Id = 730L, - FilterListId = 693L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hosts.ubuntu101.co.za/hosts" - }, - new - { - Id = 731L, - FilterListId = 694L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hosts.ubuntu101.co.za/domains.list" - }, - new - { - Id = 732L, - FilterListId = 696L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/dan-pollock-someonewhocares-org.txt" - }, - new - { - Id = 733L, - FilterListId = 697L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/mvps-hosts-file.txt" - }, - new - { - Id = 734L, - FilterListId = 698L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/malware-domain-list.txt" - }, - new - { - Id = 735L, - FilterListId = 699L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/nocoin.txt" - }, - new - { - Id = 736L, - FilterListId = 700L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/easylist.txt" - }, - new - { - Id = 737L, - FilterListId = 703L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/KADhosts/master/KADomains.txt" - }, - new - { - Id = 738L, - FilterListId = 704L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/steven-blacks-ad-hoc-list.txt" - }, - new - { - Id = 739L, - FilterListId = 705L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/coinblocker.txt" - }, - new - { - Id = 740L, - FilterListId = 706L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/add-2o7net.txt" - }, - new - { - Id = 741L, - FilterListId = 707L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/add-dead.txt" - }, - new - { - Id = 742L, - FilterListId = 708L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/add-risk.txt" - }, - new - { - Id = 743L, - FilterListId = 709L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/add-spam.txt" - }, - new - { - Id = 744L, - FilterListId = 710L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/tyzbit.txt" - }, - new - { - Id = 745L, - FilterListId = 710L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Tyzbit.txt" - }, - new - { - Id = 746L, - FilterListId = 711L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/uncheckyads.txt" - }, - new - { - Id = 747L, - FilterListId = 712L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/spotifyads.txt" - }, - new - { - Id = 748L, - FilterListId = 715L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/highsea/Hosts/master/host-include-appale/hosts" - }, - new - { - Id = 750L, - FilterListId = 717L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/superliaoyong/hosts/master/hosts" - }, - new - { - Id = 751L, - FilterListId = 718L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/popcorner/cernet-ipv6-hosts/hosts/hosts" - }, - new - { - Id = 752L, - FilterListId = 719L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://ads-for-open-source.readthedocs.io/en/latest/_static/lists/opensource-ads.txt" - }, - new - { - Id = 753L, - FilterListId = 720L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://nonio.pt/antinonio.txt" - }, - new - { - Id = 754L, - FilterListId = 721L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/brunomiguel/antinonio/master/antinonio.txt" - }, - new - { - Id = 755L, - FilterListId = 722L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gist.githubusercontent.com/balupton/6960605/raw/16bfeff88761b16296ed3ee15fbacf6840f1701a/filter-twitterdrama.txt" - }, - new - { - Id = 756L, - FilterListId = 723L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gist.githubusercontent.com/balupton/6960605/raw/16bfeff88761b16296ed3ee15fbacf6840f1701a/filter-feedlyads.txt" - }, - new - { - Id = 757L, - FilterListId = 724L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gist.githubusercontent.com/balupton/6960605/raw/16bfeff88761b16296ed3ee15fbacf6840f1701a/filter-facebookdrama.txt" - }, - new - { - Id = 758L, - FilterListId = 726L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/whtsky/abp-rules/master/rules.txt" - }, - new - { - Id = 759L, - FilterListId = 726L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://abp.tt.codes/rules.txt" - }, - new - { - Id = 760L, - FilterListId = 728L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/realodix/AdBlockID/master/output/adblockid.txt" - }, - new - { - Id = 761L, - FilterListId = 729L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/theel0ja/CrapBlock/master/crapblock-annoyances.txt" - }, - new - { - Id = 762L, - FilterListId = 729L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://crapblock.theel0ja.info/crapblock-annoyances.txt" - }, - new - { - Id = 763L, - FilterListId = 729L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/theel0ja/crapblock/raw/master/crapblock-annoyances.txt" - }, - new - { - Id = 764L, - FilterListId = 730L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/theel0ja/CrapBlock/master/block-googlefonts.txt" - }, - new - { - Id = 765L, - FilterListId = 730L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://crapblock.theel0ja.info/block-googlefonts.txt" - }, - new - { - Id = 766L, - FilterListId = 730L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/theel0ja/crapblock/raw/master/block-googlefonts.txt" - }, - new - { - Id = 767L, - FilterListId = 731L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/NeeEoo/AdBlockNeeEoo/master/List.txt" - }, - new - { - Id = 769L, - FilterListId = 734L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/imageboard/GelboLube.txt" - }, - new - { - Id = 770L, - FilterListId = 734L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/imageboard/GelboLube.txt" - }, - new - { - Id = 771L, - FilterListId = 735L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/specific/AntiAPKMirrorCountdown.txt" - }, - new - { - Id = 772L, - FilterListId = 735L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/specific/AntiAPKMirrorCountdown.txt" - }, - new - { - Id = 773L, - FilterListId = 736L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/OsborneSystems/Columbia/master/Columbia.txt" - }, - new - { - Id = 774L, - FilterListId = 743L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/akopachov/uBlock-AK-filter-rules/master/entertainment" - }, - new - { - Id = 775L, - FilterListId = 744L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Hunter-Github/the-best-stack-overflow/master/se_filters.txt" - }, - new - { - Id = 776L, - FilterListId = 746L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Hakame-kun/uBlock-Filters-Indonesia/master/uBlock Indo/ubindo.txt" - }, - new - { - Id = 777L, - FilterListId = 747L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nimasaj/uBOPa/master/uBOPa.txt" - }, - new - { - Id = 778L, - FilterListId = 747L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://mynext.pro/uBOPa.txt" - }, - new - { - Id = 779L, - FilterListId = 748L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.microsoft.com/cms/api/am/binary/RWilsQ" - }, - new - { - Id = 780L, - FilterListId = 749L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/malwaredomains_full.tpl" - }, - new - { - Id = 781L, - FilterListId = 750L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easy-tracking-protection.truste.com/easy.tpl" - }, - new - { - Id = 782L, - FilterListId = 751L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://jansal.net/tpl/ricklist.tpl" - }, - new - { - Id = 783L, - FilterListId = 752L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://jansal.net/tpl/popup-block.tpl" - }, - new - { - Id = 784L, - FilterListId = 753L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://jansal.net/tpl/obtrusive.tpl" - }, - new - { - Id = 785L, - FilterListId = 754L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://jansal.net/tpl/malpatrol.tpl" - }, - new - { - Id = 786L, - FilterListId = 755L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://jansal.net/tpl/m.tpl" - }, - new - { - Id = 787L, - FilterListId = 756L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://jansal.net/tpl/latvian-list.tpl" - }, - new - { - Id = 788L, - FilterListId = 757L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://jansal.net/tpl/facebook-connect-optout-adblockplusfilter.tpl" - }, - new - { - Id = 789L, - FilterListId = 758L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://jansal.net/tpl/adblock-persian.tpl" - }, - new - { - Id = 790L, - FilterListId = 759L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://jansal.net/tpl/IsraelList.tpl" - }, - new - { - Id = 791L, - FilterListId = 760L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://jansal.net/tpl/Adversity/Antisocial.tpl" - }, - new - { - Id = 792L, - FilterListId = 761L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://jansal.net/tpl/Adversity/Adversity.tpl" - }, - new - { - Id = 793L, - FilterListId = 762L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.fanboy.co.nz/adblock/ie/fanboy-noele.tpl" - }, - new - { - Id = 794L, - FilterListId = 763L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.fanboy.co.nz/adblock/ie/fanboy-tracking.tpl" - }, - new - { - Id = 795L, - FilterListId = 764L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://jansal.net/tpl/fanboy/enhancedstats-addon.tpl" - }, - new - { - Id = 796L, - FilterListId = 765L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://jansal.net/tpl/fanboy/fanboy-adult.tpl" - }, - new - { - Id = 797L, - FilterListId = 766L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/lilydjwg/abp-rules/master/list.txt" - }, - new - { - Id = 798L, - FilterListId = 767L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/OwlStudioCN/owl-abp-rules/master/owl-abp-rules.txt" - }, - new - { - Id = 799L, - FilterListId = 769L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Manu1400/i-don-t-care-about-newsletters/master/adp.txt" - }, - new - { - Id = 800L, - FilterListId = 770L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://adp.magnobiet.com/list.txt" - }, - new - { - Id = 801L, - FilterListId = 772L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kbinani/adblock-wikipedia/master/signed.txt" - }, - new - { - Id = 802L, - FilterListId = 773L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easylistgermany+easylist.tpl" - }, - new - { - Id = 803L, - FilterListId = 774L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/fanboy-annoyance.tpl" - }, - new - { - Id = 804L, - FilterListId = 775L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easylistlithuania+easylist.tpl" - }, - new - { - Id = 805L, - FilterListId = 776L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/bulgarian_list+easylist.tpl" - }, - new - { - Id = 806L, - FilterListId = 777L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/latvianlist+easylist.tpl" - }, - new - { - Id = 807L, - FilterListId = 778L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easyprivacy+easylist.tpl" - }, - new - { - Id = 808L, - FilterListId = 779L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easylistitaly+easylist.tpl" - }, - new - { - Id = 809L, - FilterListId = 780L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/israellist+easylist.tpl" - }, - new - { - Id = 810L, - FilterListId = 781L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easylistchina+easylist.tpl" - }, - new - { - Id = 811L, - FilterListId = 782L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easylistdutch+easylist.tpl" - }, - new - { - Id = 812L, - FilterListId = 783L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/rolist+easylist.tpl" - }, - new - { - Id = 813L, - FilterListId = 784L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/wiltteri+easylist.tpl" - }, - new - { - Id = 814L, - FilterListId = 785L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/fanboy-social.tpl" - }, - new - { - Id = 815L, - FilterListId = 786L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/liste_ar+liste_fr+easylist.tpl" - }, - new - { - Id = 816L, - FilterListId = 787L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/ruadlist+easylist.tpl" - }, - new - { - Id = 817L, - FilterListId = 788L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/Liste_AR.tpl" - }, - new - { - Id = 818L, - FilterListId = 789L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easylistdutch.tpl" - }, - new - { - Id = 819L, - FilterListId = 790L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easyprivacy_nointernational.tpl" - }, - new - { - Id = 820L, - FilterListId = 791L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/advblock.tpl" - }, - new - { - Id = 821L, - FilterListId = 792L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easylist_noadult.tpl" - }, - new - { - Id = 822L, - FilterListId = 793L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easylistspanish.tpl" - }, - new - { - Id = 823L, - FilterListId = 794L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easylistchina.tpl" - }, - new - { - Id = 824L, - FilterListId = 795L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/liste_fr.tpl" - }, - new - { - Id = 825L, - FilterListId = 796L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easylistgermany.tpl" - }, - new - { - Id = 826L, - FilterListId = 797L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/antiadblockfilters.tpl" - }, - new - { - Id = 827L, - FilterListId = 798L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/liste_fr+easylist.tpl" - }, - new - { - Id = 828L, - FilterListId = 799L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easylistitaly.tpl" - }, - new - { - Id = 829L, - FilterListId = 800L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easylistspanish+easylist.tpl" - }, - new - { - Id = 830L, - FilterListId = 801L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/ABP Macedonian List.txt" - }, - new - { - Id = 831L, - FilterListId = 802L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Liste DZ.txt" - }, - new - { - Id = 832L, - FilterListId = 803L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Snaevar87's Icelandic filter.txt" - }, - new - { - Id = 833L, - FilterListId = 804L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/TamilFriends List.txt" - }, - new - { - Id = 834L, - FilterListId = 805L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/advblock+cssfixes.txt" - }, - new - { - Id = 835L, - FilterListId = 806L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistportuguese.txt" - }, - new - { - Id = 836L, - FilterListId = 807L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/luigimannoni/m5s-ublock-filter/master/filter-list.txt" - }, - new - { - Id = 837L, - FilterListId = 808L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://ajnasz.hu/adblock/recent" - }, - new - { - Id = 838L, - FilterListId = 809L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.ergensin.nl/adblock/nlblock.txt" - }, - new - { - Id = 839L, - FilterListId = 809L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "http://www.verzijlbergh.com/adblock/nlblock.txt" - }, - new - { - Id = 840L, - FilterListId = 810L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/complete/domains.txt" - }, - new - { - Id = 841L, - FilterListId = 811L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/mini/hosts.txt" - }, - new - { - Id = 842L, - FilterListId = 812L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/mini/domains.txt" - }, - new - { - Id = 843L, - FilterListId = 813L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jwinnie/acceptable-ads/master/filters.txt" - }, - new - { - Id = 844L, - FilterListId = 814L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/gmbkslist.txt" - }, - new - { - Id = 845L, - FilterListId = 815L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Adblocking Open Filter JP" - }, - new - { - Id = 846L, - FilterListId = 816L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/I Don't Want to Download Your Browser.txt" - }, - new - { - Id = 847L, - FilterListId = 816L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/I Don't Want to Download Your Browser.txt" - }, - new - { - Id = 848L, - FilterListId = 817L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/lassekongo83/Frellwits-filter-lists/master/Frellwits-Swedish-Hosts-File.txt" - }, - new - { - Id = 849L, - FilterListId = 817L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://repo.or.cz/Adblock-list-backups-Frellwits-filter-lists.git/blob_plain/refs/heads/master:/Frellwits-Swedish-Hosts-File.txt" - }, - new - { - Id = 850L, - FilterListId = 818L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/indianlist.txt" - }, - new - { - Id = 851L, - FilterListId = 819L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/YouTubeEvenMorePureVideoExperience.txt" - }, - new - { - Id = 852L, - FilterListId = 819L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/YouTubeEvenMorePureVideoExperience.txt" - }, - new - { - Id = 854L, - FilterListId = 821L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/brave/adblock-lists/master/brave-unbreak.txt" - }, - new - { - Id = 855L, - FilterListId = 822L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/VeleSila/VELE-SILA-List/gh-pages/KaFanList.txt" - }, - new - { - Id = 856L, - FilterListId = 823L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/gasull/adblock-nsa/master/filters.txt" - }, - new - { - Id = 857L, - FilterListId = 824L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mistalaba/popover-blocklist/master/blocklist.txt" - }, - new - { - Id = 858L, - FilterListId = 825L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jasonbarone/membership-app-block-list/master/membership-app-block-list.txt" - }, - new - { - Id = 859L, - FilterListId = 826L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/w13d/adblockListABP-PiHole/master/Spotify.txt" - }, - new - { - Id = 860L, - FilterListId = 827L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/w13d/adblockListABP-PiHole/master/list.txt" - }, - new - { - Id = 861L, - FilterListId = 828L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/evenxzero/Raajje-AdList/master/filter.txt" - }, - new - { - Id = 862L, - FilterListId = 829L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/miyurusankalpa/adblock-list-sri-lanka/master/lkfilter.txt" - }, - new - { - Id = 863L, - FilterListId = 830L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/adblock.conf" - }, - new - { - Id = 864L, - FilterListId = 831L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/ads01.conf" - }, - new - { - Id = 865L, - FilterListId = 832L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/facebookblock.conf" - }, - new - { - Id = 866L, - FilterListId = 833L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/fastclick.conf" - }, - new - { - Id = 867L, - FilterListId = 834L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/google.conf" - }, - new - { - Id = 868L, - FilterListId = 835L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/microsoftblock.conf" - }, - new - { - Id = 869L, - FilterListId = 836L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Recon/romanian-media-propaganda-adblock-list/master/ro-media-blocklist.txt" - }, - new - { - Id = 870L, - FilterListId = 837L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/duskwuff/syndicationblock/master/filters.txt" - }, - new - { - Id = 872L, - FilterListId = 839L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Manu1400/i-don-t-care-about-gotoup-btns/master/list-gotoup-btns.txt" - }, - new - { - Id = 873L, - FilterListId = 840L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/KCaglarCoskun/enur-filter-list/master/enur-filter-list.txt" - }, - new - { - Id = 874L, - FilterListId = 841L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/LinuxLowell/chat-annoyances/master/chat-annoyances.txt" - }, - new - { - Id = 875L, - FilterListId = 842L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=dnsmasq&showintro=1&mimetype=plaintext" - }, - new - { - Id = 876L, - FilterListId = 843L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/facebook/FacebookZuckestionKiller.txt" - }, - new - { - Id = 877L, - FilterListId = 843L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/facebook/FacebookZuckestionKiller.txt" - }, - new - { - Id = 878L, - FilterListId = 844L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/facebook/FacebookCommands.txt" - }, - new - { - Id = 879L, - FilterListId = 844L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/facebook/FacebookCommands.txt" - }, - new - { - Id = 880L, - FilterListId = 845L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/hosts/hosts_google_adservice_id.txt" - }, - new - { - Id = 881L, - FilterListId = 845L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/hosts/hosts_google_adservice_id.txt" - }, - new - { - Id = 882L, - FilterListId = 846L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/ThaiParanoidBlock/maximum/ThaiParanoid.txt" - }, - new - { - Id = 883L, - FilterListId = 846L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/ThaiParanoidBlock/raw/maximum/ThaiParanoid.txt" - }, - new - { - Id = 884L, - FilterListId = 847L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/sipp11/th_ad_filters/master/th_list.txt" - }, - new - { - Id = 885L, - FilterListId = 848L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/TwitchPureViewingExperience.txt" - }, - new - { - Id = 886L, - FilterListId = 848L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/TwitchPureViewingExperience.txt" - }, - new - { - Id = 887L, - FilterListId = 850L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAbusePorn.txt" - }, - new - { - Id = 888L, - FilterListId = 850L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAbusePorn.txt" - }, - new - { - Id = 889L, - FilterListId = 851L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/WikiaPureBrowsingExperience.txt" - }, - new - { - Id = 890L, - FilterListId = 851L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/WikiaPureBrowsingExperience.txt" - }, - new - { - Id = 891L, - FilterListId = 852L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/YouTubeYetEvenMorePureVideoExperience.txt" - }, - new - { - Id = 892L, - FilterListId = 852L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/YouTubeYetEvenMorePureVideoExperience.txt" - }, - new - { - Id = 893L, - FilterListId = 853L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/VeryThoroughWebsiteCleaner.txt" - }, - new - { - Id = 894L, - FilterListId = 853L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/VeryThoroughWebsiteCleaner.txt" - }, - new - { - Id = 895L, - FilterListId = 855L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/MeWe Pink Theme.txt" - }, - new - { - Id = 896L, - FilterListId = 855L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/MeWe Pink Theme.txt" - }, - new - { - Id = 897L, - FilterListId = 856L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Pro-LED List.txt" - }, - new - { - Id = 898L, - FilterListId = 856L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Pro-LED List.txt" - }, - new - { - Id = 899L, - FilterListId = 857L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Dandelion Sprout-s Redirector Assistant List/TorRedirectorList.json" - }, - new - { - Id = 900L, - FilterListId = 857L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Dandelion Sprout-s Redirector Assistant List/TorRedirectorList.json" - }, - new - { - Id = 904L, - FilterListId = 859L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-Futa List.txt" - }, - new - { - Id = 905L, - FilterListId = 859L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-Futa List.txt" - }, - new - { - Id = 906L, - FilterListId = 860L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://bitbucket.org/nicktabick/adblock-rules/raw/master/nt-adblock.txt" - }, - new - { - Id = 907L, - FilterListId = 860L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nicktabick/adblock-rules/master/nt-adblock.txt" - }, - new - { - Id = 908L, - FilterListId = 860L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/nicktabick/adblock-rules/raw/master/nt-adblock.txt" - }, - new - { - Id = 909L, - FilterListId = 861L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bogachenko/filterlist/master/filterlist.txt" - }, - new - { - Id = 910L, - FilterListId = 862L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/other/SurvivedTrackingLinkWarning.txt" - }, - new - { - Id = 911L, - FilterListId = 862L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/other/SurvivedTrackingLinkWarning.txt" - }, - new - { - Id = 912L, - FilterListId = 863L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-'Christmas carols' List.txt" - }, - new - { - Id = 913L, - FilterListId = 863L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-'Christmas carols' List.txt" - }, - new - { - Id = 914L, - FilterListId = 866L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/hosts/hosts_facebook0.txt" - }, - new - { - Id = 915L, - FilterListId = 866L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/hosts/hosts_facebook0.txt" - }, - new - { - Id = 918L, - FilterListId = 868L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/mochi_filter.txt" - }, - new - { - Id = 919L, - FilterListId = 869L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/mochi_filter_2gun.txt" - }, - new - { - Id = 920L, - FilterListId = 870L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/mochi_filter_amazon.txt" - }, - new - { - Id = 921L, - FilterListId = 871L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/mochi_filter_extended.txt" - }, - new - { - Id = 922L, - FilterListId = 872L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/negi_filter.txt" - }, - new - { - Id = 923L, - FilterListId = 873L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/negi_google_hplogo_block.txt" - }, - new - { - Id = 924L, - FilterListId = 874L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/negi_twitter_allow_save_multi_images.txt" - }, - new - { - Id = 925L, - FilterListId = 875L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/kame_filter.txt" - }, - new - { - Id = 926L, - FilterListId = 876L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/kotori_filter.txt" - }, - new - { - Id = 927L, - FilterListId = 877L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/kujira_filter.txt" - }, - new - { - Id = 928L, - FilterListId = 878L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/ichigo_filter.txt" - }, - new - { - Id = 929L, - FilterListId = 879L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/tamago_filter.txt" - }, - new - { - Id = 930L, - FilterListId = 881L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/youtube_wo_tonikaku_filter.txt" - }, - new - { - Id = 931L, - FilterListId = 882L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/all.txt" - }, - new - { - Id = 932L, - FilterListId = 884L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/finnish-easylist-addition/finnish-easylist-addition/master/Finland_adb.txt" - }, - new - { - Id = 933L, - FilterListId = 885L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Afghanistan.txt" - }, - new - { - Id = 934L, - FilterListId = 886L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Aland.txt" - }, - new - { - Id = 935L, - FilterListId = 887L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Albania.txt" - }, - new - { - Id = 936L, - FilterListId = 888L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Algeria.txt" - }, - new - { - Id = 937L, - FilterListId = 889L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/AmericanSamoa.txt" - }, - new - { - Id = 938L, - FilterListId = 890L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Andorra.txt" - }, - new - { - Id = 939L, - FilterListId = 891L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Angola.txt" - }, - new - { - Id = 940L, - FilterListId = 892L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Anguilla.txt" - }, - new - { - Id = 941L, - FilterListId = 893L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Antarctica.txt" - }, - new - { - Id = 942L, - FilterListId = 894L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/AntiguaAndBarbuda.txt" - }, - new - { - Id = 943L, - FilterListId = 895L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Argentina.txt" - }, - new - { - Id = 944L, - FilterListId = 896L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Armenia.txt" - }, - new - { - Id = 945L, - FilterListId = 897L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/AscensionIsland.txt" - }, - new - { - Id = 946L, - FilterListId = 898L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Australia.txt" - }, - new - { - Id = 947L, - FilterListId = 899L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Austria.txt" - }, - new - { - Id = 948L, - FilterListId = 900L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Azerbaijan.txt" - }, - new - { - Id = 949L, - FilterListId = 901L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bahamas.txt" - }, - new - { - Id = 950L, - FilterListId = 902L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bahrain.txt" - }, - new - { - Id = 951L, - FilterListId = 903L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bangladesh.txt" - }, - new - { - Id = 952L, - FilterListId = 904L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Belarus.txt" - }, - new - { - Id = 953L, - FilterListId = 905L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Belgium.txt" - }, - new - { - Id = 954L, - FilterListId = 906L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Belize.txt" - }, - new - { - Id = 955L, - FilterListId = 907L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bermuda.txt" - }, - new - { - Id = 956L, - FilterListId = 908L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bhutan.txt" - }, - new - { - Id = 957L, - FilterListId = 909L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bolivia.txt" - }, - new - { - Id = 958L, - FilterListId = 910L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bonaire.txt" - }, - new - { - Id = 959L, - FilterListId = 911L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/BosniaAndHerzegovina.txt" - }, - new - { - Id = 960L, - FilterListId = 912L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Botswana.txt" - }, - new - { - Id = 961L, - FilterListId = 913L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Brazil.txt" - }, - new - { - Id = 962L, - FilterListId = 914L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/BritishIndianOceanTerritory.txt" - }, - new - { - Id = 963L, - FilterListId = 915L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/BritishVirginIslands.txt" - }, - new - { - Id = 964L, - FilterListId = 916L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bulgaria.txt" - }, - new - { - Id = 965L, - FilterListId = 917L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/BurkinaFaso.txt" - }, - new - { - Id = 966L, - FilterListId = 918L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Burundi.txt" - }, - new - { - Id = 967L, - FilterListId = 919L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Cambodia.txt" - }, - new - { - Id = 968L, - FilterListId = 920L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Cameroon.txt" - }, - new - { - Id = 969L, - FilterListId = 921L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Canada.txt" - }, - new - { - Id = 970L, - FilterListId = 922L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CapeVerde.txt" - }, - new - { - Id = 971L, - FilterListId = 923L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Catalonia.txt" - }, - new - { - Id = 972L, - FilterListId = 924L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CaymanIslands.txt" - }, - new - { - Id = 973L, - FilterListId = 925L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CentralAfricanRepublic.txt" - }, - new - { - Id = 974L, - FilterListId = 926L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Chile.txt" - }, - new - { - Id = 975L, - FilterListId = 927L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/ChinaPeoplesRepublicof.txt" - }, - new - { - Id = 976L, - FilterListId = 928L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/ChristmasIsland.txt" - }, - new - { - Id = 977L, - FilterListId = 929L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CocosKeelingIslands.txt" - }, - new - { - Id = 978L, - FilterListId = 930L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Colombia.txt" - }, - new - { - Id = 979L, - FilterListId = 931L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CongoKinshasa.txt" - }, - new - { - Id = 980L, - FilterListId = 932L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CookIslands.txt" - }, - new - { - Id = 981L, - FilterListId = 933L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CostaRica.txt" - }, - new - { - Id = 982L, - FilterListId = 934L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Croatia.txt" - }, - new - { - Id = 983L, - FilterListId = 935L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Cuba.txt" - }, - new - { - Id = 984L, - FilterListId = 936L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Cyprus.txt" - }, - new - { - Id = 985L, - FilterListId = 937L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CzechRepublic.txt" - }, - new - { - Id = 986L, - FilterListId = 938L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Denmark.txt" - }, - new - { - Id = 987L, - FilterListId = 939L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Djibouti.txt" - }, - new - { - Id = 988L, - FilterListId = 940L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Dominica.txt" - }, - new - { - Id = 989L, - FilterListId = 941L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/DominicanRepublic.txt" - }, - new - { - Id = 990L, - FilterListId = 942L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Ecuador.txt" - }, - new - { - Id = 991L, - FilterListId = 943L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Egypt.txt" - }, - new - { - Id = 992L, - FilterListId = 944L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/ElSalvador.txt" - }, - new - { - Id = 993L, - FilterListId = 945L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/EquatorialGuinea.txt" - }, - new - { - Id = 994L, - FilterListId = 946L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Estonia.txt" - }, - new - { - Id = 995L, - FilterListId = 947L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/EuropeanUnion.txt" - }, - new - { - Id = 996L, - FilterListId = 948L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/FaeroeIslands.txt" - }, - new - { - Id = 997L, - FilterListId = 949L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/FederatedStatesOfMicronesia.txt" - }, - new - { - Id = 998L, - FilterListId = 950L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Fiji.txt" - }, - new - { - Id = 999L, - FilterListId = 951L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Finland.txt" - }, - new - { - Id = 1000L, - FilterListId = 952L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/France.txt" - }, - new - { - Id = 1001L, - FilterListId = 953L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/FrenchPolynesia.txt" - }, - new - { - Id = 1002L, - FilterListId = 954L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/FrenchSouthernAndAntarcticLands.txt" - }, - new - { - Id = 1003L, - FilterListId = 955L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/GaboneseRepublic.txt" - }, - new - { - Id = 1004L, - FilterListId = 956L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Gambia.txt" - }, - new - { - Id = 1005L, - FilterListId = 957L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/GazaStrip.txt" - }, - new - { - Id = 1006L, - FilterListId = 958L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Georgia.txt" - }, - new - { - Id = 1007L, - FilterListId = 959L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Germany.txt" - }, - new - { - Id = 1008L, - FilterListId = 960L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Ghana.txt" - }, - new - { - Id = 1009L, - FilterListId = 961L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Greece.txt" - }, - new - { - Id = 1010L, - FilterListId = 962L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Greenland.txt" - }, - new - { - Id = 1011L, - FilterListId = 963L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Grenada.txt" - }, - new - { - Id = 1012L, - FilterListId = 964L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guadeloupe.txt" - }, - new - { - Id = 1013L, - FilterListId = 965L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guam.txt" - }, - new - { - Id = 1014L, - FilterListId = 966L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guatemala.txt" - }, - new - { - Id = 1015L, - FilterListId = 967L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guernsey.txt" - }, - new - { - Id = 1016L, - FilterListId = 968L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guinea.txt" - }, - new - { - Id = 1017L, - FilterListId = 969L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guyana.txt" - }, - new - { - Id = 1018L, - FilterListId = 970L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Haiti.txt" - }, - new - { - Id = 1019L, - FilterListId = 971L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/HeardIslandAndMcDonaldIslands.txt" - }, - new - { - Id = 1020L, - FilterListId = 972L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Honduras.txt" - }, - new - { - Id = 1021L, - FilterListId = 973L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/HongKong.txt" - }, - new - { - Id = 1022L, - FilterListId = 974L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Hungary.txt" - }, - new - { - Id = 1023L, - FilterListId = 975L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Iceland.txt" - }, - new - { - Id = 1024L, - FilterListId = 976L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/India.txt" - }, - new - { - Id = 1025L, - FilterListId = 977L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Indonesia.txt" - }, - new - { - Id = 1026L, - FilterListId = 978L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Iran.txt" - }, - new - { - Id = 1027L, - FilterListId = 979L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Iraq.txt" - }, - new - { - Id = 1028L, - FilterListId = 980L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Ireland.txt" - }, - new - { - Id = 1029L, - FilterListId = 981L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/IsleofMan.txt" - }, - new - { - Id = 1030L, - FilterListId = 982L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Israel.txt" - }, - new - { - Id = 1031L, - FilterListId = 983L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Italy.txt" - }, - new - { - Id = 1032L, - FilterListId = 984L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/IvoryCoast.txt" - }, - new - { - Id = 1033L, - FilterListId = 985L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Japan.txt" - }, - new - { - Id = 1034L, - FilterListId = 986L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Jersey.txt" - }, - new - { - Id = 1035L, - FilterListId = 987L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Jordan.txt" - }, - new - { - Id = 1036L, - FilterListId = 988L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Kazakhstan.txt" - }, - new - { - Id = 1037L, - FilterListId = 989L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Kenya.txt" - }, - new - { - Id = 1038L, - FilterListId = 990L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Kiribati.txt" - }, - new - { - Id = 1039L, - FilterListId = 991L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Kuwait.txt" - }, - new - { - Id = 1040L, - FilterListId = 992L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Kyrgyzstan.txt" - }, - new - { - Id = 1041L, - FilterListId = 993L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Laos.txt" - }, - new - { - Id = 1042L, - FilterListId = 994L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Latvia.txt" - }, - new - { - Id = 1043L, - FilterListId = 995L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Lebanon.txt" - }, - new - { - Id = 1044L, - FilterListId = 996L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Libya.txt" - }, - new - { - Id = 1045L, - FilterListId = 997L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Liechtenstein.txt" - }, - new - { - Id = 1046L, - FilterListId = 998L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Lithuania.txt" - }, - new - { - Id = 1047L, - FilterListId = 999L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Luxembourg.txt" - }, - new - { - Id = 1048L, - FilterListId = 1000L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Macau.txt" - }, - new - { - Id = 1049L, - FilterListId = 1001L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Macedonia.txt" - }, - new - { - Id = 1050L, - FilterListId = 1002L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Madagascar.txt" - }, - new - { - Id = 1051L, - FilterListId = 1003L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Malawi.txt" - }, - new - { - Id = 1052L, - FilterListId = 1004L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Malaysia.txt" - }, - new - { - Id = 1053L, - FilterListId = 1005L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mali.txt" - }, - new - { - Id = 1054L, - FilterListId = 1006L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Malta.txt" - }, - new - { - Id = 1055L, - FilterListId = 1007L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mauritania.txt" - }, - new - { - Id = 1056L, - FilterListId = 1008L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mauritius.txt" - }, - new - { - Id = 1057L, - FilterListId = 1009L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mayotte.txt" - }, - new - { - Id = 1058L, - FilterListId = 1010L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mexico.txt" - }, - new - { - Id = 1059L, - FilterListId = 1011L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Moldova.txt" - }, - new - { - Id = 1060L, - FilterListId = 1012L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mongolia.txt" - }, - new - { - Id = 1061L, - FilterListId = 1013L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Montenegro.txt" - }, - new - { - Id = 1062L, - FilterListId = 1014L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Montserrat.txt" - }, - new - { - Id = 1063L, - FilterListId = 1015L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Morocco.txt" - }, - new - { - Id = 1064L, - FilterListId = 1016L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mozambique.txt" - }, - new - { - Id = 1065L, - FilterListId = 1017L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Namibia.txt" - }, - new - { - Id = 1066L, - FilterListId = 1018L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Nauru.txt" - }, - new - { - Id = 1067L, - FilterListId = 1019L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Nepal.txt" - }, - new - { - Id = 1068L, - FilterListId = 1020L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Netherlands.txt" - }, - new - { - Id = 1069L, - FilterListId = 1021L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/NewCaledonia.txt" - }, - new - { - Id = 1070L, - FilterListId = 1022L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/NewZealand.txt" - }, - new - { - Id = 1071L, - FilterListId = 1023L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Nicaragua.txt" - }, - new - { - Id = 1072L, - FilterListId = 1024L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Niger.txt" - }, - new - { - Id = 1073L, - FilterListId = 1025L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Nigeria.txt" - }, - new - { - Id = 1074L, - FilterListId = 1026L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Niue.txt" - }, - new - { - Id = 1075L, - FilterListId = 1027L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/NorfolkIsland.txt" - }, - new - { - Id = 1076L, - FilterListId = 1028L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/NorthernMarianaIslands.txt" - }, - new - { - Id = 1077L, - FilterListId = 1029L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Norway.txt" - }, - new - { - Id = 1078L, - FilterListId = 1030L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Oman.txt" - }, - new - { - Id = 1079L, - FilterListId = 1031L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Pakistan.txt" - }, - new - { - Id = 1080L, - FilterListId = 1032L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Palau.txt" - }, - new - { - Id = 1081L, - FilterListId = 1033L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Palestine.txt" - }, - new - { - Id = 1082L, - FilterListId = 1034L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Panama.txt" - }, - new - { - Id = 1083L, - FilterListId = 1035L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Paraguay.txt" - }, - new - { - Id = 1084L, - FilterListId = 1036L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Peru.txt" - }, - new - { - Id = 1085L, - FilterListId = 1037L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Philippines.txt" - }, - new - { - Id = 1086L, - FilterListId = 1038L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/PitcairnIslands.txt" - }, - new - { - Id = 1087L, - FilterListId = 1039L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Poland.txt" - }, - new - { - Id = 1088L, - FilterListId = 1040L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Portugal.txt" - }, - new - { - Id = 1089L, - FilterListId = 1041L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/PuertoRico.txt" - }, - new - { - Id = 1090L, - FilterListId = 1042L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Qatar.txt" - }, - new - { - Id = 1091L, - FilterListId = 1043L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Romania.txt" - }, - new - { - Id = 1092L, - FilterListId = 1044L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Russia.txt" - }, - new - { - Id = 1093L, - FilterListId = 1045L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Rwanda.txt" - }, - new - { - Id = 1094L, - FilterListId = 1047L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaintHelena.txt" - }, - new - { - Id = 1095L, - FilterListId = 1048L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaintLucia.txt" - }, - new - { - Id = 1096L, - FilterListId = 1049L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaintPierreAndMiquelon.txt" - }, - new - { - Id = 1097L, - FilterListId = 1050L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaintVincentAndGrenadines.txt" - }, - new - { - Id = 1098L, - FilterListId = 1051L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Samoa.txt" - }, - new - { - Id = 1099L, - FilterListId = 1052L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SanMarino.txt" - }, - new - { - Id = 1100L, - FilterListId = 1053L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaoTomeAndPrincipe.txt" - }, - new - { - Id = 1101L, - FilterListId = 1054L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaudiArabia.txt" - }, - new - { - Id = 1102L, - FilterListId = 1055L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Senegal.txt" - }, - new - { - Id = 1103L, - FilterListId = 1056L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Serbia.txt" - }, - new - { - Id = 1104L, - FilterListId = 1057L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Seychelles.txt" - }, - new - { - Id = 1105L, - FilterListId = 1058L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SierraLeone.txt" - }, - new - { - Id = 1106L, - FilterListId = 1059L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Singapore.txt" - }, - new - { - Id = 1107L, - FilterListId = 1060L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SintMaarten.txt" - }, - new - { - Id = 1108L, - FilterListId = 1061L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Slovakia.txt" - }, - new - { - Id = 1109L, - FilterListId = 1062L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Slovenia.txt" - }, - new - { - Id = 1110L, - FilterListId = 1063L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Somalia.txt" - }, - new - { - Id = 1111L, - FilterListId = 1064L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SouthAfrica.txt" - }, - new - { - Id = 1112L, - FilterListId = 1065L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SouthGeorgiaAndSouthSandwichIslands.txt" - }, - new - { - Id = 1113L, - FilterListId = 1066L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SouthKorea.txt" - }, - new - { - Id = 1114L, - FilterListId = 1067L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Spain.txt" - }, - new - { - Id = 1115L, - FilterListId = 1068L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SriLanka.txt" - }, - new - { - Id = 1116L, - FilterListId = 1069L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Sudan.txt" - }, - new - { - Id = 1117L, - FilterListId = 1070L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Suriname.txt" - }, - new - { - Id = 1118L, - FilterListId = 1071L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Sweden.txt" - }, - new - { - Id = 1119L, - FilterListId = 1072L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Switzerland.txt" - }, - new - { - Id = 1120L, - FilterListId = 1073L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Syria.txt" - }, - new - { - Id = 1121L, - FilterListId = 1074L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Taiwan.txt" - }, - new - { - Id = 1122L, - FilterListId = 1075L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tajikistan.txt" - }, - new - { - Id = 1123L, - FilterListId = 1076L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tanzania.txt" - }, - new - { - Id = 1124L, - FilterListId = 1077L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Thailand.txt" - }, - new - { - Id = 1125L, - FilterListId = 1078L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/TimorLeste.txt" - }, - new - { - Id = 1126L, - FilterListId = 1079L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Togo.txt" - }, - new - { - Id = 1127L, - FilterListId = 1080L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tokelau.txt" - }, - new - { - Id = 1128L, - FilterListId = 1081L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tonga.txt" - }, - new - { - Id = 1129L, - FilterListId = 1082L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/TrinidadAndTobago.txt" - }, - new - { - Id = 1130L, - FilterListId = 1083L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tunisia.txt" - }, - new - { - Id = 1131L, - FilterListId = 1084L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Turkey.txt" - }, - new - { - Id = 1132L, - FilterListId = 1085L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Turkmenistan.txt" - }, - new - { - Id = 1133L, - FilterListId = 1086L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/TurksAndCaicosIslands.txt" - }, - new - { - Id = 1134L, - FilterListId = 1087L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tuvalu.txt" - }, - new - { - Id = 1135L, - FilterListId = 1088L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Uganda.txt" - }, - new - { - Id = 1136L, - FilterListId = 1089L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Ukraine.txt" - }, - new - { - Id = 1137L, - FilterListId = 1090L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/UnitedArabEmirates.txt" - }, - new - { - Id = 1138L, - FilterListId = 1091L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/UnitedKingdom.txt" - }, - new - { - Id = 1139L, - FilterListId = 1092L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/UnitedStatesofAmerica.txt" - }, - new - { - Id = 1140L, - FilterListId = 1093L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Uruguay.txt" - }, - new - { - Id = 1141L, - FilterListId = 1094L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Uzbekistan.txt" - }, - new - { - Id = 1142L, - FilterListId = 1095L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Vanuatu.txt" - }, - new - { - Id = 1143L, - FilterListId = 1096L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Venezuela.txt" - }, - new - { - Id = 1144L, - FilterListId = 1097L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Vietnam.txt" - }, - new - { - Id = 1145L, - FilterListId = 1098L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/WallisandFutuna.txt" - }, - new - { - Id = 1146L, - FilterListId = 1099L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/WesternSahara.txt" - }, - new - { - Id = 1147L, - FilterListId = 1100L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Zambia.txt" - }, - new - { - Id = 1148L, - FilterListId = 1101L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Zimbabwe.txt" - }, - new - { - Id = 1149L, - FilterListId = 1102L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-Bulgarian-List.txt" - }, - new - { - Id = 1150L, - FilterListId = 1103L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-Clickbait-Blocklist.txt" - }, - new - { - Id = 1151L, - FilterListId = 1104L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-Japanese-3rd-Party-SNS-Filters.txt" - }, - new - { - Id = 1152L, - FilterListId = 1105L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-Japanese-Filters.txt" - }, - new - { - Id = 1153L, - FilterListId = 1106L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-Japanese-Paranoid-Filters.txt" - }, - new - { - Id = 1154L, - FilterListId = 1107L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-X-Files.txt" - }, - new - { - Id = 1155L, - FilterListId = 1108L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABPindo.txt" - }, - new - { - Id = 1156L, - FilterListId = 1109L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/AakList.txt" - }, - new - { - Id = 1157L, - FilterListId = 1110L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/AdAway-Default-Blocklist.txt" - }, - new - { - Id = 1158L, - FilterListId = 1111L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-Filters-by-Gurudee.txt" - }, - new - { - Id = 1159L, - FilterListId = 1112L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-Iran.txt" - }, - new - { - Id = 1160L, - FilterListId = 1113L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-Korea.txt" - }, - new - { - Id = 1161L, - FilterListId = 1114L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-Persian.txt" - }, - new - { - Id = 1162L, - FilterListId = 1115L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-Polska.txt" - }, - new - { - Id = 1163L, - FilterListId = 1116L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-YouTube-Ads.txt" - }, - new - { - Id = 1164L, - FilterListId = 1117L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-uBlock-Polish-Filters.txt" - }, - new - { - Id = 1165L, - FilterListId = 1118L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adguard-English-Filter.txt" - }, - new - { - Id = 1166L, - FilterListId = 1119L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adware-Filters.txt" - }, - new - { - Id = 1167L, - FilterListId = 1120L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/AntiPubWeb.txt" - }, - new - { - Id = 1168L, - FilterListId = 1121L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Anudeep-Youtube.txt" - }, - new - { - Id = 1169L, - FilterListId = 1122L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Ayucat-Powerful.txt" - }, - new - { - Id = 1170L, - FilterListId = 1123L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/BLOGRAM-Analysis-Block-Filter-List-for-Japan.txt" - }, - new - { - Id = 1171L, - FilterListId = 1124L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/BLOGRAM-Basic-Filter-List-for-Japan.txt" - }, - new - { - Id = 1173L, - FilterListId = 1126L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Block-EU-Cookie-Shit-List.txt" - }, - new - { - Id = 1174L, - FilterListId = 1127L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Blockzilla.txt" - }, - new - { - Id = 1175L, - FilterListId = 1128L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/BreakingTheNews.txt" - }, - new - { - Id = 1176L, - FilterListId = 1130L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/CAMELEON-Hosts.txt" - }, - new - { - Id = 1177L, - FilterListId = 1133L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/CryptoWall-Ransomware-C2-Domain-blocklist.txt" - }, - new - { - Id = 1178L, - FilterListId = 1135L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/DNS-BH-Malware-Domains.txt" - }, - new - { - Id = 1179L, - FilterListId = 1139L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Disconnect-Malware-Filter.txt" - }, - new - { - Id = 1180L, - FilterListId = 1140L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Dshield-Suspicious-High.txt" - }, - new - { - Id = 1181L, - FilterListId = 1141L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Dshield-Suspicious-Low.txt" - }, - new - { - Id = 1182L, - FilterListId = 1142L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Dshield-Suspicious-Medium.txt" - }, - new - { - Id = 1183L, - FilterListId = 1143L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/EasyList-Czech-Slovak.txt" - }, - new - { - Id = 1184L, - FilterListId = 1144L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/EasyList-Dutch.txt" - }, - new - { - Id = 1185L, - FilterListId = 1146L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/EasyList-Italy.txt" - }, - new - { - Id = 1186L, - FilterListId = 1148L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/EasyList-Liste-FR.txt" - }, - new - { - Id = 1187L, - FilterListId = 1149L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/EasyList-Thailand.txt" - }, - new - { - Id = 1188L, - FilterListId = 1151L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/FadeMind-addSpam.txt" - }, - new - { - Id = 1189L, - FilterListId = 1152L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Fanboy-Annoyances-List.txt" - }, - new - { - Id = 1190L, - FilterListId = 1153L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Filtros-Nauscopicos.txt" - }, - new - { - Id = 1191L, - FilterListId = 1154L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Finnish-AntiSocial.txt" - }, - new - { - Id = 1192L, - FilterListId = 1155L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/GandJ-Hosts.txt" - }, - new - { - Id = 1193L, - FilterListId = 1156L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Greek-AdBlock-Filter.txt" - }, - new - { - Id = 1194L, - FilterListId = 1157L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Hant05080-Filters.txt" - }, - new - { - Id = 1195L, - FilterListId = 1158L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Henning-VanRaumle-Youtube.txt" - }, - new - { - Id = 1196L, - FilterListId = 1159L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Hufilter.txt" - }, - new - { - Id = 1197L, - FilterListId = 1160L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/HorusTeknoloji/TR-PhishingList/master/url-lists.txt" - }, - new - { - Id = 1198L, - FilterListId = 1161L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ImmortalMalwareDomains.txt" - }, - new - { - Id = 1199L, - FilterListId = 1162L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/JapaneseSiteAdblockFilterver2.txt" - }, - new - { - Id = 1200L, - FilterListId = 1163L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://phishing.army/download/phishing_army_blocklist_extended.txt" - }, - new - { - Id = 1201L, - FilterListId = 1164L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/HorusTeknoloji/TR-PhishingList/master/ip-lists.txt" - }, - new - { - Id = 1202L, - FilterListId = 1165L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/LatvianList.txt" - }, - new - { - Id = 1203L, - FilterListId = 1166L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Lead-Generator.txt" - }, - new - { - Id = 1204L, - FilterListId = 1167L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ListeAR.txt" - }, - new - { - Id = 1205L, - FilterListId = 1168L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Locky-Ransomware-C2-Domain-Blocklist.txt" - }, - new - { - Id = 1206L, - FilterListId = 1169L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Malware-Domains-Just-Domains.txt" - }, - new - { - Id = 1207L, - FilterListId = 1172L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Mat1th-DNS-add-block.txt" - }, - new - { - Id = 1208L, - FilterListId = 1173L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Mayvs-Private-Adblock-Filters.txt" - }, - new - { - Id = 1209L, - FilterListId = 1174L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Metaphoricgiraffe-Privacy-Filters.txt" - }, - new - { - Id = 1210L, - FilterListId = 1175L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Michael-Trimms-Hosts.txt" - }, - new - { - Id = 1211L, - FilterListId = 1176L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Mitchell-Krogs-Badd-Boyz-Hosts.txt" - }, - new - { - Id = 1212L, - FilterListId = 1179L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Notracking-hostnames.txt" - }, - new - { - Id = 1213L, - FilterListId = 1180L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/PLgeneral.txt" - }, - new - { - Id = 1214L, - FilterListId = 1182L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Piwik-Spam.txt" - }, - new - { - Id = 1215L, - FilterListId = 1183L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/PopupBlocker.txt" - }, - new - { - Id = 1216L, - FilterListId = 1184L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Prebake-Obtrusive.txt" - }, - new - { - Id = 1217L, - FilterListId = 1185L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Prigent-Malware.txt" - }, - new - { - Id = 1218L, - FilterListId = 1187L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Quidsup-Malicious.txt" - }, - new - { - Id = 1219L, - FilterListId = 1189L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ROad-Block.txt" - }, - new - { - Id = 1220L, - FilterListId = 1190L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/RU-AdList.txt" - }, - new - { - Id = 1221L, - FilterListId = 1191L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/RUAdListBitBlock.txt" - }, - new - { - Id = 1222L, - FilterListId = 1192L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/RUAdListCounters.txt" - }, - new - { - Id = 1223L, - FilterListId = 1193L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Ransomware-Domain-Blocklist.txt" - }, - new - { - Id = 1224L, - FilterListId = 1194L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/SVN-Slovenian.txt" - }, - new - { - Id = 1225L, - FilterListId = 1196L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/SatterlysAdblockPlusFilters.txt" - }, - new - { - Id = 1226L, - FilterListId = 1197L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Schacks-Adblock-Plus-Liste.txt" - }, - new - { - Id = 1227L, - FilterListId = 1199L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Spam-Assassin-Bill-Stearns.txt" - }, - new - { - Id = 1228L, - FilterListId = 1202L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Fakenews.txt" - }, - new - { - Id = 1229L, - FilterListId = 1203L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Gambling.txt" - }, - new - { - Id = 1230L, - FilterListId = 1204L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Hosts.txt" - }, - new - { - Id = 1231L, - FilterListId = 1205L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Porn.txt" - }, - new - { - Id = 1232L, - FilterListId = 1206L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Risky-Hosts.txt" - }, - new - { - Id = 1233L, - FilterListId = 1207L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Trackers.txt" - }, - new - { - Id = 1234L, - FilterListId = 1209L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Unified-Hosts.txt" - }, - new - { - Id = 1235L, - FilterListId = 1210L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/TakoYachty-Gift-Card-Killer.txt" - }, - new - { - Id = 1236L, - FilterListId = 1211L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/TeslaCrypt-Ransomware-C2-Domain-Blocklist.txt" - }, - new - { - Id = 1237L, - FilterListId = 1212L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/TeslaCrypt-Ransomware-Payment-Sites-Domain-Blocklist.txt" - }, - new - { - Id = 1238L, - FilterListId = 1213L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/The-Hosts-File-Project.txt" - }, - new - { - Id = 1239L, - FilterListId = 1214L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Thoughtconverge-AdBlock-Filters.txt" - }, - new - { - Id = 1240L, - FilterListId = 1215L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Tofu-Filter.txt" - }, - new - { - Id = 1241L, - FilterListId = 1216L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/TorrentLocker-Ransomware-C2-Domain-Blocklist.txt" - }, - new - { - Id = 1242L, - FilterListId = 1217L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/TorrentLocker-Ransomware-Payment-Sites-Domain-Blocklist.txt" - }, - new - { - Id = 1243L, - FilterListId = 1218L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Turk-adlist.txt" - }, - new - { - Id = 1244L, - FilterListId = 1220L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Wiltteri.txt" - }, - new - { - Id = 1245L, - FilterListId = 1221L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/WindowsSpyBlocker7.txt" - }, - new - { - Id = 1246L, - FilterListId = 1222L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/WindowsSpyBlocker81.txt" - }, - new - { - Id = 1247L, - FilterListId = 1223L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Yhonay-AntiPopAds.txt" - }, - new - { - Id = 1248L, - FilterListId = 1224L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/YousList.txt" - }, - new - { - Id = 1249L, - FilterListId = 1225L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ZeuS-Domain-Blocklist-Bad-Domains.txt" - }, - new - { - Id = 1250L, - FilterListId = 1226L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/uAssetsFilters.txt" - }, - new - { - Id = 1251L, - FilterListId = 1227L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/uAssetsPrivacy.txt" - }, - new - { - Id = 1252L, - FilterListId = 1228L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/uAssetsUnbreak.txt" - }, - new - { - Id = 1253L, - FilterListId = 1229L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/uBOPersonalFilters.txt" - }, - new - { - Id = 1254L, - FilterListId = 1230L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/uBlockFiltersPlus.txt" - }, - new - { - Id = 1264L, - FilterListId = 1243L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CombinedBlacklists/CombinedBlackLists.txt" - }, - new - { - Id = 1265L, - FilterListId = 1244L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CombinedBlacklists/DeathbybandaidList.txt" - }, - new - { - Id = 1266L, - FilterListId = 1245L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CombinedWhitelists/CombinedWhiteLists.txt" - }, - new - { - Id = 1267L, - FilterListId = 1247L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-'Battle Royale' List.txt" - }, - new - { - Id = 1268L, - FilterListId = 1247L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-'Battle Royale' List.txt" - }, - new - { - Id = 1269L, - FilterListId = 1278L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://better.fyi/blockerList.txt" - }, - new - { - Id = 1270L, - FilterListId = 1279L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/olegwukr/polish-privacy-filters/master/adblock.txt" - }, - new - { - Id = 1271L, - FilterListId = 1280L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/olegwukr/polish-privacy-filters/master/anti-adblock.txt" - }, - new - { - Id = 1272L, - FilterListId = 1281L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/olegwukr/polish-privacy-filters/master/anti-adblock-suplement.txt" - }, - new - { - Id = 1273L, - FilterListId = 1282L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/koenrh/little-snitch-rules/master/apps.lsrules" - }, - new - { - Id = 1274L, - FilterListId = 1283L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AnXh3L0/blocklist/master/albanian-easylist-addition/Albania.txt" - }, - new - { - Id = 1275L, - FilterListId = 1284L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/finnish-easylist-addition/finnish-easylist-addition/master/annoyances/Finland_annoyances.txt" - }, - new - { - Id = 1276L, - FilterListId = 1285L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/theel0ja/uMatrix-rules/master/my-umatrix-rules.txt" - }, - new - { - Id = 1277L, - FilterListId = 1286L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/PoorPocketsMcNewHold/steamscamsites/master/steamscamsite.txt" - }, - new - { - Id = 1278L, - FilterListId = 1288L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/NanoAdblockerLab/NanoContrib/master/dist/placeholder-buster.txt" - }, - new - { - Id = 1279L, - FilterListId = 1288L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/NanoAdblockerLab/NanoContrib/master/dist/placeholder-buster.txt" - }, - new - { - Id = 1280L, - FilterListId = 1289L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/KnowYourMemePureBrowsingExperience.txt" - }, - new - { - Id = 1281L, - FilterListId = 1289L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/KnowYourMemePureBrowsingExperience.txt" - }, - new - { - Id = 1282L, - FilterListId = 1290L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Dandelion Sprout's Anti-Malware List.txt" - }, - new - { - Id = 1283L, - FilterListId = 1290L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Dandelion Sprout's Anti-Malware List.txt" - }, - new - { - Id = 1284L, - FilterListId = 1291L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/Twitter De-Politificator.txt" - }, - new - { - Id = 1285L, - FilterListId = 1291L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/Twitter De-Politificator.txt" - }, - new - { - Id = 1286L, - FilterListId = 1292L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Android Scum Class — Fake notification counters.txt" - }, - new - { - Id = 1287L, - FilterListId = 1292L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Android Scum Class — Fake notification counters.txt" - }, - new - { - Id = 1288L, - FilterListId = 1293L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Adblock list templates/Adblock list template -Hosts and uBlock Origin-.txt" - }, - new - { - Id = 1289L, - FilterListId = 1293L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Adblock list templates/Adblock list template -Hosts and uBlock Origin-.txt" - }, - new - { - Id = 1290L, - FilterListId = 1294L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://crapblock.theel0ja.info/even-cleaner-news-sites.txt" - }, - new - { - Id = 1291L, - FilterListId = 1295L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/intr0/iVOID.GitLab.io/raw/master/iVOID.hosts" - }, - new - { - Id = 1292L, - FilterListId = 1295L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://notabug.org/-intr0/iVOID/raw/master/iVOID.hosts" - }, - new - { - Id = 1293L, - FilterListId = 1295L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "http://w2caclgy62idhzyut23ucimqw5tsmfbl4b2iyjzpvngatast2fiqxbyd.onion/ivoid/iVOID.hosts" - }, - new - { - Id = 1294L, - FilterListId = 1296L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/intr0/DomainVoider/raw/master/DomainVoider" - }, - new - { - Id = 1295L, - FilterListId = 1296L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://notabug.org/-intr0/DomainVoider/raw/master/DomainVoider" - }, - new - { - Id = 1296L, - FilterListId = 1296L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "http://w2caclgy62idhzyut23ucimqw5tsmfbl4b2iyjzpvngatast2fiqxbyd.onion/domainvoider/DomainVoider.txt" - }, - new - { - Id = 1297L, - FilterListId = 1297L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/filters/css_style_filters.txt" - }, - new - { - Id = 1298L, - FilterListId = 1298L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hosts.nfz.moe/full/hosts" - }, - new - { - Id = 1299L, - FilterListId = 1299L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hosts.nfz.moe/basic/hosts" - }, - new - { - Id = 1300L, - FilterListId = 1299L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/neoFelhz/neohosts/gh-pages/basic/hosts" - }, - new - { - Id = 1301L, - FilterListId = 1300L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.stopforumspam.com/downloads/toxic_domains_whole.txt" - }, - new - { - Id = 1302L, - FilterListId = 1301L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/hosts/test/hosts_facebook0.txt" - }, - new - { - Id = 1303L, - FilterListId = 1301L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/hosts/test/hosts_facebook0.txt" - }, - new - { - Id = 1304L, - FilterListId = 1302L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/hosts/hosts_leftover.txt" - }, - new - { - Id = 1305L, - FilterListId = 1302L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/hosts/hosts_leftover.txt" - }, - new - { - Id = 1306L, - FilterListId = 1303L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/other/MiscAnnoyance.txt" - }, - new - { - Id = 1307L, - FilterListId = 1303L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/other/MiscAnnoyance.txt" - }, - new - { - Id = 1308L, - FilterListId = 1304L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/ubo-css/iHateCircles.txt" - }, - new - { - Id = 1309L, - FilterListId = 1304L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/ubo-css/iHateCircles.txt" - }, - new - { - Id = 1310L, - FilterListId = 1305L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/adv/domains" - }, - new - { - Id = 1311L, - FilterListId = 1306L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/adv/urls" - }, - new - { - Id = 1312L, - FilterListId = 1307L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/aggressive/domains" - }, - new - { - Id = 1313L, - FilterListId = 1308L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/aggressive/urls" - }, - new - { - Id = 1314L, - FilterListId = 1309L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/alcohol/domains" - }, - new - { - Id = 1315L, - FilterListId = 1310L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/alcohol/urls" - }, - new - { - Id = 1316L, - FilterListId = 1311L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/anonvpn/domains" - }, - new - { - Id = 1317L, - FilterListId = 1312L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/anonvpn/urls" - }, - new - { - Id = 1318L, - FilterListId = 1313L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/bikes/domains" - }, - new - { - Id = 1319L, - FilterListId = 1314L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/bikes/urls" - }, - new - { - Id = 1320L, - FilterListId = 1315L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/boats/domains" - }, - new - { - Id = 1321L, - FilterListId = 1316L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/boats/urls" - }, - new - { - Id = 1322L, - FilterListId = 1317L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/cars/domains" - }, - new - { - Id = 1323L, - FilterListId = 1318L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/cars/urls" - }, - new - { - Id = 1324L, - FilterListId = 1319L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/planes/domains" - }, - new - { - Id = 1325L, - FilterListId = 1320L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/planes/urls" - }, - new - { - Id = 1326L, - FilterListId = 1321L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/chat/domains" - }, - new - { - Id = 1327L, - FilterListId = 1322L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/chat/urls" - }, - new - { - Id = 1328L, - FilterListId = 1323L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/costtraps/domains" - }, - new - { - Id = 1329L, - FilterListId = 1324L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/costtraps/urls" - }, - new - { - Id = 1330L, - FilterListId = 1325L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/dating/domains" - }, - new - { - Id = 1331L, - FilterListId = 1326L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/dating/urls" - }, - new - { - Id = 1332L, - FilterListId = 1327L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/downloads/domains" - }, - new - { - Id = 1333L, - FilterListId = 1328L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/downloads/urls" - }, - new - { - Id = 1334L, - FilterListId = 1329L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/drugs/domains" - }, - new - { - Id = 1335L, - FilterListId = 1330L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/drugs/urls" - }, - new - { - Id = 1336L, - FilterListId = 1331L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/dynamic/domains" - }, - new - { - Id = 1337L, - FilterListId = 1332L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/dynamic/urls" - }, - new - { - Id = 1338L, - FilterListId = 1333L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/education/schools/domains" - }, - new - { - Id = 1339L, - FilterListId = 1334L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/education/schools/urls" - }, - new - { - Id = 1340L, - FilterListId = 1335L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/banking/domains" - }, - new - { - Id = 1341L, - FilterListId = 1336L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/banking/urls" - }, - new - { - Id = 1342L, - FilterListId = 1337L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/insurance/domains" - }, - new - { - Id = 1343L, - FilterListId = 1338L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/insurance/urls" - }, - new - { - Id = 1344L, - FilterListId = 1339L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/moneylending/domains" - }, - new - { - Id = 1345L, - FilterListId = 1340L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/moneylending/urls" - }, - new - { - Id = 1346L, - FilterListId = 1341L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/other/domains" - }, - new - { - Id = 1347L, - FilterListId = 1342L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/other/urls" - }, - new - { - Id = 1348L, - FilterListId = 1343L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/realestate/domains" - }, - new - { - Id = 1349L, - FilterListId = 1344L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/realestate/urls" - }, - new - { - Id = 1350L, - FilterListId = 1345L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/trading/domains" - }, - new - { - Id = 1351L, - FilterListId = 1346L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/trading/urls" - }, - new - { - Id = 1352L, - FilterListId = 1347L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/fortunetelling/domains" - }, - new - { - Id = 1353L, - FilterListId = 1348L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/fortunetelling/urls" - }, - new - { - Id = 1354L, - FilterListId = 1349L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/forum/domains" - }, - new - { - Id = 1355L, - FilterListId = 1350L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/forum/urls" - }, - new - { - Id = 1356L, - FilterListId = 1351L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/gamble/domains" - }, - new - { - Id = 1357L, - FilterListId = 1352L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/gamble/urls" - }, - new - { - Id = 1358L, - FilterListId = 1353L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/government/domains" - }, - new - { - Id = 1359L, - FilterListId = 1354L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/government/urls" - }, - new - { - Id = 1360L, - FilterListId = 1355L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hacking/domains" - }, - new - { - Id = 1361L, - FilterListId = 1356L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hacking/urls" - }, - new - { - Id = 1362L, - FilterListId = 1357L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/cooking/domains" - }, - new - { - Id = 1363L, - FilterListId = 1358L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/cooking/urls" - }, - new - { - Id = 1364L, - FilterListId = 1359L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/games-misc/domains" - }, - new - { - Id = 1365L, - FilterListId = 1360L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/games-misc/urls" - }, - new - { - Id = 1366L, - FilterListId = 1361L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/games-online/domains" - }, - new - { - Id = 1367L, - FilterListId = 1362L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/games-online/urls" - }, - new - { - Id = 1368L, - FilterListId = 1363L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/gardening/domains" - }, - new - { - Id = 1369L, - FilterListId = 1364L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/gardening/urls" - }, - new - { - Id = 1370L, - FilterListId = 1365L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/pets/domains" - }, - new - { - Id = 1371L, - FilterListId = 1366L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/pets/urls" - }, - new - { - Id = 1372L, - FilterListId = 1367L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/homestyle/domains" - }, - new - { - Id = 1373L, - FilterListId = 1368L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/homestyle/urls" - }, - new - { - Id = 1374L, - FilterListId = 1369L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hospitals/domains" - }, - new - { - Id = 1375L, - FilterListId = 1370L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hospitals/urls" - }, - new - { - Id = 1376L, - FilterListId = 1371L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/imagehosting/domains" - }, - new - { - Id = 1377L, - FilterListId = 1372L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/imagehosting/urls" - }, - new - { - Id = 1378L, - FilterListId = 1373L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/isp/domains" - }, - new - { - Id = 1379L, - FilterListId = 1374L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/isp/urls" - }, - new - { - Id = 1380L, - FilterListId = 1375L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/jobsearch/domains" - }, - new - { - Id = 1381L, - FilterListId = 1376L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/jobsearch/urls" - }, - new - { - Id = 1382L, - FilterListId = 1377L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/library/domains" - }, - new - { - Id = 1383L, - FilterListId = 1378L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/library/urls" - }, - new - { - Id = 1384L, - FilterListId = 1379L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/military/domains" - }, - new - { - Id = 1385L, - FilterListId = 1380L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/military/urls" - }, - new - { - Id = 1386L, - FilterListId = 1381L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/models/domains" - }, - new - { - Id = 1387L, - FilterListId = 1382L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/models/urls" - }, - new - { - Id = 1388L, - FilterListId = 1383L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/movies/domains" - }, - new - { - Id = 1389L, - FilterListId = 1384L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/movies/urls" - }, - new - { - Id = 1390L, - FilterListId = 1385L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/music/domains" - }, - new - { - Id = 1391L, - FilterListId = 1386L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/music/urls" - }, - new - { - Id = 1392L, - FilterListId = 1387L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/news/domains" - }, - new - { - Id = 1393L, - FilterListId = 1388L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/news/urls" - }, - new - { - Id = 1394L, - FilterListId = 1389L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/podcasts/domains" - }, - new - { - Id = 1395L, - FilterListId = 1390L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/podcasts/urls" - }, - new - { - Id = 1396L, - FilterListId = 1391L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/politics/domains" - }, - new - { - Id = 1397L, - FilterListId = 1392L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/politics/urls" - }, - new - { - Id = 1398L, - FilterListId = 1393L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/porn/domains" - }, - new - { - Id = 1399L, - FilterListId = 1394L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/porn/urls" - }, - new - { - Id = 1400L, - FilterListId = 1395L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/radiotv/domains" - }, - new - { - Id = 1401L, - FilterListId = 1396L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/radiotv/urls" - }, - new - { - Id = 1402L, - FilterListId = 1397L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/humor/domains" - }, - new - { - Id = 1403L, - FilterListId = 1398L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/humor/urls" - }, - new - { - Id = 1404L, - FilterListId = 1399L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/martialarts/domains" - }, - new - { - Id = 1405L, - FilterListId = 1400L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/martialarts/urls" - }, - new - { - Id = 1406L, - FilterListId = 1401L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/restaurants/domains" - }, - new - { - Id = 1407L, - FilterListId = 1402L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/restaurants/urls" - }, - new - { - Id = 1408L, - FilterListId = 1403L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/sports/domains" - }, - new - { - Id = 1409L, - FilterListId = 1404L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/sports/urls" - }, - new - { - Id = 1410L, - FilterListId = 1405L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/travel/domains" - }, - new - { - Id = 1411L, - FilterListId = 1406L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/travel/urls" - }, - new - { - Id = 1412L, - FilterListId = 1407L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/wellness/domains" - }, - new - { - Id = 1413L, - FilterListId = 1408L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/wellness/urls" - }, - new - { - Id = 1414L, - FilterListId = 1409L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/redirector/domains" - }, - new - { - Id = 1415L, - FilterListId = 1410L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/redirector/urls" - }, - new - { - Id = 1416L, - FilterListId = 1411L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/religion/domains" - }, - new - { - Id = 1417L, - FilterListId = 1412L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/religion/urls" - }, - new - { - Id = 1418L, - FilterListId = 1413L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/remotecontrol/domains" - }, - new - { - Id = 1419L, - FilterListId = 1414L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/remotecontrol/urls" - }, - new - { - Id = 1420L, - FilterListId = 1415L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/ringtones/domains" - }, - new - { - Id = 1421L, - FilterListId = 1416L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/ringtones/urls" - }, - new - { - Id = 1422L, - FilterListId = 1417L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/science/astronomy/domains" - }, - new - { - Id = 1423L, - FilterListId = 1418L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/science/astronomy/urls" - }, - new - { - Id = 1424L, - FilterListId = 1419L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/science/chemistry/domains" - }, - new - { - Id = 1425L, - FilterListId = 1420L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/science/chemistry/urls" - }, - new - { - Id = 1426L, - FilterListId = 1421L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/searchengines/domains" - }, - new - { - Id = 1427L, - FilterListId = 1422L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/searchengines/urls" - }, - new - { - Id = 1428L, - FilterListId = 1423L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/sex/education/domains" - }, - new - { - Id = 1429L, - FilterListId = 1424L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/sex/education/urls" - }, - new - { - Id = 1430L, - FilterListId = 1425L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/sex/lingerie/domains" - }, - new - { - Id = 1431L, - FilterListId = 1426L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/sex/lingerie/urls" - }, - new - { - Id = 1432L, - FilterListId = 1427L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/shopping/domains" - }, - new - { - Id = 1433L, - FilterListId = 1428L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/shopping/urls" - }, - new - { - Id = 1434L, - FilterListId = 1429L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/socialnet/domains" - }, - new - { - Id = 1435L, - FilterListId = 1430L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/socialnet/urls" - }, - new - { - Id = 1436L, - FilterListId = 1431L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/spyware/domains" - }, - new - { - Id = 1437L, - FilterListId = 1432L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/spyware/urls" - }, - new - { - Id = 1438L, - FilterListId = 1433L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/tracker/domains" - }, - new - { - Id = 1439L, - FilterListId = 1434L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/tracker/urls" - }, - new - { - Id = 1440L, - FilterListId = 1435L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/updatesites/domains" - }, - new - { - Id = 1441L, - FilterListId = 1436L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/updatesites/urls" - }, - new - { - Id = 1442L, - FilterListId = 1437L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/urlshortener/domains" - }, - new - { - Id = 1443L, - FilterListId = 1438L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/urlshortener/urls" - }, - new - { - Id = 1444L, - FilterListId = 1439L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/violence/domains" - }, - new - { - Id = 1445L, - FilterListId = 1440L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/violence/urls" - }, - new - { - Id = 1446L, - FilterListId = 1441L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/warez/domains" - }, - new - { - Id = 1447L, - FilterListId = 1442L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/warez/urls" - }, - new - { - Id = 1448L, - FilterListId = 1443L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/weapons/domains" - }, - new - { - Id = 1449L, - FilterListId = 1444L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/weapons/urls" - }, - new - { - Id = 1450L, - FilterListId = 1445L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/webmail/domains" - }, - new - { - Id = 1451L, - FilterListId = 1446L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/webmail/urls" - }, - new - { - Id = 1452L, - FilterListId = 1447L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/webphone/domains" - }, - new - { - Id = 1453L, - FilterListId = 1448L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/webphone/urls" - }, - new - { - Id = 1454L, - FilterListId = 1449L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/webradio/domains" - }, - new - { - Id = 1455L, - FilterListId = 1450L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/webradio/urls" - }, - new - { - Id = 1456L, - FilterListId = 1451L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/webtv/domains" - }, - new - { - Id = 1457L, - FilterListId = 1452L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/webtv/urls" - }, - new - { - Id = 1458L, - FilterListId = 1454L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AnnoyingBannersAndOverlays.txt" - }, - new - { - Id = 1459L, - FilterListId = 1454L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AnnoyingBannersAndOverlays.txt" - }, - new - { - Id = 1460L, - FilterListId = 1455L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AnnoyancesList" - }, - new - { - Id = 1461L, - FilterListId = 1455L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AnnoyancesList" - }, - new - { - Id = 1462L, - FilterListId = 1456L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/SocialShareList.txt" - }, - new - { - Id = 1463L, - FilterListId = 1456L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/SocialShareList.txt" - }, - new - { - Id = 1464L, - FilterListId = 1457L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/PoorPocketsMcNewHold/SteamScamSites/master/steamscamsitesashes" - }, - new - { - Id = 1465L, - FilterListId = 1458L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/anudeepND/blacklist/master/facebook.txt" - }, - new - { - Id = 1466L, - FilterListId = 1459L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/AntiAstrologyList.txt" - }, - new - { - Id = 1467L, - FilterListId = 1459L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/AntiAstrologyList.txt" - }, - new - { - Id = 1468L, - FilterListId = 1460L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/ListForOldPeople.txt" - }, - new - { - Id = 1469L, - FilterListId = 1460L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/ListForOldPeople.txt" - }, - new - { - Id = 1470L, - FilterListId = 1461L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAmazonListForTwitch.txt" - }, - new - { - Id = 1471L, - FilterListId = 1461L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAmazonListForTwitch.txt" - }, - new - { - Id = 1472L, - FilterListId = 1463L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/CitizenXVIL/Hosts/master/Optimized_hosts_list.txt" - }, - new - { - Id = 1473L, - FilterListId = 1464L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/CitizenXVIL/Hosts/master/mobile domains.txt" - }, - new - { - Id = 1474L, - FilterListId = 1465L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/CitizenXVIL/Hosts/master/Youtube hosts.txt" - }, - new - { - Id = 1475L, - FilterListId = 1466L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Zykreh/vortexhosts/master/vortex.txt" - }, - new - { - Id = 1476L, - FilterListId = 1467L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Zykreh/vortexhosts/master/vortex_energized.txt" - }, - new - { - Id = 1477L, - FilterListId = 1468L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Zykreh/vortexhosts/master/vortex_experimental.txt" - }, - new - { - Id = 1478L, - FilterListId = 1469L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Zykreh/vortexhosts/master/vortex_lite.txt" - }, - new - { - Id = 1479L, - FilterListId = 1470L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/xtreme/formats/hosts.txt" - }, - new - { - Id = 1480L, - FilterListId = 1471L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://getadhell.com/standard-package.txt" - }, - new - { - Id = 1481L, - FilterListId = 1473L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ookangzheng/blahdns/master/hosts/blacklist.txt" - }, - new - { - Id = 1482L, - FilterListId = 1473L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://oooo.b-cdn.net/blahdns/adsblock.txt" - }, - new - { - Id = 1483L, - FilterListId = 1474L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ookangzheng/blahdns/master/hosts/whitelist.txt" - }, - new - { - Id = 1486L, - FilterListId = 1477L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hblock.molinero.dev/hosts_rpz.txt" - }, - new - { - Id = 1487L, - FilterListId = 1478L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hblock.molinero.dev/hosts_unbound.conf" - }, - new - { - Id = 1488L, - FilterListId = 1479L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hblock.molinero.dev/hosts_dnsmasq.conf" - }, - new - { - Id = 1489L, - FilterListId = 1480L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://oooo.b-cdn.net/blahdns/rpz.txt" - }, - new - { - Id = 1492L, - FilterListId = 1484L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/torrent.txt" - }, - new - { - Id = 1493L, - FilterListId = 1485L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ngosang/trackerslist/master/trackers_all.txt" - }, - new - { - Id = 1494L, - FilterListId = 1486L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ngosang/trackerslist/master/blacklist.txt" - }, - new - { - Id = 1495L, - FilterListId = 1487L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/quedlin/blacklist/master/domains" - }, - new - { - Id = 1496L, - FilterListId = 1490L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mitchellkrogza/Phishing.Database/master/phishing-domains-ACTIVE.txt" - }, - new - { - Id = 1497L, - FilterListId = 1492L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mitchellkrogza/Ultimate.Hosts.Blacklist/master/hosts.deny/hosts0.deny" - }, - new - { - Id = 1498L, - FilterListId = 1493L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/greatis/Anti-WebMiner/master/blacklist.txt" - }, - new - { - Id = 1499L, - FilterListId = 1494L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.carl.net/spam/access.txt" - }, - new - { - Id = 1500L, - FilterListId = 1495L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tankmohit/UnifiedHosts/master/hosts.all" - }, - new - { - Id = 1501L, - FilterListId = 1496L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://www.taz.net.au/Mail/SpamDomains" - }, - new - { - Id = 1502L, - FilterListId = 1497L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tankmohit/UnifiedHosts/master/whitelist" - }, - new - { - Id = 1503L, - FilterListId = 1498L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mitchellkrogza/Stop.Google.Analytics.Ghost.Spam.HOWTO/master/output/domains/ACTIVE/list" - }, - new - { - Id = 1504L, - FilterListId = 1499L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mitchellkrogza/Stop.Google.Analytics.Ghost.Spam.HOWTO/master/output/domains/INACTIVE/list" - }, - new - { - Id = 1505L, - FilterListId = 1500L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://cybercrime-tracker.net/all.php" - }, - new - { - Id = 1506L, - FilterListId = 1501L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/joelotz/URL_Blacklist/master/blacklist.csv" - }, - new - { - Id = 1507L, - FilterListId = 1502L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/oznu/dns-zone-blacklist/master/bind/zones.blacklist" - }, - new - { - Id = 1508L, - FilterListId = 1503L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/oznu/dns-zone-blacklist/master/dnsmasq/dnsmasq.blacklist" - }, - new - { - Id = 1509L, - FilterListId = 1504L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/oznu/dns-zone-blacklist/master/unbound/unbound.blacklist" - }, - new - { - Id = 1510L, - FilterListId = 1505L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ReddestDream/reddestdream.github.io/master/Projects/MinimalHostsCB/etc/MinimalHostsBlocker/minimalhosts" - }, - new - { - Id = 1511L, - FilterListId = 1506L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ReddestDream/reddestdream.github.io/master/Projects/MinimalHosts/etc/MinimalHostsBlocker/minimalhosts" - }, - new - { - Id = 1512L, - FilterListId = 1507L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://osint.bambenekconsulting.com/feeds/dga-feed.txt" - }, - new - { - Id = 1513L, - FilterListId = 1508L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://joewein.net/dl/bl/dom-bl-base.txt" - }, - new - { - Id = 1514L, - FilterListId = 1509L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://joewein.net/dl/bl/dom-bl.txt" - }, - new - { - Id = 1515L, - FilterListId = 1510L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://joewein.net/dl/bl/from-bl.txt" - }, - new - { - Id = 1516L, - FilterListId = 1511L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mitchellkrogza/Fail2Ban.WebExploits/master/input-source/exploits.list" - }, - new - { - Id = 1518L, - FilterListId = 1513L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/oleksiig/Squid-BlackList/master/denied_ext.conf" - }, - new - { - Id = 1519L, - FilterListId = 1517L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mitchellkrogza/Ultimate.Hosts.Blacklist/master/ips/ips0.list" - }, - new - { - Id = 1520L, - FilterListId = 1520L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hosts.ubuntu101.co.za/superhosts.deny" - }, - new - { - Id = 1521L, - FilterListId = 1523L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/newhosts-final.hosts" - }, - new - { - Id = 1522L, - FilterListId = 1524L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/combined-final-win.dat" - }, - new - { - Id = 1523L, - FilterListId = 1525L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/combined-final.p2p" - }, - new - { - Id = 1524L, - FilterListId = 1526L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=unbound&showintro=1&mimetype=plaintext" - }, - new - { - Id = 1525L, - FilterListId = 1527L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=bindconfig&showintro=1&mimetype=plaintext" - }, - new - { - Id = 1527L, - FilterListId = 1529L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/koreanlist.txt" - }, - new - { - Id = 1528L, - FilterListId = 1530L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bcye/Hello-Goodbye/master/filterlist.txt" - }, - new - { - Id = 1529L, - FilterListId = 1531L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kano1/I/master/adware_Scrip.txt" - }, - new - { - Id = 1530L, - FilterListId = 1532L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kano1/Kano/master/Spyware_Scrip.txt" - }, - new - { - Id = 1531L, - FilterListId = 1533L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/legacy.txt" - }, - new - { - Id = 1532L, - FilterListId = 1534L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hostsfile.mine.nu/hosts.ips" - }, - new - { - Id = 1533L, - FilterListId = 1535L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/WordPressTranslatorAssistant.txt" - }, - new - { - Id = 1534L, - FilterListId = 1535L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/WordPressTranslatorAssistant.txt" - }, - new - { - Id = 1535L, - FilterListId = 1536L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/RooneyMcNibNug/pihole-stuff/master/SNAFU.txt" - }, - new - { - Id = 1536L, - FilterListId = 1537L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easyprivacy.tpl" - }, - new - { - Id = 1537L, - FilterListId = 1538L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylist_noelemhide.tpl" - }, - new - { - Id = 1538L, - FilterListId = 1539L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easytest.tpl" - }, - new - { - Id = 1539L, - FilterListId = 1540L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistpolish.tpl" - }, - new - { - Id = 1540L, - FilterListId = 1541L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/exceptionrules.tpl" - }, - new - { - Id = 1542L, - FilterListId = 1543L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/koreanlist.tpl" - }, - new - { - Id = 1543L, - FilterListId = 1544L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistportuguese.tpl" - }, - new - { - Id = 1544L, - FilterListId = 1545L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/wiltteri/subscriptions/master/wiltteri.tpl" - }, - new - { - Id = 1545L, - FilterListId = 1546L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/wiltteri/subscriptions/master/wiltteri-reborn.tpl" - }, - new - { - Id = 1546L, - FilterListId = 1547L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/indianlist.tpl" - }, - new - { - Id = 1547L, - FilterListId = 1548L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/easylistspanish+easylist.txt" - }, - new - { - Id = 1548L, - FilterListId = 1549L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-msie.adblockplus.org/wiltteri+easylist.txt" - }, - new - { - Id = 1549L, - FilterListId = 1550L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/WebsiteStretcherVertical.txt" - }, - new - { - Id = 1550L, - FilterListId = 1550L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/WebsiteStretcherVertical.txt" - }, - new - { - Id = 1551L, - FilterListId = 1551L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/WebsiteStretcher4K.txt" - }, - new - { - Id = 1552L, - FilterListId = 1551L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/WebsiteStretcher4K.txt" - }, - new - { - Id = 1553L, - FilterListId = 1552L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/RedditTrashRemovalService.txt" - }, - new - { - Id = 1554L, - FilterListId = 1552L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/RedditTrashRemovalService.txt" - }, - new - { - Id = 1555L, - FilterListId = 1554L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/AntiPrayerTimesList.txt" - }, - new - { - Id = 1556L, - FilterListId = 1554L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/AntiPrayerTimesList.txt" - }, - new - { - Id = 1557L, - FilterListId = 1555L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bebasid/bebasid/master/releases/hosts" - }, - new - { - Id = 1558L, - FilterListId = 1556L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ColumWalsh/unsullied/master/unsullied.txt" - }, - new - { - Id = 1559L, - FilterListId = 1557L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DataMaster-2501/DataMaster-Android-AdBlock-Hosts/master/hosts" - }, - new - { - Id = 1560L, - FilterListId = 1558L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bogachenko/fuckfuckadblock/master/fuckfuckadblock.txt" - }, - new - { - Id = 1561L, - FilterListId = 1559L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/BreakingTheNews/BreakingTheNews.github.io/master/hosts" - }, - new - { - Id = 1562L, - FilterListId = 1560L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ruvelro/Halt-and-Block-Mining/master/HBmining.bat" - }, - new - { - Id = 1563L, - FilterListId = 1561L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jkrejcha/AdmiraList/master/AdmiraList.txt" - }, - new - { - Id = 1564L, - FilterListId = 1562L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mtxadmin/ublock/master/it" - }, - new - { - Id = 1566L, - FilterListId = 1564L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiCelebBirthList" - }, - new - { - Id = 1567L, - FilterListId = 1564L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiCelebBirthList" - }, - new - { - Id = 1570L, - FilterListId = 1566L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/biroloter/Mobile-Ad-Hosts/master/hosts" - }, - new - { - Id = 1571L, - FilterListId = 1567L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/101_optimized.txt" - }, - new - { - Id = 1572L, - FilterListId = 1568L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/2_optimized.txt" - }, - new - { - Id = 1573L, - FilterListId = 1569L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/16_optimized.txt" - }, - new - { - Id = 1574L, - FilterListId = 1570L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/6_optimized.txt" - }, - new - { - Id = 1575L, - FilterListId = 1573L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/qwIvan/privoxy-adfilter/master/adfilter.action" - }, - new - { - Id = 1576L, - FilterListId = 1574L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mtxadmin/ublock/master/hosts.txt" - }, - new - { - Id = 1577L, - FilterListId = 1575L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/TwitchEvenMorePureViewingExperience.txt" - }, - new - { - Id = 1578L, - FilterListId = 1575L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/TwitchEvenMorePureViewingExperience.txt" - }, - new - { - Id = 1579L, - FilterListId = 1576L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-'Custom cursors' List.txt" - }, - new - { - Id = 1580L, - FilterListId = 1576L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-'Custom cursors' List.txt" - }, - new - { - Id = 1581L, - FilterListId = 1577L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/dhowe/uAssets/master/filters/adnauseam.txt" - }, - new - { - Id = 1582L, - FilterListId = 1578L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/fabianmoronzirfas/block-facebook/master/block-facebook.lsrules" - }, - new - { - Id = 1583L, - FilterListId = 1579L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/ExtremelyCondensedList.txt" - }, - new - { - Id = 1584L, - FilterListId = 1579L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/ExtremelyCondensedList.txt" - }, - new - { - Id = 1585L, - FilterListId = 1581L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersAdGuard.txt" - }, - new - { - Id = 1586L, - FilterListId = 1581L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersAdGuard.txt" - }, - new - { - Id = 1587L, - FilterListId = 1582L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersABP.txt" - }, - new - { - Id = 1588L, - FilterListId = 1582L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersABP.txt" - }, - new - { - Id = 1589L, - FilterListId = 1583L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersPrivoxy.action" - }, - new - { - Id = 1590L, - FilterListId = 1583L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersPrivoxy.action" - }, - new - { - Id = 1591L, - FilterListId = 1584L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersDnsmasq.conf" - }, - new - { - Id = 1592L, - FilterListId = 1584L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersDnsmasq.conf" - }, - new - { - Id = 1593L, - FilterListId = 1585L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersHostsDeny.deny" - }, - new - { - Id = 1594L, - FilterListId = 1585L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersHostsDeny.deny" - }, - new - { - Id = 1595L, - FilterListId = 1586L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareABP.txt" - }, - new - { - Id = 1596L, - FilterListId = 1586L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwareABP.txt" - }, - new - { - Id = 1597L, - FilterListId = 1587L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareAdGuard.txt" - }, - new - { - Id = 1598L, - FilterListId = 1587L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwareAdGuard.txt" - }, - new - { - Id = 1599L, - FilterListId = 1588L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareTPL.tpl" - }, - new - { - Id = 1600L, - FilterListId = 1588L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwareTPL.tpl" - }, - new - { - Id = 1601L, - FilterListId = 1589L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwarePrivoxy.action" - }, - new - { - Id = 1602L, - FilterListId = 1589L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwarePrivoxy.action" - }, - new - { - Id = 1603L, - FilterListId = 1590L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareHosts.txt" - }, - new - { - Id = 1604L, - FilterListId = 1590L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwareHosts.txt" - }, - new - { - Id = 1605L, - FilterListId = 1591L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-'Google Hangouts' List.txt" - }, - new - { - Id = 1606L, - FilterListId = 1591L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-'Google Hangouts' List.txt" - }, - new - { - Id = 1607L, - FilterListId = 1592L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/RickrollLinkIdentifier.txt" - }, - new - { - Id = 1608L, - FilterListId = 1592L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/RickrollLinkIdentifier.txt" - }, - new - { - Id = 1609L, - FilterListId = 1593L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersPrivacy.txt" - }, - new - { - Id = 1610L, - FilterListId = 1593L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersPrivacy.txt" - }, - new - { - Id = 1611L, - FilterListId = 1594L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://theantisocialengineer.com/AntiSocial_Blacklist_Community_V1.txt" - }, - new - { - Id = 1612L, - FilterListId = 1595L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://phishing.army/download/phishing_army_blocklist.txt" - }, - new - { - Id = 1613L, - FilterListId = 1596L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://dehakkelaar.nl/lists/cryptojacking_campaign.list.txt" - }, - new - { - Id = 1614L, - FilterListId = 1597L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://dbl.oisd.nl/" - }, - new - { - Id = 1615L, - FilterListId = 1597L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dbl.txt" - }, - new - { - Id = 1616L, - FilterListId = 1597L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dbl.txt" - }, - new - { - Id = 1617L, - FilterListId = 1598L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hosts.oisd.nl/" - }, - new - { - Id = 1618L, - FilterListId = 1598L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/hosts.txt" - }, - new - { - Id = 1619L, - FilterListId = 1598L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/hosts.txt" - }, - new - { - Id = 1620L, - FilterListId = 1599L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://dblmobile.oisd.nl/" - }, - new - { - Id = 1621L, - FilterListId = 1599L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dbl_light.txt" - }, - new - { - Id = 1622L, - FilterListId = 1599L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dbl_light.txt" - }, - new - { - Id = 1623L, - FilterListId = 1600L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hostsmobile.oisd.nl/" - }, - new - { - Id = 1624L, - FilterListId = 1600L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/hosts_light.txt" - }, - new - { - Id = 1625L, - FilterListId = 1600L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/hosts_light.txt" - }, - new - { - Id = 1626L, - FilterListId = 1601L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/joeylane/hosts/master/hosts" - }, - new - { - Id = 1627L, - FilterListId = 1603L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-online.txt" - }, - new - { - Id = 1628L, - FilterListId = 1603L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-online.txt" - }, - new - { - Id = 1629L, - FilterListId = 1603L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-online.txt" - }, - new - { - Id = 1630L, - FilterListId = 1604L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/DailyMotionSimplicity.txt" - }, - new - { - Id = 1631L, - FilterListId = 1604L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/DailyMotionSimplicity.txt" - }, - new - { - Id = 1632L, - FilterListId = 1605L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiPPGList.txt" - }, - new - { - Id = 1633L, - FilterListId = 1605L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiPPGList.txt" - }, - new - { - Id = 1634L, - FilterListId = 1606L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-Skype List.txt" - }, - new - { - Id = 1635L, - FilterListId = 1606L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-Skype List.txt" - }, - new - { - Id = 1636L, - FilterListId = 1607L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Laicure/HostsY_hosts/master/shithosts" - }, - new - { - Id = 1637L, - FilterListId = 1608L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_base/sb_unified_hosts_base.lsrules" - }, - new - { - Id = 1638L, - FilterListId = 1609L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-gambling-porn-social/sb_unified_hosts_fakenews-gambling-porn-social.lsrules" - }, - new - { - Id = 1639L, - FilterListId = 1610L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-gambling-porn/sb_unified_hosts_fakenews-gambling-porn.lsrules" - }, - new - { - Id = 1640L, - FilterListId = 1611L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-gambling-social/sb_unified_hosts_fakenews-gambling-social.lsrules" - }, - new - { - Id = 1641L, - FilterListId = 1612L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-gambling/sb_unified_hosts_fakenews-gambling.lsrules" - }, - new - { - Id = 1642L, - FilterListId = 1613L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-porn-social/sb_unified_hosts_fakenews-porn-social.lsrules" - }, - new - { - Id = 1643L, - FilterListId = 1614L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-porn/sb_unified_hosts_fakenews-porn.lsrules" - }, - new - { - Id = 1644L, - FilterListId = 1615L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-social/sb_unified_hosts_fakenews-social.lsrules" - }, - new - { - Id = 1645L, - FilterListId = 1616L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews/sb_unified_hosts_fakenews.lsrules" - }, - new - { - Id = 1646L, - FilterListId = 1617L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_gambling-porn-social/sb_unified_hosts_gambling-porn-social.lsrules" - }, - new - { - Id = 1647L, - FilterListId = 1618L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_gambling-porn/sb_unified_hosts_gambling-porn.lsrules" - }, - new - { - Id = 1648L, - FilterListId = 1619L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_gambling-social/sb_unified_hosts_gambling-social.lsrules" - }, - new - { - Id = 1649L, - FilterListId = 1620L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_gambling/sb_unified_hosts_gambling.lsrules" - }, - new - { - Id = 1650L, - FilterListId = 1621L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_porn-social/sb_unified_hosts_porn-social.lsrules" - }, - new - { - Id = 1651L, - FilterListId = 1622L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_porn/sb_unified_hosts_porn.lsrules" - }, - new - { - Id = 1652L, - FilterListId = 1623L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_social/sb_unified_hosts_social.lsrules" - }, - new - { - Id = 1653L, - FilterListId = 1624L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jostyee/littlesnitch-rules/master/blocklist.lsrules" - }, - new - { - Id = 1654L, - FilterListId = 1625L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jostyee/littlesnitch-rules/master/blocklist-china.lsrules" - }, - new - { - Id = 1655L, - FilterListId = 1626L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bdougherty/little-snitch-rules/master/rules/browsers.lsrules" - }, - new - { - Id = 1656L, - FilterListId = 1627L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ldt116/little-snitch-vietnamese-ad-block-rules/master/vietnamese-ad-block.lsrules" - }, - new - { - Id = 1657L, - FilterListId = 1628L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/balupton/littlesnitch-filters/master/blocklist.lsrules" - }, - new - { - Id = 1658L, - FilterListId = 1629L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/balupton/littlesnitch-filters/master/whitelist-cdn.lsrules" - }, - new - { - Id = 1659L, - FilterListId = 1630L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jaydorsey/little_snitch_rules/master/jaydorsey.lsrules" - }, - new - { - Id = 1660L, - FilterListId = 1631L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/newyork10023/Little_Snitch/master/Block_All_All.lsrules" - }, - new - { - Id = 1661L, - FilterListId = 1632L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Kr00lIX/little-snitch-rules/master/Tracking.lsrules" - }, - new - { - Id = 1662L, - FilterListId = 1633L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Kr00lIX/little-snitch-rules/master/SyncLimit.lsrules" - }, - new - { - Id = 1663L, - FilterListId = 1634L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/jamujr/lsrg/raw/master/trackers-top-500.lsrules" - }, - new - { - Id = 1664L, - FilterListId = 1635L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/Dandelion Sprout's Anti-Religion List.txt" - }, - new - { - Id = 1665L, - FilterListId = 1635L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/Dandelion Sprout's Anti-Religion List.txt" - }, - new - { - Id = 1666L, - FilterListId = 1636L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/AntiPreacherList.txt" - }, - new - { - Id = 1667L, - FilterListId = 1636L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/AntiPreacherList.txt" - }, - new - { - Id = 1668L, - FilterListId = 1637L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAwfulCommentsList.txt" - }, - new - { - Id = 1669L, - FilterListId = 1637L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAwfulCommentsList.txt" - }, - new - { - Id = 1670L, - FilterListId = 1638L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Hakame-kun/uBlock-Filters-Indonesia/master/Windows Host/hosts" - }, - new - { - Id = 1671L, - FilterListId = 1639L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.github.developerdan.com/hosts/lists/amp-hosts-extended.txt" - }, - new - { - Id = 1672L, - FilterListId = 1640L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kristerkari/umatrix-recipes/master/README.md" - }, - new - { - Id = 1673L, - FilterListId = 1641L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/L2G/umatrix-rules/master/my-umatrix-rules.txt" - }, - new - { - Id = 1674L, - FilterListId = 1642L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/ruleset/recipes_th.txt" - }, - new - { - Id = 1675L, - FilterListId = 1642L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/ruleset/recipes_th.txt" - }, - new - { - Id = 1676L, - FilterListId = 1643L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/ruleset/recipes_custom.txt" - }, - new - { - Id = 1677L, - FilterListId = 1643L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/ruleset/recipes_custom.txt" - }, - new - { - Id = 1678L, - FilterListId = 1644L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/uMatrix/recipes" - }, - new - { - Id = 1679L, - FilterListId = 1645L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/Hosts/ads-tracking" - }, - new - { - Id = 1680L, - FilterListId = 1646L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/Hosts/ads-tracking-breaking" - }, - new - { - Id = 1681L, - FilterListId = 1647L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/Hosts/malware" - }, - new - { - Id = 1682L, - FilterListId = 1648L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/uBlock/list" - }, - new - { - Id = 1683L, - FilterListId = 1649L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/uBlock/facebook/groups-events" - }, - new - { - Id = 1684L, - FilterListId = 1650L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/uBlock/facebook/messenger" - }, - new - { - Id = 1685L, - FilterListId = 1651L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/themagicteeth/umatrix-recipes/master/recipes.txt" - }, - new - { - Id = 1686L, - FilterListId = 1652L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/dfkt/umatrix-rules/master/my-umatrix-rules.txt" - }, - new - { - Id = 1687L, - FilterListId = 1653L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/david1davidson/uMatrixMasterList/master/ruleset.txt" - }, - new - { - Id = 1688L, - FilterListId = 1656L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/invasy/umatrix-ruleset/master/ruleset.txt" - }, - new - { - Id = 1689L, - FilterListId = 1657L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/stephengeorgewest/my-umatrix-rules/master/my-umatrix-rules.txt" - }, - new - { - Id = 1690L, - FilterListId = 1658L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tranhoangcore/uMatrix-Rules/master/my-umatrix-rules.txt" - }, - new - { - Id = 1691L, - FilterListId = 1659L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/dadav/umatrix-rules/master/my-rules.txt" - }, - new - { - Id = 1692L, - FilterListId = 1660L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bzsparks/uMatrix/master/my-umatrix-rules.txt" - }, - new - { - Id = 1693L, - FilterListId = 1661L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Strappazzon/teleme7ry/master/rules.txt" - }, - new - { - Id = 1696L, - FilterListId = 1664L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://urlhaus.abuse.ch/downloads/text/" - }, - new - { - Id = 1697L, - FilterListId = 1665L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://urlhaus.abuse.ch/downloads/rpz/" - }, - new - { - Id = 1698L, - FilterListId = 1666L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/CryptoFR/crypto-scams-fr/master/misc.txt" - }, - new - { - Id = 1699L, - FilterListId = 1667L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/CryptoFR/crypto-scams-fr/master/websites.txt" - }, - new - { - Id = 1700L, - FilterListId = 1668L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/brasstax/RHEL-StreetPass-Relay/master/spoof-attwifi/dnsmasq.conf" - }, - new - { - Id = 1701L, - FilterListId = 1669L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/farrokhi/adblock-iran/master/additional-trackers.txt" - }, - new - { - Id = 1702L, - FilterListId = 1669L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/farrokhi/adblock-iran/master/additional-trackers.txt" - }, - new - { - Id = 1703L, - FilterListId = 1670L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/yous/YousList/master/hosts.txt" - }, - new - { - Id = 1704L, - FilterListId = 1671L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tcptomato/ROad-Block/master/road-block-filters.txt" - }, - new - { - Id = 1705L, - FilterListId = 1672L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tcptomato/ROad-Block/master/road-kill-filters.txt" - }, - new - { - Id = 1706L, - FilterListId = 1673L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://github.com/nickspaargaren/no-google/raw/master/pihole-google.txt" - }, - new - { - Id = 1707L, - FilterListId = 1673L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/pihole-google.txt" - }, - new - { - Id = 1708L, - FilterListId = 1674L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/google-domains" - }, - new - { - Id = 1709L, - FilterListId = 1674L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/google-domains" - }, - new - { - Id = 1710L, - FilterListId = 1675L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/analyticsparsed" - }, - new - { - Id = 1711L, - FilterListId = 1675L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/analyticsparsed" - }, - new - { - Id = 1712L, - FilterListId = 1676L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/analytics.txt" - }, - new - { - Id = 1713L, - FilterListId = 1676L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/analytics.txt" - }, - new - { - Id = 1714L, - FilterListId = 1677L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/androidparsed" - }, - new - { - Id = 1715L, - FilterListId = 1677L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/androidparsed" - }, - new - { - Id = 1716L, - FilterListId = 1678L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/android.txt" - }, - new - { - Id = 1717L, - FilterListId = 1678L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/android.txt" - }, - new - { - Id = 1718L, - FilterListId = 1679L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/dnsparsed" - }, - new - { - Id = 1719L, - FilterListId = 1679L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/dnsparsed" - }, - new - { - Id = 1720L, - FilterListId = 1680L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/dns.txt" - }, - new - { - Id = 1721L, - FilterListId = 1680L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/dns.txt" - }, - new - { - Id = 1722L, - FilterListId = 1681L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/domainsparsed" - }, - new - { - Id = 1723L, - FilterListId = 1681L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/domainsparsed" - }, - new - { - Id = 1724L, - FilterListId = 1682L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/domains.txt" - }, - new - { - Id = 1725L, - FilterListId = 1682L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/domains.txt" - }, - new - { - Id = 1726L, - FilterListId = 1683L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/doubleclickparsed" - }, - new - { - Id = 1727L, - FilterListId = 1683L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/doubleclickparsed" - }, - new - { - Id = 1728L, - FilterListId = 1684L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/doubleclick.txt" - }, - new - { - Id = 1729L, - FilterListId = 1684L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/doubleclick.txt" - }, - new - { - Id = 1730L, - FilterListId = 1685L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/firebaseparsed" - }, - new - { - Id = 1731L, - FilterListId = 1685L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/firebaseparsed" - }, - new - { - Id = 1732L, - FilterListId = 1686L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/firebase.txt" - }, - new - { - Id = 1733L, - FilterListId = 1686L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/firebase.txt" - }, - new - { - Id = 1734L, - FilterListId = 1687L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/fontsparsed" - }, - new - { - Id = 1735L, - FilterListId = 1687L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/fontsparsed" - }, - new - { - Id = 1736L, - FilterListId = 1688L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/fonts.txt" - }, - new - { - Id = 1737L, - FilterListId = 1688L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/fonts.txt" - }, - new - { - Id = 1738L, - FilterListId = 1689L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/generalparsed" - }, - new - { - Id = 1739L, - FilterListId = 1689L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/generalparsed" - }, - new - { - Id = 1740L, - FilterListId = 1690L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/general.txt" - }, - new - { - Id = 1741L, - FilterListId = 1690L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/general.txt" - }, - new - { - Id = 1742L, - FilterListId = 1691L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/mailparsed" - }, - new - { - Id = 1743L, - FilterListId = 1691L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/mailparsed" - }, - new - { - Id = 1744L, - FilterListId = 1692L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/mail.txt" - }, - new - { - Id = 1745L, - FilterListId = 1692L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/mail.txt" - }, - new - { - Id = 1746L, - FilterListId = 1693L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/productsparsed" - }, - new - { - Id = 1747L, - FilterListId = 1693L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/productsparsed" - }, - new - { - Id = 1748L, - FilterListId = 1694L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/products.txt" - }, - new - { - Id = 1749L, - FilterListId = 1694L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/products.txt" - }, - new - { - Id = 1750L, - FilterListId = 1695L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/proxiesparsed" - }, - new - { - Id = 1751L, - FilterListId = 1695L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/proxiesparsed" - }, - new - { - Id = 1752L, - FilterListId = 1696L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/proxies.txt" - }, - new - { - Id = 1753L, - FilterListId = 1696L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/proxies.txt" - }, - new - { - Id = 1754L, - FilterListId = 1697L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/shortlinksparsed" - }, - new - { - Id = 1755L, - FilterListId = 1697L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/shortlinksparsed" - }, - new - { - Id = 1756L, - FilterListId = 1698L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/shortlinks.txt" - }, - new - { - Id = 1757L, - FilterListId = 1698L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/shortlinks.txt" - }, - new - { - Id = 1758L, - FilterListId = 1699L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/youtubeparsed" - }, - new - { - Id = 1759L, - FilterListId = 1699L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/youtubeparsed" - }, - new - { - Id = 1760L, - FilterListId = 1700L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/youtube.txt" - }, - new - { - Id = 1761L, - FilterListId = 1700L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/youtube.txt" - }, - new - { - Id = 1762L, - FilterListId = 1701L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://asc.hk/adplus.txt" - }, - new - { - Id = 1763L, - FilterListId = 1702L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://npc.0am.jp/hosts.php?dl=1" - }, - new - { - Id = 1764L, - FilterListId = 1703L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://in0de.synology.me/pwn.txt" - }, - new - { - Id = 1765L, - FilterListId = 1704L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://in0de.synology.me/own.txt" - }, - new - { - Id = 1766L, - FilterListId = 1706L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.gameindustry.eu/files/hosts.txt" - }, - new - { - Id = 1767L, - FilterListId = 1707L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tiuxo/hosts/master/ads" - }, - new - { - Id = 1768L, - FilterListId = 1708L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tiuxo/hosts/master/porn" - }, - new - { - Id = 1769L, - FilterListId = 1709L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tiuxo/hosts/master/social" - }, - new - { - Id = 1770L, - FilterListId = 1710L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.botvrij.eu/data/ioclist.hostname.raw" - }, - new - { - Id = 1771L, - FilterListId = 1711L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://zonefiles.io/f/compromised/domains/live/" - }, - new - { - Id = 1772L, - FilterListId = 1712L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/abc45628/hosts/master/hosts" - }, - new - { - Id = 1773L, - FilterListId = 1713L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jdlingyu/ad-wars/master/hosts" - }, - new - { - Id = 1774L, - FilterListId = 1714L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/XionKzn/PiHole-Lists/master/PiHole/Archive/Quad9.txt" - }, - new - { - Id = 1775L, - FilterListId = 1715L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/XionKzn/PiHole-Lists/master/PiHole/Archive/Yahoo_Ad_Servers.txt" - }, - new - { - Id = 1776L, - FilterListId = 1716L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/XionKzn/PiHole-Lists/master/PiHole/PiHole_HOSTS_Spyware_HOSTS.txt" - }, - new - { - Id = 1777L, - FilterListId = 1717L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/XionKzn/PiHole-Lists/master/PiHole/Archive/Cerber_Ransomware.txt" - }, - new - { - Id = 1778L, - FilterListId = 1718L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/XionKzn/PiHole-Lists/master/PiHole/Blocklist_HOSTS.txt" - }, - new - { - Id = 1779L, - FilterListId = 1719L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/KurzGedanke/kurzBlock/master/kurzBlock.txt" - }, - new - { - Id = 1780L, - FilterListId = 1720L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/VernonStow/Filterlist/master/Filterlist.txt" - }, - new - { - Id = 1781L, - FilterListId = 1721L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jakejarvis/ios-trackers/master/blocklist.txt" - }, - new - { - Id = 1782L, - FilterListId = 1722L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/hell-sh/Evil-Domains/master/evil-domains.txt" - }, - new - { - Id = 1783L, - FilterListId = 1723L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/pirat28/IHateTracker/master/iHateTracker.txt" - }, - new - { - Id = 1784L, - FilterListId = 1724L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/parseword/nolovia/master/skel/hosts-nolovia.txt" - }, - new - { - Id = 1785L, - FilterListId = 1725L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/parseword/nolovia/master/skel/hosts-government-malware.txt" - }, - new - { - Id = 1787L, - FilterListId = 1727L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/gwillem/magento-malware-scanner/master/rules/burner-domains.txt" - }, - new - { - Id = 1788L, - FilterListId = 1728L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/soteria-nou/domain-list/master/ads.txt" - }, - new - { - Id = 1789L, - FilterListId = 1729L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/soteria-nou/domain-list/master/affiliate.txt" - }, - new - { - Id = 1790L, - FilterListId = 1730L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/soteria-nou/domain-list/master/analytics.txt" - }, - new - { - Id = 1791L, - FilterListId = 1731L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/soteria-nou/domain-list/master/enrichments.txt" - }, - new - { - Id = 1792L, - FilterListId = 1732L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/soteria-nou/domain-list/master/fake.txt" - }, - new - { - Id = 1793L, - FilterListId = 1733L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/soteria-nou/domain-list/master/widgets.txt" - }, - new - { - Id = 1794L, - FilterListId = 1734L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/Pro/hosts.txt" - }, - new - { - Id = 1795L, - FilterListId = 1735L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/Pro/domains.txt" - }, - new - { - Id = 1796L, - FilterListId = 1736L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AdGuard Home Compilation List/AdGuardHomeCompilationList.txt" - }, - new - { - Id = 1797L, - FilterListId = 1736L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AdGuard Home Compilation List/AdGuardHomeCompilationList.txt" - }, - new - { - Id = 1798L, - FilterListId = 1737L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Imperial Units Remover.txt" - }, - new - { - Id = 1799L, - FilterListId = 1737L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Imperial Units Remover.txt" - }, - new - { - Id = 1800L, - FilterListId = 1738L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareAdGuardHome.txt" - }, - new - { - Id = 1801L, - FilterListId = 1738L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwareAdGuardHome.txt" - }, - new - { - Id = 1802L, - FilterListId = 1739L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://warui.intaa.net/adhosts/local_zone.conf.txt" - }, - new - { - Id = 1803L, - FilterListId = 1740L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/social/formats/hosts.txt" - }, - new - { - Id = 1804L, - FilterListId = 1741L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/porn-lite/formats/hosts.txt" - }, - new - { - Id = 1805L, - FilterListId = 1742L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/regional/formats/hosts.txt" - }, - new - { - Id = 1806L, - FilterListId = 1743L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/spark/formats/domains.txt" - }, - new - { - Id = 1807L, - FilterListId = 1743L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://blokada.org/mirror/v5/energized/spark/hosts.txt" - }, - new - { - Id = 1808L, - FilterListId = 1744L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/bluGo/formats/domains.txt" - }, - new - { - Id = 1809L, - FilterListId = 1745L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/blu/formats/domains.txt" - }, - new - { - Id = 1810L, - FilterListId = 1745L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://blokada.org/mirror/v5/energized/blu/hosts.txt" - }, - new - { - Id = 1811L, - FilterListId = 1746L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/basic/formats/domains.txt" - }, - new - { - Id = 1812L, - FilterListId = 1746L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://blokada.org/mirror/v5/energized/basic/hosts.txt" - }, - new - { - Id = 1813L, - FilterListId = 1747L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/porn/formats/domains.txt" - }, - new - { - Id = 1814L, - FilterListId = 1748L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/ultimate/formats/domains.txt" - }, - new - { - Id = 1815L, - FilterListId = 1749L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/unified/formats/domains.txt" - }, - new - { - Id = 1816L, - FilterListId = 1750L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/xtreme/formats/domains.txt" - }, - new - { - Id = 1817L, - FilterListId = 1751L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/social/formats/domains.txt" - }, - new - { - Id = 1818L, - FilterListId = 1752L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/porn-lite/formats/domains.txt" - }, - new - { - Id = 1819L, - FilterListId = 1753L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/regional/formats/domains.txt" - }, - new - { - Id = 1820L, - FilterListId = 1753L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://blokada.org/mirror/v5/energized/regional/hosts.txt" - }, - new - { - Id = 1821L, - FilterListId = 1754L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/spark/formats/filter" - }, - new - { - Id = 1822L, - FilterListId = 1755L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/bluGo/formats/filter" - }, - new - { - Id = 1823L, - FilterListId = 1756L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/blu/formats/filter" - }, - new - { - Id = 1824L, - FilterListId = 1757L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/basic/formats/filter" - }, - new - { - Id = 1825L, - FilterListId = 1758L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/porn/formats/filter" - }, - new - { - Id = 1826L, - FilterListId = 1759L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/ultimate/formats/filter" - }, - new - { - Id = 1827L, - FilterListId = 1760L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/unified/formats/filter" - }, - new - { - Id = 1828L, - FilterListId = 1761L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/xtreme/formats/filter" - }, - new - { - Id = 1829L, - FilterListId = 1762L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/social/formats/filter" - }, - new - { - Id = 1830L, - FilterListId = 1763L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/porn-lite/formats/filter" - }, - new - { - Id = 1831L, - FilterListId = 1764L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/regional/formats/filter" - }, - new - { - Id = 1832L, - FilterListId = 1765L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/spark/formats/dnsmasq.conf" - }, - new - { - Id = 1833L, - FilterListId = 1766L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/bluGo/formats/dnsmasq.conf" - }, - new - { - Id = 1834L, - FilterListId = 1767L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/blu/formats/dnsmasq.conf" - }, - new - { - Id = 1835L, - FilterListId = 1768L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/basic/formats/dnsmasq.conf" - }, - new - { - Id = 1836L, - FilterListId = 1769L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/porn/formats/dnsmasq.conf" - }, - new - { - Id = 1837L, - FilterListId = 1770L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/ultimate/formats/dnsmasq.conf" - }, - new - { - Id = 1838L, - FilterListId = 1771L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/unified/formats/dnsmasq.conf" - }, - new - { - Id = 1839L, - FilterListId = 1772L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/xtreme/formats/dnsmasq.conf" - }, - new - { - Id = 1840L, - FilterListId = 1773L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/social/formats/dnsmasq.conf" - }, - new - { - Id = 1841L, - FilterListId = 1774L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/porn-lite/formats/dnsmasq.conf" - }, - new - { - Id = 1842L, - FilterListId = 1775L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/regional/formats/dnsmasq.conf" - }, - new - { - Id = 1843L, - FilterListId = 1776L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/spark/formats/unbound.conf" - }, - new - { - Id = 1844L, - FilterListId = 1777L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/bluGo/formats/unbound.conf" - }, - new - { - Id = 1845L, - FilterListId = 1778L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/blu/formats/unbound.conf" - }, - new - { - Id = 1846L, - FilterListId = 1779L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/basic/formats/unbound.conf" - }, - new - { - Id = 1847L, - FilterListId = 1780L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/porn/formats/unbound.conf" - }, - new - { - Id = 1848L, - FilterListId = 1781L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/ultimate/formats/unbound.conf" - }, - new - { - Id = 1849L, - FilterListId = 1782L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/unified/formats/unbound.conf" - }, - new - { - Id = 1850L, - FilterListId = 1783L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/xtreme/formats/unbound.conf" - }, - new - { - Id = 1851L, - FilterListId = 1784L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/social/formats/unbound.conf" - }, - new - { - Id = 1852L, - FilterListId = 1785L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/porn-lite/formats/unbound.conf" - }, - new - { - Id = 1853L, - FilterListId = 1786L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/regional/formats/unbound.conf" - }, - new - { - Id = 1854L, - FilterListId = 1787L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/spark/formats/rpz.txt" - }, - new - { - Id = 1855L, - FilterListId = 1788L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/bluGo/formats/rpz.txt" - }, - new - { - Id = 1856L, - FilterListId = 1789L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/blu/formats/rpz.txt" - }, - new - { - Id = 1857L, - FilterListId = 1790L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/basic/formats/rpz.txt" - }, - new - { - Id = 1858L, - FilterListId = 1791L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/porn/formats/rpz.txt" - }, - new - { - Id = 1859L, - FilterListId = 1792L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/ultimate/formats/rpz.txt" - }, - new - { - Id = 1860L, - FilterListId = 1793L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/unified/formats/rpz.txt" - }, - new - { - Id = 1861L, - FilterListId = 1794L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/xtreme/formats/rpz.txt" - }, - new - { - Id = 1862L, - FilterListId = 1795L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/social/formats/rpz.txt" - }, - new - { - Id = 1863L, - FilterListId = 1796L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/porn-lite/formats/rpz.txt" - }, - new - { - Id = 1864L, - FilterListId = 1797L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/regional/formats/rpz.txt" - }, - new - { - Id = 1865L, - FilterListId = 1798L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/extensions/ips/formats/list.txt" - }, - new - { - Id = 1866L, - FilterListId = 1799L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/arabic.txt" - }, - new - { - Id = 1867L, - FilterListId = 1800L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://cdn.rixcloud.io/Quantumult/Rules/Default.conf" - }, - new - { - Id = 1868L, - FilterListId = 1801L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/lhie1/Rules/master/Auto/REJECT.conf" - }, - new - { - Id = 1870L, - FilterListId = 1803L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/scomper/surge-list/master/reject.list" - }, - new - { - Id = 1873L, - FilterListId = 1806L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://lists.blocklist.de/lists/all.txt" - }, - new - { - Id = 1874L, - FilterListId = 1807L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://danger.rulez.sk/projects/bruteforceblocker/blist.php" - }, - new - { - Id = 1875L, - FilterListId = 1808L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://rules.emergingthreats.net/blockrules/compromised-ips.txt" - }, - new - { - Id = 1876L, - FilterListId = 1809L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://rules.emergingthreats.net/fwrules/emerging-Block-IPs.txt" - }, - new - { - Id = 1877L, - FilterListId = 1810L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://blocklist.greensnow.co/greensnow.txt" - }, - new - { - Id = 1878L, - FilterListId = 1811L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.binarydefense.com/banlist.txt" - }, - new - { - Id = 1879L, - FilterListId = 1813L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://cinsscore.com/list/ci-badguys.txt" - }, - new - { - Id = 1880L, - FilterListId = 1814L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/TabloidRemover.txt" - }, - new - { - Id = 1881L, - FilterListId = 1814L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/TabloidRemover.txt" - }, - new - { - Id = 1882L, - FilterListId = 1815L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiPCPriceHiderList.txt" - }, - new - { - Id = 1883L, - FilterListId = 1815L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiPCPriceHiderList.txt" - }, - new - { - Id = 1884L, - FilterListId = 1816L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/KADhosts/master/KADhole.txt" - }, - new - { - Id = 1885L, - FilterListId = 1817L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-pihole-filters/hostfile_regex.txt" - }, - new - { - Id = 1886L, - FilterListId = 1818L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mmotti/pihole-regex/master/regex.list" - }, - new - { - Id = 1887L, - FilterListId = 1819L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.github.developerdan.com/hosts/lists/facebook-extended.txt" - }, - new - { - Id = 1890L, - FilterListId = 1824L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://myip.ms/files/blacklist/general/latest_blacklist.txt" - }, - new - { - Id = 1891L, - FilterListId = 1825L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://iplists.firehol.org/files/hphosts_pha.ipset" - }, - new - { - Id = 1892L, - FilterListId = 1827L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://iplists.firehol.org/files/hphosts_fsa.ipset" - }, - new - { - Id = 1893L, - FilterListId = 1828L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://iplists.firehol.org/files/hphosts_grm.ipset" - }, - new - { - Id = 1894L, - FilterListId = 1829L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://iplists.firehol.org/files/hphosts_exp.ipset" - }, - new - { - Id = 1895L, - FilterListId = 1830L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://iplists.firehol.org/files/hphosts_emd.ipset" - }, - new - { - Id = 1896L, - FilterListId = 1831L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://iplists.firehol.org/files/hphosts_ats.ipset" - }, - new - { - Id = 1897L, - FilterListId = 1832L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiPepeList.txt" - }, - new - { - Id = 1898L, - FilterListId = 1832L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiPepeList.txt" - }, - new - { - Id = 1899L, - FilterListId = 1833L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/hawkeye116477/FilterListsDarkMode/master/DarkFilterLists.txt" - }, - new - { - Id = 1900L, - FilterListId = 1834L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/caffeinewriter/DontPushMe/master/filterlist.txt" - }, - new - { - Id = 1901L, - FilterListId = 1835L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Nebula-Mechanica/Anti-AutoTranslation-List/master/anti-autotranslation-list.txt" - }, - new - { - Id = 1902L, - FilterListId = 1835L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitcdn.xyz/repo/Nebula-Mechanica/Anti-AutoTranslation-List/master/anti-autotranslation-list.txt" - }, - new - { - Id = 1903L, - FilterListId = 1835L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://rawcdn.githack.com/Nebula-Mechanica/Anti-AutoTranslation-List/master/anti-autotranslation-list.txt" - }, - new - { - Id = 1904L, - FilterListId = 1836L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Hosts" - }, - new - { - Id = 1905L, - FilterListId = 1838L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Anti/Anti Social" - }, - new - { - Id = 1907L, - FilterListId = 1840L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersAdGuardHome.txt" - }, - new - { - Id = 1908L, - FilterListId = 1840L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersAdGuardHome.txt" - }, - new - { - Id = 1909L, - FilterListId = 1841L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersPiHole.txt" - }, - new - { - Id = 1910L, - FilterListId = 1841L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersPiHole.txt" - }, - new - { - Id = 1911L, - FilterListId = 1842L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersSocks5.list" - }, - new - { - Id = 1912L, - FilterListId = 1842L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersSocks5.list" - }, - new - { - Id = 1913L, - FilterListId = 1843L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/secretsnow/Ad-Filters/master/Ad Filters.txt" - }, - new - { - Id = 1914L, - FilterListId = 1844L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/some-username-here1/motd-adblock/master/motd-adblock" - }, - new - { - Id = 1915L, - FilterListId = 1845L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/T4Tea/ADPMobileFilter/master/ADPMobileFilter.txt" - }, - new - { - Id = 1916L, - FilterListId = 1846L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/RandomAdversary/Macedonian-adBlock-Filters/master/Filters" - }, - new - { - Id = 1917L, - FilterListId = 1847L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/dorjmi/nothingblock/master/filter.txt" - }, - new - { - Id = 1918L, - FilterListId = 1848L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Crystal-RainSlide/AdditionalFiltersCN/master/CN.txt" - }, - new - { - Id = 1919L, - FilterListId = 1849L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jiayiming/jCleanList/master/jCleanList_all.txt" - }, - new - { - Id = 1920L, - FilterListId = 1850L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://n2o.io/projects/quarklist/dist/quarklist.txt" - }, - new - { - Id = 1921L, - FilterListId = 1852L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://adblock-thai.github.io/thai-ads-filter/subscription.txt" - }, - new - { - Id = 1922L, - FilterListId = 1853L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://adblock-thai.github.io/thai-ads-filter/annoyance.txt" - }, - new - { - Id = 1923L, - FilterListId = 1854L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/masterinspire/Master-AdRules/master/Master-AdRules.txt" - }, - new - { - Id = 1924L, - FilterListId = 1856L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/lutoma/nocomments/master/abp.txt" - }, - new - { - Id = 1932L, - FilterListId = 1864L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Ayesh/Adblock-Sinhala/master/filters.txt" - }, - new - { - Id = 1933L, - FilterListId = 1865L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/zonprox/adblock/master/abpadv.txt" - }, - new - { - Id = 1934L, - FilterListId = 1866L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/LanikSJ/ubo-filters/main/filters/combined-filters.txt" - }, - new - { - Id = 1935L, - FilterListId = 1867L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/LanikSJ/ubo-filters/main/filters/ubo-filters.txt" - }, - new - { - Id = 1936L, - FilterListId = 1868L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://mkb2091.github.io/blockconvert/output/adblock.txt" - }, - new - { - Id = 1937L, - FilterListId = 1869L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://mkb2091.github.io/blockconvert/output/hosts.txt" - }, - new - { - Id = 1938L, - FilterListId = 1870L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://mkb2091.github.io/blockconvert/output/domains.txt" - }, - new - { - Id = 1939L, - FilterListId = 1871L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://mkb2091.github.io/blockconvert/output/ip_blocklist.txt" - }, - new - { - Id = 1940L, - FilterListId = 1872L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://mkb2091.github.io/blockconvert/output/domains.rpz" - }, - new - { - Id = 1941L, - FilterListId = 1873L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://mkb2091.github.io/blockconvert/output/whitelist_domains.txt" - }, - new - { - Id = 1942L, - FilterListId = 1876L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersRPZ.txt" - }, - new - { - Id = 1943L, - FilterListId = 1876L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersRPZ.txt" - }, - new - { - Id = 1944L, - FilterListId = 1877L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersUnbound.conf" - }, - new - { - Id = 1945L, - FilterListId = 1877L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersUnbound.conf" - }, - new - { - Id = 1946L, - FilterListId = 1878L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersForMinerBlock.txt" - }, - new - { - Id = 1947L, - FilterListId = 1878L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersForMinerBlock.txt" - }, - new - { - Id = 1951L, - FilterListId = 1880L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-domains-online.txt" - }, - new - { - Id = 1952L, - FilterListId = 1880L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-domains-online.txt" - }, - new - { - Id = 1953L, - FilterListId = 1880L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-domains-online.txt" - }, - new - { - Id = 1954L, - FilterListId = 1881L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/angelics/pfbng/master/ads/ads-domain-list.txt" - }, - new - { - Id = 1955L, - FilterListId = 1882L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/blocktastic/pihole/master/blocktastic.txt" - }, - new - { - Id = 1956L, - FilterListId = 1886L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cchevy/macedonian-pi-hole-blocklist/master/hosts.txt" - }, - new - { - Id = 1957L, - FilterListId = 1887L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/chrisjudk/hosts/master/hosts" - }, - new - { - Id = 1958L, - FilterListId = 1888L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://agh.lite.dcod.ml/hosts.php" - }, - new - { - Id = 1959L, - FilterListId = 1890L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deletescape/noads/master/lists/add-switzerland.txt" - }, - new - { - Id = 1960L, - FilterListId = 1891L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deletescape/noads/master/lists/fo-scumware.txt" - }, - new - { - Id = 1961L, - FilterListId = 1892L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://lists.noads.online/lists/compilation.txt" - }, - new - { - Id = 1962L, - FilterListId = 1893L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deletescape/noads/master/lists/unbreak.txt" - }, - new - { - Id = 1965L, - FilterListId = 1896L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DRSDavidSoft/additional-hosts/master/domains/blacklist/adservers-and-trackers.txt" - }, - new - { - Id = 1966L, - FilterListId = 1897L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DRSDavidSoft/additional-hosts/master/domains/blacklist/unwanted-iranian.txt" - }, - new - { - Id = 1967L, - FilterListId = 1898L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/herrbischoff/trackers/master/trackers.txt" - }, - new - { - Id = 1968L, - FilterListId = 1899L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/javabean/dnsmasq-antispy/master/dnsmasq.ghostery_bugs.conf" - }, - new - { - Id = 1969L, - FilterListId = 1900L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/javabean/dnsmasq-antispy/master/dnsmasq.zz-extra-servers-manual.conf" - }, - new - { - Id = 1970L, - FilterListId = 1901L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiCartoonHipsterList.txt" - }, - new - { - Id = 1971L, - FilterListId = 1901L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiCartoonHipsterList.txt" - }, - new - { - Id = 1972L, - FilterListId = 1902L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/meinhimmel/hosts/master/hosts" - }, - new - { - Id = 1973L, - FilterListId = 1903L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/mhhakim/pihole-blocklist/master/custom-blocklist.txt" - }, - new - { - Id = 1974L, - FilterListId = 1904L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Phentora/AdguardPersonalList/master/blocklist.txt" - }, - new - { - Id = 1975L, - FilterListId = 1906L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Rhys-H/hosts-list/master/HostsList.txt" - }, - new - { - Id = 1976L, - FilterListId = 1907L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/smed79/blacklist/master/hosts.txt" - }, - new - { - Id = 1977L, - FilterListId = 1908L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/stamparm/maltrail/master/trails/static/suspicious/pua.txt" - }, - new - { - Id = 1978L, - FilterListId = 1909L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/svetlyobg/svet-custom-domains/master/ads-domains" - }, - new - { - Id = 1979L, - FilterListId = 1910L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/svetlyobg/svet-custom-domains/master/ads-IPs" - }, - new - { - Id = 1980L, - FilterListId = 1911L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tomzuu/blacklist-named/master/ad.sites.conf" - }, - new - { - Id = 1981L, - FilterListId = 1912L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tomzuu/blacklist-named/master/phishing.sites.conf" - }, - new - { - Id = 1982L, - FilterListId = 1913L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tomzuu/blacklist-named/master/pushing.sites.conf" - }, - new - { - Id = 1983L, - FilterListId = 1914L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/UnbendableStraw/samsungnosnooping/master/README.md" - }, - new - { - Id = 1984L, - FilterListId = 1915L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/unchartedsky/adguard-kr/master/adguard-kr.txt" - }, - new - { - Id = 1985L, - FilterListId = 1916L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/xlimit91/xlimit91-block-list/master/blacklist.txt" - }, - new - { - Id = 1986L, - FilterListId = 1917L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/xlimit91/xlimit91-block-list/master/regex.list" - }, - new - { - Id = 1987L, - FilterListId = 1918L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ZYX2019/host-block-list/master/Custom.txt" - }, - new - { - Id = 1988L, - FilterListId = 1919L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/zznidar/BAR/master/BAR-list" - }, - new - { - Id = 1989L, - FilterListId = 1920L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/zznidar/BAR/master/URLs_full" - }, - new - { - Id = 1990L, - FilterListId = 1921L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/infinitytec/blocklists/master/ads-and-trackers.txt" - }, - new - { - Id = 1991L, - FilterListId = 1922L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/infinitytec/blocklists/master/scams-and-phishing.txt" - }, - new - { - Id = 1995L, - FilterListId = 1926L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jackrabbit335/UsefulLinuxShellScripts/master/Hosts %26 sourcelist/blacklist.txt" - }, - new - { - Id = 1996L, - FilterListId = 1927L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Th3M3/blocklists/master/malware.list" - }, - new - { - Id = 1997L, - FilterListId = 1928L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Th3M3/blocklists/master/tracking%26ads.list" - }, - new - { - Id = 2000L, - FilterListId = 1930L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/GameConsoleAdblockList.txt" - }, - new - { - Id = 2001L, - FilterListId = 1930L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/GameConsoleAdblockList.txt" - }, - new - { - Id = 2002L, - FilterListId = 1931L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.thedumbterminal.co.uk/files/services/squidblockedsites/blocked.txt" - }, - new - { - Id = 2003L, - FilterListId = 1932L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://assets.windscribe.com/custom_blocklists/clickbait.txt" - }, - new - { - Id = 2004L, - FilterListId = 1933L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/dns-firewall/dns/matrix/matrix/raw/master/source/adware/domains.list" - }, - new - { - Id = 2005L, - FilterListId = 1934L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/dns-firewall/dns/matrix/matrix/raw/master/source/tracking/domains.list" - }, - new - { - Id = 2008L, - FilterListId = 1937L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://pastebin.com/raw/UP3s7pEB" - }, - new - { - Id = 2009L, - FilterListId = 1938L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/YanFung/Ads/master/Mobile" - }, - new - { - Id = 2010L, - FilterListId = 1939L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/yhonay/antipopads/master/hosts" - }, - new - { - Id = 2011L, - FilterListId = 1940L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://repo.andnixsh.com/adblocker/hosts" - }, - new - { - Id = 2012L, - FilterListId = 1941L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/huanz/surge-hosts/master/surge.conf" - }, - new - { - Id = 2013L, - FilterListId = 1942L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.bentasker.co.uk/adblock/autolist.txt" - }, - new - { - Id = 2014L, - FilterListId = 1943L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.bentasker.co.uk/adblock/adblock_compiled.txt" - }, - new - { - Id = 2015L, - FilterListId = 1944L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.bentasker.co.uk/adblock/blockeddomains.txt" - }, - new - { - Id = 2016L, - FilterListId = 1945L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/regex.list" - }, - new - { - Id = 2017L, - FilterListId = 1946L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://anonymousposter.gitlab.io/ublockorigin-rules/blockrules.txt" - }, - new - { - Id = 2019L, - FilterListId = 1948L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/fengyc/URLRedirector/master/tools/rules.json" - }, - new - { - Id = 2020L, - FilterListId = 1949L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/fengyc/URLRedirector/master/tools/rules_geekzu.json" - }, - new - { - Id = 2021L, - FilterListId = 1950L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=rpz&showintro=1&mimetype=plaintext" - }, - new - { - Id = 2022L, - FilterListId = 1951L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AdGuardHomeDisallowedIPs.txt" - }, - new - { - Id = 2023L, - FilterListId = 1951L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AdGuardHomeDisallowedIPs.txt" - }, - new - { - Id = 2024L, - FilterListId = 1952L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/TwitterPureReadingExperience.txt" - }, - new - { - Id = 2025L, - FilterListId = 1952L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/TwitterPureReadingExperience.txt" - }, - new - { - Id = 2026L, - FilterListId = 1953L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/complete/adblock.txt" - }, - new - { - Id = 2027L, - FilterListId = 1954L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/mini/adblock.txt" - }, - new - { - Id = 2028L, - FilterListId = 1955L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/Pro/adblock.txt" - }, - new - { - Id = 2029L, - FilterListId = 1956L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/durablenapkin/scamblocklist/master/hosts.txt" - }, - new - { - Id = 2030L, - FilterListId = 1957L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yumire/kiss-filters/master/filters.txt" - }, - new - { - Id = 2031L, - FilterListId = 1958L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/Sorrow-San/9anime-adblock-filters/raw/master/9Anime filter list" - }, - new - { - Id = 2032L, - FilterListId = 1959L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/RiiConnect24/DNS-Server/master/dns_zones-hosts.txt" - }, - new - { - Id = 2036L, - FilterListId = 1963L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/Sorrow-San/9anime-adblock-filters/raw/master_with_banners/9Anime filter list" - }, - new - { - Id = 2037L, - FilterListId = 1964L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAdventureTimeList.txt" - }, - new - { - Id = 2038L, - FilterListId = 1964L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAdventureTimeList.txt" - }, - new - { - Id = 2039L, - FilterListId = 1965L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/HaveIBeenPwnedPasteRemover.txt" - }, - new - { - Id = 2040L, - FilterListId = 1965L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/HaveIBeenPwnedPasteRemover.txt" - }, - new - { - Id = 2043L, - FilterListId = 1967L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AdRemovalListForUnusualAds.txt" - }, - new - { - Id = 2044L, - FilterListId = 1967L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AdRemovalListForUnusualAds.txt" - }, - new - { - Id = 2045L, - FilterListId = 1968L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/AdguardFilters/master/AnnoyancesFilter/sections/remains.txt" - }, - new - { - Id = 2046L, - FilterListId = 1969L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/AdguardFilters/master/AnnoyancesFilter/sections/push-notifications.txt" - }, - new - { - Id = 2047L, - FilterListId = 1970L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/AdguardFilters/master/AnnoyancesFilter/sections/mobile-app.txt" - }, - new - { - Id = 2048L, - FilterListId = 1971L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/AdguardFilters/master/AnnoyancesFilter/sections/antiadblock.txt" - }, - new - { - Id = 2049L, - FilterListId = 1972L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AdGuard Home Compilation List/AdGuardHomeCompilationListIPs.txt" - }, - new - { - Id = 2050L, - FilterListId = 1972L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AdGuard Home Compilation List/AdGuardHomeCompilationListIPs.txt" - }, - new - { - Id = 2051L, - FilterListId = 1973L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/AntiAmazonListForTwitchDomains.txt" - }, - new - { - Id = 2052L, - FilterListId = 1973L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/AntiAmazonListForTwitchDomains.txt" - }, - new - { - Id = 2053L, - FilterListId = 1974L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/AntiAmazonListForTwitchHosts.txt" - }, - new - { - Id = 2054L, - FilterListId = 1974L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/AntiAmazonListForTwitchHosts.txt" - }, - new - { - Id = 2055L, - FilterListId = 1975L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/AntiF%25D1%2596%25D0%259C%2520ListDomains.txt" - }, - new - { - Id = 2056L, - FilterListId = 1975L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/AntiF%25D1%2596%25D0%259C%2520ListDomains.txt" - }, - new - { - Id = 2057L, - FilterListId = 1976L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiHivemindCartoonTrashingList.txt" - }, - new - { - Id = 2058L, - FilterListId = 1976L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiHivemindCartoonTrashingList.txt" - }, - new - { - Id = 2059L, - FilterListId = 1977L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/AntiHivemindCartoonTrashingListDomains.txt" - }, - new - { - Id = 2060L, - FilterListId = 1977L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/AntiHivemindCartoonTrashingListDomains.txt" - }, - new - { - Id = 2061L, - FilterListId = 1978L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/AntiStevenUniverseListDomains.txt" - }, - new - { - Id = 2062L, - FilterListId = 1978L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/AntiStevenUniverseListDomains.txt" - }, - new - { - Id = 2063L, - FilterListId = 1979L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/BrowseWebsitesWithoutLoggingInAGH.txt" - }, - new - { - Id = 2064L, - FilterListId = 1979L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/BrowseWebsitesWithoutLoggingInAGH.txt" - }, - new - { - Id = 2065L, - FilterListId = 1980L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/BrowseWebsitesWithoutLoggingInDomains.txt" - }, - new - { - Id = 2066L, - FilterListId = 1980L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/BrowseWebsitesWithoutLoggingInDomains.txt" - }, - new - { - Id = 2067L, - FilterListId = 1981L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/WikiaPureBrowsingExperienceDomains.txt" - }, - new - { - Id = 2068L, - FilterListId = 1981L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/WikiaPureBrowsingExperienceDomains.txt" - }, - new - { - Id = 2069L, - FilterListId = 1983L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiSubmissiveEroticaList.txt" - }, - new - { - Id = 2070L, - FilterListId = 1983L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiSubmissiveEroticaList.txt" - }, - new - { - Id = 2071L, - FilterListId = 1984L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/ImgurPureImageryExperience.txt" - }, - new - { - Id = 2072L, - FilterListId = 1984L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/ImgurPureImageryExperience.txt" - }, - new - { - Id = 2073L, - FilterListId = 1985L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://dns.adguard.com/dns-query" - }, - new - { - Id = 2074L, - FilterListId = 1985L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "tls://dns.adguard.com/" - }, - new - { - Id = 2075L, - FilterListId = 1985L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "176.103.130.130" - }, - new - { - Id = 2076L, - FilterListId = 1986L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://dns-family.adguard.com/dns-query" - }, - new - { - Id = 2077L, - FilterListId = 1986L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "tls://dns-family.adguard.com/" - }, - new - { - Id = 2078L, - FilterListId = 1986L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "176.103.130.132" - }, - new - { - Id = 2079L, - FilterListId = 1987L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/SayNoToRacismOnTwitch.txt" - }, - new - { - Id = 2080L, - FilterListId = 1987L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/SayNoToRacismOnTwitch.txt" - }, - new - { - Id = 2081L, - FilterListId = 1988L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/MeWeHappyTimeFunClub.txt" - }, - new - { - Id = 2082L, - FilterListId = 1988L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/MeWeHappyTimeFunClub.txt" - }, - new - { - Id = 2083L, - FilterListId = 1989L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/PokémonNoGOZone.txt" - }, - new - { - Id = 2084L, - FilterListId = 1989L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/PokémonNoGOZone.txt" - }, - new - { - Id = 2085L, - FilterListId = 1990L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/EmptyPaddingRemover.txt" - }, - new - { - Id = 2086L, - FilterListId = 1990L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/EmptyPaddingRemover.txt" - }, - new - { - Id = 2087L, - FilterListId = 1991L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/JapaneseTextSoftener.txt" - }, - new - { - Id = 2088L, - FilterListId = 1991L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/JapaneseTextSoftener.txt" - }, - new - { - Id = 2089L, - FilterListId = 1992L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://dsi.ut-capitole.fr/blacklists/download/sect.tar.gz" - }, - new - { - Id = 2090L, - FilterListId = 1993L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://dsi.ut-capitole.fr/blacklists/download/astrology.tar.gz" - }, - new - { - Id = 2091L, - FilterListId = 1994L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://dsi.ut-capitole.fr/blacklists/download/shortener.tar.gz" - }, - new - { - Id = 2092L, - FilterListId = 1995L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/assets/mirror/ut1-gambling.txt" - }, - new - { - Id = 2093L, - FilterListId = 1996L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Extensions/Anti Obfuscation" - }, - new - { - Id = 2095L, - FilterListId = 1998L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Anti/Anti Location Tracking" - }, - new - { - Id = 2096L, - FilterListId = 2000L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://someonewhocares.org/hosts/ipv6/hosts" - }, - new - { - Id = 2097L, - FilterListId = 2001L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/complete/dnsmasq.conf" - }, - new - { - Id = 2098L, - FilterListId = 2002L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/mini/dnsmasq.conf" - }, - new - { - Id = 2099L, - FilterListId = 2003L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/Pro/dnsmasq.conf" - }, - new - { - Id = 2100L, - FilterListId = 2004L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://www.accs-net.com/hosts/Downloads/hosts127001.zip" - }, - new - { - Id = 2101L, - FilterListId = 2005L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/assets/mirror/ut1-cryptojacking.txt" - }, - new - { - Id = 2102L, - FilterListId = 2006L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/assets/mirror/ut1-adult.txt" - }, - new - { - Id = 2103L, - FilterListId = 2007L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://block.energized.pro/assets/mirror/ut1-social-networks.txt" - }, - new - { - Id = 2104L, - FilterListId = 2008L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/ads.txt" - }, - new - { - Id = 2105L, - FilterListId = 2009L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/crypto.txt" - }, - new - { - Id = 2106L, - FilterListId = 2010L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/ransomware.txt" - }, - new - { - Id = 2107L, - FilterListId = 2011L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/piracy.txt" - }, - new - { - Id = 2108L, - FilterListId = 2012L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/tracking.txt" - }, - new - { - Id = 2109L, - FilterListId = 2013L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/scam.txt" - }, - new - { - Id = 2110L, - FilterListId = 2014L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/gambling.txt" - }, - new - { - Id = 2113L, - FilterListId = 2017L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/porn.txt" - }, - new - { - Id = 2114L, - FilterListId = 2018L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/redirect.txt" - }, - new - { - Id = 2115L, - FilterListId = 2022L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://ipverse.net/ipblocks/data/countries/cn.zone" - }, - new - { - Id = 2116L, - FilterListId = 2023L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://ipverse.net/ipblocks/data/countries/ru.zone" - }, - new - { - Id = 2117L, - FilterListId = 2024L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://ipverse.net/ipblocks/data/countries/ua.zone" - }, - new - { - Id = 2118L, - FilterListId = 2025L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://ipverse.net/ipblocks/data/countries/ro.zone" - }, - new - { - Id = 2119L, - FilterListId = 2026L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hblock.molinero.dev/hosts_domains.txt" - }, - new - { - Id = 2120L, - FilterListId = 2027L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hblock.molinero.dev/hosts_adblock.txt" - }, - new - { - Id = 2121L, - FilterListId = 2028L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/malware.txt" - }, - new - { - Id = 2122L, - FilterListId = 2029L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://ipverse.net/ipblocks/data/countries/cn-ipv6.zone" - }, - new - { - Id = 2123L, - FilterListId = 2030L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://ipverse.net/ipblocks/data/countries/ru-ipv6.zone" - }, - new - { - Id = 2124L, - FilterListId = 2031L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://ipverse.net/ipblocks/data/countries/ua-ipv6.zone" - }, - new - { - Id = 2127L, - FilterListId = 2034L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/fanboy-notifications.txt" - }, - new - { - Id = 2128L, - FilterListId = 2035L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/fanboy-notifications.tpl" - }, - new - { - Id = 2129L, - FilterListId = 2036L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/notracking/hosts-blocklists/master/adblock/adblock.txt" - }, - new - { - Id = 2130L, - FilterListId = 2038L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/dnswarden/blocklist/master/blacklist-formats/hosts" - }, - new - { - Id = 2131L, - FilterListId = 2039L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/dnswarden/blocklist/master/blacklist-formats/hostnames" - }, - new - { - Id = 2132L, - FilterListId = 2040L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/dnswarden/blocklist/master/blacklist-formats/rpz" - }, - new - { - Id = 2133L, - FilterListId = 2041L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersHostsIPv6.txt" - }, - new - { - Id = 2134L, - FilterListId = 2041L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersHostsIPv6.txt" - }, - new - { - Id = 2137L, - FilterListId = 2043L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/privacy-protection-tools/anti-AD/master/anti-ad-easylist.txt" - }, - new - { - Id = 2138L, - FilterListId = 2043L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.jsdelivr.net/gh/privacy-protection-tools/anti-AD@master/anti-ad-easylist.txt" - }, - new - { - Id = 2139L, - FilterListId = 2043L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://anti-ad.net/easylist.txt" - }, - new - { - Id = 2140L, - FilterListId = 2044L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/privacy-protection-tools/anti-AD/master/anti-ad-domains.txt" - }, - new - { - Id = 2141L, - FilterListId = 2044L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.jsdelivr.net/gh/privacy-protection-tools/anti-AD@master/anti-ad-domains.txt" - }, - new - { - Id = 2142L, - FilterListId = 2044L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://anti-ad.net/domains.txt" - }, - new - { - Id = 2143L, - FilterListId = 2045L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/privacy-protection-tools/anti-AD/master/adblock-for-dnsmasq.conf" - }, - new - { - Id = 2144L, - FilterListId = 2045L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.jsdelivr.net/gh/privacy-protection-tools/anti-AD@master/adblock-for-dnsmasq.conf" - }, - new - { - Id = 2145L, - FilterListId = 2045L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://anti-ad.net/anti-ad-for-dnsmasq.conf" - }, - new - { - Id = 2146L, - FilterListId = 2046L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/privacy-protection-tools/anti-AD/master/anti-ad-surge.txt" - }, - new - { - Id = 2147L, - FilterListId = 2046L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.jsdelivr.net/gh/privacy-protection-tools/anti-AD@master/anti-ad-surge.txt" - }, - new - { - Id = 2148L, - FilterListId = 2046L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://anti-ad.net/surge.txt" - }, - new - { - Id = 2149L, - FilterListId = 2047L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/danielmiessler/SecLists/master/Discovery/Infrastructure/common-router-ips.txt" - }, - new - { - Id = 2150L, - FilterListId = 2048L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/danielmiessler/SecLists/master/IOCs/kaspersky-careto-domains.txt" - }, - new - { - Id = 2151L, - FilterListId = 2049L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/danielmiessler/SecLists/master/IOCs/kaspersky-careto-C2.txt" - }, - new - { - Id = 2152L, - FilterListId = 2050L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/danielmiessler/SecLists/master/Miscellaneous/dns-resolvers.txt" - }, - new - { - Id = 2153L, - FilterListId = 2051L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hostfiles.frogeye.fr/firstparty-trackers.txt" - }, - new - { - Id = 2154L, - FilterListId = 2052L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hostfiles.frogeye.fr/firstparty-trackers-hosts.txt" - }, - new - { - Id = 2155L, - FilterListId = 2053L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hostfiles.frogeye.fr/firstparty-only-trackers.txt" - }, - new - { - Id = 2156L, - FilterListId = 2054L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hostfiles.frogeye.fr/firstparty-only-trackers-hosts.txt" - }, - new - { - Id = 2157L, - FilterListId = 2055L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hostfiles.frogeye.fr/multiparty-only-trackers.txt" - }, - new - { - Id = 2158L, - FilterListId = 2056L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hostfiles.frogeye.fr/multiparty-only-trackers-hosts.txt" - }, - new - { - Id = 2159L, - FilterListId = 2057L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nextdns/cname-cloaking-blocklist/master/domains" - }, - new - { - Id = 2160L, - FilterListId = 2058L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nextdns/piracy-blocklists/master/torrent-websites" - }, - new - { - Id = 2161L, - FilterListId = 2059L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gist.githubusercontent.com/Marfjeh/97f2f049b41b3f09eabcc04004073ae3/raw/58fe3d12c4157b0bda1a2af313809597ea54bb08/torrent-trackers-host" - }, - new - { - Id = 2162L, - FilterListId = 2060L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Other Formats/Extra Format 1" - }, - new - { - Id = 2163L, - FilterListId = 2061L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Other Formats/Simplified Domains" - }, - new - { - Id = 2164L, - FilterListId = 2062L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deletescape/noads/master/lists/additional-rules.txt" - }, - new - { - Id = 2165L, - FilterListId = 2063L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://nixnet.services/hosts.txt" - }, - new - { - Id = 2166L, - FilterListId = 2064L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://adblock.any.dns.nixnet.xyz/dns-query" - }, - new - { - Id = 2167L, - FilterListId = 2064L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "tls://198.251.90.89:853/" - }, - new - { - Id = 2168L, - FilterListId = 2064L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "198.251.90.89" - }, - new - { - Id = 2169L, - FilterListId = 2065L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/troysjanda/MyBlockLists/master/yahoocomplete.txt" - }, - new - { - Id = 2170L, - FilterListId = 2067L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://ads-doh.securedns.eu/dns-query" - }, - new - { - Id = 2171L, - FilterListId = 2067L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "tls://ads-dot.securedns.eu/" - }, - new - { - Id = 2172L, - FilterListId = 2067L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "146.185.167.43:5443" - }, - new - { - Id = 2173L, - FilterListId = 2068L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.powershellgallery.com/packages/Manage-AdBlocksOnDNSServer/" - }, - new - { - Id = 2174L, - FilterListId = 2069L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "91.239.26.140" - }, - new - { - Id = 2175L, - FilterListId = 2070L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://dns.noads.online/dns-query" - }, - new - { - Id = 2176L, - FilterListId = 2070L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "tls://dns.noads.online:853/" - }, - new - { - Id = 2177L, - FilterListId = 2070L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "167.99.241.49" - }, - new - { - Id = 2178L, - FilterListId = 2071L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "46.101.91.123" - }, - new - { - Id = 2179L, - FilterListId = 2072L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://sebsauvage.net/hosts/hosts" - }, - new - { - Id = 2180L, - FilterListId = 2073L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://sebsauvage.net/hosts/hosts-adguard" - }, - new - { - Id = 2181L, - FilterListId = 2074L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://sebsauvage.net/hosts/raw" - }, - new - { - Id = 2182L, - FilterListId = 2075L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/SmartTV-AGH.txt" - }, - new - { - Id = 2184L, - FilterListId = 2077L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/durablenapkin/scamblocklist/master/adguard.txt" - }, - new - { - Id = 2185L, - FilterListId = 2078L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://ads-for-open-source.readthedocs.io/en/latest/_static/lists/readthedocs-ads.txt" - }, - new - { - Id = 2186L, - FilterListId = 2079L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/adguard/social-plus.txt" - }, - new - { - Id = 2187L, - FilterListId = 2080L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/adguard/tracking-plus.txt" - }, - new - { - Id = 2188L, - FilterListId = 2081L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/sabre-filters2.txt" - }, - new - { - Id = 2189L, - FilterListId = 2082L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/blog-parts.txt" - }, - new - { - Id = 2190L, - FilterListId = 2083L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/blog-parts-adult.txt" - }, - new - { - Id = 2191L, - FilterListId = 2084L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/medium_mode/anti-allowlist.txt" - }, - new - { - Id = 2192L, - FilterListId = 2085L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/medium_mode/dynamic-rules.txt" - }, - new - { - Id = 2193L, - FilterListId = 2086L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/medium_mode/static-rules.txt" - }, - new - { - Id = 2194L, - FilterListId = 2087L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/scafroglia93/blocklists/master/blocklists-main.txt" - }, - new - { - Id = 2195L, - FilterListId = 2088L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/medium_mode/dynamic-rules-mob.txt" - }, - new - { - Id = 2196L, - FilterListId = 2089L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/no_gen_cosm/phhider.txt" - }, - new - { - Id = 2197L, - FilterListId = 2090L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/no_gen_cosm/phhider-mob.txt" - }, - new - { - Id = 2198L, - FilterListId = 2091L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-filters.txt" - }, - new - { - Id = 2199L, - FilterListId = 2092L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-paranoid.txt" - }, - new - { - Id = 2200L, - FilterListId = 2093L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-social.txt" - }, - new - { - Id = 2201L, - FilterListId = 2094L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-annoyances.txt" - }, - new - { - Id = 2203L, - FilterListId = 2099L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "185.228.168.9" - }, - new - { - Id = 2204L, - FilterListId = 2099L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "185.228.169.9" - }, - new - { - Id = 2205L, - FilterListId = 2099L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "2a0d:2a00:1::2" - }, - new - { - Id = 2206L, - FilterListId = 2100L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Kees1958/WS3_annual_most_used_survey_blocklist/master/Top500" - }, - new - { - Id = 2207L, - FilterListId = 2101L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DavidTai780/AdGuard-Home-Private-Rules/master/hosts.txt" - }, - new - { - Id = 2208L, - FilterListId = 2102L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/loveqqzj/AdGuard/master/Mobile.txt" - }, - new - { - Id = 2209L, - FilterListId = 2103L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/crimsonphobia/etc/master/ips" - }, - new - { - Id = 2210L, - FilterListId = 2104L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/banbendalao/ADgk/master/ADgk.txt" - }, - new - { - Id = 2211L, - FilterListId = 2104L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.jsdelivr.net/gh/banbendalao/ADgk@latest/ADgk.txt" - }, - new - { - Id = 2212L, - FilterListId = 2104L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://banbendalao.coding.net/p/adgk/d/ADgk/git/raw/master/ADgk.txt" - }, - new - { - Id = 2213L, - FilterListId = 2105L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/banbendalao/ADgk/master/kill-baidu-ad.txt" - }, - new - { - Id = 2214L, - FilterListId = 2105L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.jsdelivr.net/gh/banbendalao/ADgk@latest/kill-baidu-ad.txt" - }, - new - { - Id = 2215L, - FilterListId = 2105L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://banbendalao.coding.net/p/adgk/d/ADgk/git/raw/master/kill-baidu-ad.txt" - }, - new - { - Id = 2216L, - FilterListId = 2106L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://dns.adgk.net:4433/dns-query" - }, - new - { - Id = 2217L, - FilterListId = 2106L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "tls://dns.adgk.net/" - }, - new - { - Id = 2218L, - FilterListId = 2106L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "47.98.48.196" - }, - new - { - Id = 2219L, - FilterListId = 2107L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "45.7.228.197" - }, - new - { - Id = 2220L, - FilterListId = 2108L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "198.91.86.63" - }, - new - { - Id = 2221L, - FilterListId = 2109L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitee.com/halflife/list/raw/master/ad.txt" - }, - new - { - Id = 2222L, - FilterListId = 2109L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/o0HalfLife0o/list/master/ad.txt" - }, - new - { - Id = 2223L, - FilterListId = 2110L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitee.com/anye1998/Adguard-List-of-personal-rules/raw/master/List-of-personal-rules.txt" - }, - new - { - Id = 2224L, - FilterListId = 2111L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/cjx82630/cjxlist/master/cjx-ublock.txt" - }, - new - { - Id = 2225L, - FilterListId = 2111L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitee.com/cjx82630/cjxlist/raw/master/cjx-ublock.txt" - }, - new - { - Id = 2226L, - FilterListId = 2112L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/GDPR 451 List.txt" - }, - new - { - Id = 2227L, - FilterListId = 2112L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/GDPR 451 List.txt" - }, - new - { - Id = 2228L, - FilterListId = 2113L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/TorRedirectorList-URLRedirector.json" - }, - new - { - Id = 2229L, - FilterListId = 2113L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/TorRedirectorList-URLRedirector.json" - }, - new - { - Id = 2230L, - FilterListId = 2114L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/MediaPlayerGradientRemover.txt" - }, - new - { - Id = 2231L, - FilterListId = 2114L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/MediaPlayerGradientRemover.txt" - }, - new - { - Id = 2232L, - FilterListId = 2115L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/indianlist+easylist.txt" - }, - new - { - Id = 2233L, - FilterListId = 2117L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/indianlist+easylist.tpl" - }, - new - { - Id = 2234L, - FilterListId = 2118L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/koreanlist+easylist.txt" - }, - new - { - Id = 2235L, - FilterListId = 2119L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/koreanlist+easylist.tpl" - }, - new - { - Id = 2236L, - FilterListId = 2120L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistportuguese+easylist.txt" - }, - new - { - Id = 2237L, - FilterListId = 2121L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistportuguese+easylist.tpl" - }, - new - { - Id = 2238L, - FilterListId = 2122L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/abpvn+easylist.txt" - }, - new - { - Id = 2239L, - FilterListId = 2123L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/abpvn+easylist.tpl" - }, - new - { - Id = 2240L, - FilterListId = 2124L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/abpindo+easylist.tpl" - }, - new - { - Id = 2241L, - FilterListId = 2125L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/abp-filters-anti-cv.tpl" - }, - new - { - Id = 2242L, - FilterListId = 2126L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/bitblock.tpl" - }, - new - { - Id = 2243L, - FilterListId = 2127L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/bitblockext.txt" - }, - new - { - Id = 2244L, - FilterListId = 2128L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/bitblockext.tpl" - }, - new - { - Id = 2245L, - FilterListId = 2129L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/antinuha.txt" - }, - new - { - Id = 2246L, - FilterListId = 2130L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/antinuha.tpl" - }, - new - { - Id = 2247L, - FilterListId = 2131L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/cntblock.tpl" - }, - new - { - Id = 2248L, - FilterListId = 2132L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/hdd1013/AdBlockListSubKr/master/filter.txt" - }, - new - { - Id = 2249L, - FilterListId = 2133L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/dagoll/filters-list/master/dagoll-filters-list.txt" - }, - new - { - Id = 2250L, - FilterListId = 2134L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/TheCardinalSystem/Cruncyroll-Filter-List/master/english.txt" - }, - new - { - Id = 2251L, - FilterListId = 2135L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/radokristof/HunFakeNewsAdblockList/master/hosts" - }, - new - { - Id = 2252L, - FilterListId = 2136L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/dagoll/filters-list/master/dynamic-filtering-rules.txt" - }, - new - { - Id = 2253L, - FilterListId = 2137L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/AmazonFireTV.txt" - }, - new - { - Id = 2254L, - FilterListId = 2138L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DariusIurca/RFNBL-Romanian-Fake-News-Block-List/master/RFNBL.txt" - }, - new - { - Id = 2255L, - FilterListId = 2139L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DariusIurca/ROADBLK-EXTRA/master/ROADBLK-EXTRA.txt" - }, - new - { - Id = 2256L, - FilterListId = 2140L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/dnscrypt/spy.txt" - }, - new - { - Id = 2257L, - FilterListId = 2141L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/dnscrypt/update.txt" - }, - new - { - Id = 2258L, - FilterListId = 2142L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/dnscrypt/extra.txt" - }, - new - { - Id = 2259L, - FilterListId = 2143L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/openwrt/spy/dnsmasq.conf" - }, - new - { - Id = 2260L, - FilterListId = 2144L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/openwrt/update/dnsmasq.conf" - }, - new - { - Id = 2261L, - FilterListId = 2145L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/openwrt/extra/dnsmasq.conf" - }, - new - { - Id = 2262L, - FilterListId = 2146L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/firewall/spy.txt" - }, - new - { - Id = 2263L, - FilterListId = 2147L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/firewall/update.txt" - }, - new - { - Id = 2264L, - FilterListId = 2148L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/firewall/extra.txt" - }, - new - { - Id = 2265L, - FilterListId = 2149L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistpolish+easylist.txt" - }, - new - { - Id = 2266L, - FilterListId = 2150L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistpolish+easylist.tpl" - }, - new - { - Id = 2267L, - FilterListId = 2151L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/newhosts-final-IPv6.hosts" - }, - new - { - Id = 2268L, - FilterListId = 2152L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/newhosts-final-Dual.hosts" - }, - new - { - Id = 2269L, - FilterListId = 2153L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tomzuu/blacklist-named/master/malwaredomainlist.conf" - }, - new - { - Id = 2270L, - FilterListId = 2154L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/tomzuu/blacklist-named/master/cedia_justdomains.conf" - }, - new - { - Id = 2271L, - FilterListId = 2155L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://abp.oisd.nl/" - }, - new - { - Id = 2272L, - FilterListId = 2155L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/abp.txt" - }, - new - { - Id = 2273L, - FilterListId = 2155L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/abp.txt" - }, - new - { - Id = 2274L, - FilterListId = 2156L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Special security lists/IDNHomographProtectionTotal.txt" - }, - new - { - Id = 2275L, - FilterListId = 2156L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Special security lists/IDNHomographProtectionTotal.txt" - }, - new - { - Id = 2276L, - FilterListId = 2157L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Special security lists/IDNHomographProtection-USLatinTLDsOnly.txt" - }, - new - { - Id = 2277L, - FilterListId = 2157L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Special security lists/IDNHomographProtection-USLatinTLDsOnly.txt" - }, - new - { - Id = 2278L, - FilterListId = 2158L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/EkstraBladetEroticContentRemover.txt" - }, - new - { - Id = 2279L, - FilterListId = 2158L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/EkstraBladetEroticContentRemover.txt" - }, - new - { - Id = 2280L, - FilterListId = 2159L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://orca.pet/notonmyshift/domains.txt" - }, - new - { - Id = 2281L, - FilterListId = 2160L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://bl.isx.fr/raw" - }, - new - { - Id = 2282L, - FilterListId = 2161L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/hg1978/AdGuard-Home-Whitelist/master/whitelist.txt" - }, - new - { - Id = 2283L, - FilterListId = 2162L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/MassMove/AttackVectors/master/LocalJournals/fake-local-journals-list.txt" - }, - new - { - Id = 2284L, - FilterListId = 2163L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/UndertaleRemoverForSoundCloud.txt" - }, - new - { - Id = 2285L, - FilterListId = 2163L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/UndertaleRemoverForSoundCloud.txt" - }, - new - { - Id = 2289L, - FilterListId = 2165L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-dnsmasq-online.conf" - }, - new - { - Id = 2290L, - FilterListId = 2165L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-dnsmasq-online.conf" - }, - new - { - Id = 2291L, - FilterListId = 2165L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-dnsmasq-online.conf" - }, - new - { - Id = 2295L, - FilterListId = 2167L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-hosts-online.txt" - }, - new - { - Id = 2296L, - FilterListId = 2167L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-hosts-online.txt" - }, - new - { - Id = 2297L, - FilterListId = 2167L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-hosts-online.txt" - }, - new - { - Id = 2301L, - FilterListId = 2169L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-bind-online.conf" - }, - new - { - Id = 2302L, - FilterListId = 2169L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-bind-online.conf" - }, - new - { - Id = 2303L, - FilterListId = 2169L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-bind-online.conf" - }, - new - { - Id = 2307L, - FilterListId = 2171L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-unbound-online.conf" - }, - new - { - Id = 2308L, - FilterListId = 2171L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-unbound-online.conf" - }, - new - { - Id = 2309L, - FilterListId = 2171L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-unbound-online.conf" - }, - new - { - Id = 2310L, - FilterListId = 2172L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/static/HPHosts/Hostsemd.txt" - }, - new - { - Id = 2311L, - FilterListId = 2173L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/static/HPHosts/Hostsexp.txt" - }, - new - { - Id = 2312L, - FilterListId = 2174L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/static/HPHosts/Hostsgrm.txt" - }, - new - { - Id = 2313L, - FilterListId = 2175L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/static/HPHosts/Hostsfsa.txt" - }, - new - { - Id = 2314L, - FilterListId = 2176L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/static/HPHosts/Hostsmmt.txt" - }, - new - { - Id = 2315L, - FilterListId = 2177L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://v.firebog.net/hosts/static/HPHosts/Hostspha.txt" - }, - new - { - Id = 2318L, - FilterListId = 2179L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://blocklist.palemoon.org/ABL/lunar-blocklist.txt" - }, - new - { - Id = 2319L, - FilterListId = 2180L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://mirai.security.gives/data/ip_list.txt" - }, - new - { - Id = 2320L, - FilterListId = 2181L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/stamparm/maltrail/master/trails/static/suspicious/crypto_mining.txt" - }, - new - { - Id = 2321L, - FilterListId = 2182L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/stamparm/maltrail/master/trails/static/suspicious/dynamic_domain.txt" - }, - new - { - Id = 2322L, - FilterListId = 2183L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/stamparm/maltrail/master/trails/static/suspicious/rogue_dns.txt" - }, - new - { - Id = 2323L, - FilterListId = 2184L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/stamparm/maltrail/master/trails/static/malicious/magentocore.txt" - }, - new - { - Id = 2324L, - FilterListId = 2185L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/1_optimized.txt" - }, - new - { - Id = 2325L, - FilterListId = 2186L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/4_optimized.txt" - }, - new - { - Id = 2326L, - FilterListId = 2187L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/113_optimized.txt" - }, - new - { - Id = 2327L, - FilterListId = 2188L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/104_optimized.txt" - }, - new - { - Id = 2328L, - FilterListId = 2189L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/115_optimized.txt" - }, - new - { - Id = 2329L, - FilterListId = 2190L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/118_optimized.txt" - }, - new - { - Id = 2330L, - FilterListId = 2191L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/14_optimized.txt" - }, - new - { - Id = 2331L, - FilterListId = 2192L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/122_optimized.txt" - }, - new - { - Id = 2332L, - FilterListId = 2193L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/123_optimized.txt" - }, - new - { - Id = 2333L, - FilterListId = 2194L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/213_optimized.txt" - }, - new - { - Id = 2334L, - FilterListId = 2195L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bambenek/block-doh/master/doh-hosts.txt" - }, - new - { - Id = 2335L, - FilterListId = 2196L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bambenek/block-doh/master/doh-ipv4.txt" - }, - new - { - Id = 2336L, - FilterListId = 2197L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bambenek/block-doh/master/doh-ipv6.txt" - }, - new - { - Id = 2337L, - FilterListId = 2198L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://azorult-tracker.net/api/list/domain?format=plain" - }, - new - { - Id = 2338L, - FilterListId = 2199L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/10.txt" - }, - new - { - Id = 2339L, - FilterListId = 2200L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/13.txt" - }, - new - { - Id = 2340L, - FilterListId = 2201L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/3.txt" - }, - new - { - Id = 2341L, - FilterListId = 2202L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/9.txt" - }, - new - { - Id = 2342L, - FilterListId = 2203L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/4.txt" - }, - new - { - Id = 2343L, - FilterListId = 2204L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/1.txt" - }, - new - { - Id = 2344L, - FilterListId = 2205L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/11.txt" - }, - new - { - Id = 2345L, - FilterListId = 2206L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/ios/filters/11.txt" - }, - new - { - Id = 2346L, - FilterListId = 2207L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/7.txt" - }, - new - { - Id = 2347L, - FilterListId = 2208L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/6.txt" - }, - new - { - Id = 2348L, - FilterListId = 2209L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/5.txt" - }, - new - { - Id = 2349L, - FilterListId = 2210L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/2.txt" - }, - new - { - Id = 2350L, - FilterListId = 2211L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/8.txt" - }, - new - { - Id = 2351L, - FilterListId = 2212L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/14.txt" - }, - new - { - Id = 2352L, - FilterListId = 2213L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/16.txt" - }, - new - { - Id = 2353L, - FilterListId = 2214L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/2_without_easylist.txt" - }, - new - { - Id = 2354L, - FilterListId = 2215L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/stamparm/aux/master/maltrail-malware-domains.txt" - }, - new - { - Id = 2355L, - FilterListId = 2216L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://infosharing.cybersaiyan.it/feeds/CS-PIHOLE" - }, - new - { - Id = 2356L, - FilterListId = 2217L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/stamparm/ipsum/master/levels/4.txt" - }, - new - { - Id = 2357L, - FilterListId = 2218L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/stamparm/ipsum/master/levels/5.txt" - }, - new - { - Id = 2358L, - FilterListId = 2219L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/stamparm/ipsum/master/levels/6.txt" - }, - new - { - Id = 2359L, - FilterListId = 2220L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAnthroCombatWaifuList.txt" - }, - new - { - Id = 2360L, - FilterListId = 2220L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAnthroCombatWaifuList.txt" - }, - new - { - Id = 2370L, - FilterListId = 2230L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/abpindo-minified.txt" - }, - new - { - Id = 2371L, - FilterListId = 2231L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/abpvn-minified.txt" - }, - new - { - Id = 2372L, - FilterListId = 2232L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/ruadlist-minified.txt" - }, - new - { - Id = 2373L, - FilterListId = 2233L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/bulgarian_list-minified.txt" - }, - new - { - Id = 2374L, - FilterListId = 2234L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylist-minified.txt" - }, - new - { - Id = 2375L, - FilterListId = 2235L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistchina-minified.txt" - }, - new - { - Id = 2376L, - FilterListId = 2236L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hg.adblockplus.org/customfilterlists/raw-file/default/easylistczechandslovak-minified.txt" - }, - new - { - Id = 2377L, - FilterListId = 2237L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistdutch-minified.txt" - }, - new - { - Id = 2378L, - FilterListId = 2238L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistgermany-minified.txt" - }, - new - { - Id = 2379L, - FilterListId = 2239L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistitaly-minified.txt" - }, - new - { - Id = 2380L, - FilterListId = 2240L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistlithuania-minified.txt" - }, - new - { - Id = 2381L, - FilterListId = 2241L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistpolish-minified.txt" - }, - new - { - Id = 2382L, - FilterListId = 2242L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistportuguese-minified.txt" - }, - new - { - Id = 2383L, - FilterListId = 2243L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistspanish-minified.txt" - }, - new - { - Id = 2384L, - FilterListId = 2244L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easyprivacy-minified.txt" - }, - new - { - Id = 2385L, - FilterListId = 2245L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/fanboy-social-minified.txt" - }, - new - { - Id = 2386L, - FilterListId = 2246L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/indianlist-minified.txt" - }, - new - { - Id = 2387L, - FilterListId = 2247L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/israellist-minified.txt" - }, - new - { - Id = 2388L, - FilterListId = 2248L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/latvianlist-minified.txt" - }, - new - { - Id = 2390L, - FilterListId = 2250L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/liste_fr-minified.txt" - }, - new - { - Id = 2391L, - FilterListId = 2251L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/rolist-minified.txt" - }, - new - { - Id = 2392L, - FilterListId = 2252L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistchina+easylistchina_compliance+easylist.txt" - }, - new - { - Id = 2393L, - FilterListId = 2253L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/abpindo-minified.tpl" - }, - new - { - Id = 2394L, - FilterListId = 2254L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/abpvn-minified.tpl" - }, - new - { - Id = 2395L, - FilterListId = 2255L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/ruadlist-minified.tpl" - }, - new - { - Id = 2396L, - FilterListId = 2256L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/bulgarian_list-minified.tpl" - }, - new - { - Id = 2397L, - FilterListId = 2257L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylist-minified.tpl" - }, - new - { - Id = 2398L, - FilterListId = 2258L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistchina-minified.tpl" - }, - new - { - Id = 2400L, - FilterListId = 2260L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistdutch-minified.tpl" - }, - new - { - Id = 2401L, - FilterListId = 2261L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistgermany-minified.tpl" - }, - new - { - Id = 2402L, - FilterListId = 2262L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistitaly-minified.tpl" - }, - new - { - Id = 2403L, - FilterListId = 2263L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistlithuania-minified.tpl" - }, - new - { - Id = 2404L, - FilterListId = 2264L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistpolish-minified.tpl" - }, - new - { - Id = 2405L, - FilterListId = 2265L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistportuguese-minified.tpl" - }, - new - { - Id = 2406L, - FilterListId = 2266L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistspanish-minified.tpl" - }, - new - { - Id = 2407L, - FilterListId = 2267L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easyprivacy-minified.tpl" - }, - new - { - Id = 2408L, - FilterListId = 2268L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/fanboy-social-minified.tpl" - }, - new - { - Id = 2409L, - FilterListId = 2269L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/indianlist-minified.tpl" - }, - new - { - Id = 2410L, - FilterListId = 2270L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/israellist-minified.tpl" - }, - new - { - Id = 2411L, - FilterListId = 2271L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/latvianlist-minified.tpl" - }, - new - { - Id = 2412L, - FilterListId = 2272L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/liste_ar-minified.tpl" - }, - new - { - Id = 2413L, - FilterListId = 2273L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/liste_fr-minified.tpl" - }, - new - { - Id = 2414L, - FilterListId = 2274L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/rolist-minified.tpl" - }, - new - { - Id = 2415L, - FilterListId = 2275L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/easylistchina+easylistchina_compliance+easylist.tpl" - }, - new - { - Id = 2416L, - FilterListId = 2276L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://sub.adtchrome.com/adt-chinalist-easylist.txt" - }, - new - { - Id = 2417L, - FilterListId = 2277L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/TakoYachty/Gift-Card-Killer/master/Mega Untrusted Hosts Blocker.txt" - }, - new - { - Id = 2418L, - FilterListId = 2278L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/stonecrusher/filterlists-pihole/master/watchlist-internet-ph.txt" - }, - new - { - Id = 2419L, - FilterListId = 2279L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://badmojr.github.io/1Hosts/complete/wildcards.txt" - }, - new - { - Id = 2420L, - FilterListId = 2279L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/complete/wildcards.txt" - }, - new - { - Id = 2421L, - FilterListId = 2280L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://badmojr.github.io/1Hosts/mini/wildcards.txt" - }, - new - { - Id = 2422L, - FilterListId = 2280L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/mini/wildcards.txt" - }, - new - { - Id = 2423L, - FilterListId = 2281L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://badmojr.github.io/1Hosts/Pro/wildcards.txt" - }, - new - { - Id = 2424L, - FilterListId = 2281L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/Pro/wildcards.txt" - }, - new - { - Id = 2426L, - FilterListId = 2283L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jerryn70/GoodbyeAds/master/Formats/GoodbyeAds-AdBlock-Filter.txt" - }, - new - { - Id = 2427L, - FilterListId = 2284L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jerryn70/GoodbyeAds/master/Hosts/GoodbyeAds-Ultra.txt" - }, - new - { - Id = 2428L, - FilterListId = 2285L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jerryn70/GoodbyeAds/master/Formats/GoodbyeAds-Ultra-AdBlock-Filter.txt" - }, - new - { - Id = 2429L, - FilterListId = 2286L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersABP-Inclusion.txt" - }, - new - { - Id = 2430L, - FilterListId = 2286L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersABP-Inclusion.txt" - }, - new - { - Id = 2431L, - FilterListId = 2287L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiRacismList.txt" - }, - new - { - Id = 2432L, - FilterListId = 2287L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiRacismList.txt" - }, - new - { - Id = 2433L, - FilterListId = 2288L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/gwarser/filter-lists/master/lan-block.txt" - }, - new - { - Id = 2434L, - FilterListId = 2289L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/realodix/AdBlockID-Adult/master/AdBlockID_Adult.txt" - }, - new - { - Id = 2435L, - FilterListId = 2290L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/llacb47/miscfilters/master/antipaywall.txt" - }, - new - { - Id = 2436L, - FilterListId = 2291L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/llacb47/mischosts/master/blacklist" - }, - new - { - Id = 2437L, - FilterListId = 2292L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/master/accelerated-domains.china.conf" - }, - new - { - Id = 2438L, - FilterListId = 2293L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/intr0/zuckerblock/-/raw/master/uBlockOrigin-noMoreGiphy.txt" - }, - new - { - Id = 2439L, - FilterListId = 2294L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gitlab.com/intr0/zuckerblock/-/raw/master/AdGuard-noMoreGiphy.txt" - }, - new - { - Id = 2440L, - FilterListId = 2295L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/hl2guide/DNS-Sinkhole-Lists-A2/master/typosquatting_blocklist.txt" - }, - new - { - Id = 2442L, - FilterListId = 2297L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/BlackJack8/iOSAdblockList/master/Hosts.txt" - }, - new - { - Id = 2443L, - FilterListId = 2298L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/PebbleOG/pihole-regex/master/regex.list" - }, - new - { - Id = 2444L, - FilterListId = 2299L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/anthony-wang/PiHoleBlocklist/master/regex.list" - }, - new - { - Id = 2445L, - FilterListId = 2300L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/anthony-wang/PiHoleBlocklist/master/hosts1.txt" - }, - new - { - Id = 2446L, - FilterListId = 2301L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/revolveruk30/pihole_regex/master/regex.list" - }, - new - { - Id = 2447L, - FilterListId = 2302L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/d43m0nhLInt3r/socialblocklists/master/Skype/skypeblocklist.txt" - }, - new - { - Id = 2448L, - FilterListId = 2302L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/evpne/socialblocklists/master/Skype/skypeblocklist.txt" - }, - new - { - Id = 2449L, - FilterListId = 2303L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/stamparm/blackbook/master/blackbook.txt" - }, - new - { - Id = 2450L, - FilterListId = 2304L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://blocklist.cyberthreatcoalition.org/vetted/domain.txt" - }, - new - { - Id = 2451L, - FilterListId = 2305L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/sophoslabs/covid-iocs/master/malicious_domains.txt" - }, - new - { - Id = 2452L, - FilterListId = 2306L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/sophoslabs/covid-iocs/master/malware_domains.txt" - }, - new - { - Id = 2453L, - FilterListId = 2307L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://managedsentinel.com/downloads/covid19_domains.txt" - }, - new - { - Id = 2454L, - FilterListId = 2308L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://managedsentinel.com/downloads/covid19_ipaddresses.txt" - }, - new - { - Id = 2455L, - FilterListId = 2309L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://rescure.fruxlabs.com/rescure_domain_blacklist.txt" - }, - new - { - Id = 2456L, - FilterListId = 2310L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://rescure.fruxlabs.com/rescure_blacklist.txt" - }, - new - { - Id = 2457L, - FilterListId = 2311L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://rescure.fruxlabs.com/covid.txt" - }, - new - { - Id = 2458L, - FilterListId = 2311L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://kriskintel.com/feeds/ktip_covid_domains.txt" - }, - new - { - Id = 2460L, - FilterListId = 2313L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://kriskintel.com/feeds/ktip_malicious_domains.txt" - }, - new - { - Id = 2461L, - FilterListId = 2314L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://kriskintel.com/feeds/ktip_malicious_Ips.txt" - }, - new - { - Id = 2462L, - FilterListId = 2315L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/NoFormatting/optimized-win.hosts" - }, - new - { - Id = 2463L, - FilterListId = 2316L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/NoFormatting/optimized-win-Dual.hosts" - }, - new - { - Id = 2464L, - FilterListId = 2317L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/NoFormatting/combined-flat.cidr" - }, - new - { - Id = 2465L, - FilterListId = 2318L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://managedsentinel.com/downloads/covid19_url.txt" - }, - new - { - Id = 2466L, - FilterListId = 2319L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://ftpihole.s3.eu-west-2.amazonaws.com/blocklists/smartphone-ads-tracking.txt" - }, - new - { - Id = 2467L, - FilterListId = 2319L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ftpmorph/ftpihole/master/blocklists/smartphone-ads-tracking.txt" - }, - new - { - Id = 2468L, - FilterListId = 2320L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://ftpihole.s3.eu-west-2.amazonaws.com/blocklists/xiaomi-ads-tracking.txt" - }, - new - { - Id = 2469L, - FilterListId = 2320L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ftpmorph/ftpihole/master/blocklists/xiaomi-ads-tracking.txt" - }, - new - { - Id = 2470L, - FilterListId = 2321L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/chromium/filters/224.txt" - }, - new - { - Id = 2471L, - FilterListId = 2322L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/extension/ublock/filters/224.txt" - }, - new - { - Id = 2472L, - FilterListId = 2323L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/phishing-filter.txt" - }, - new - { - Id = 2473L, - FilterListId = 2323L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gl/curben/phishing-filter/master/dist/phishing-filter.txt" - }, - new - { - Id = 2474L, - FilterListId = 2323L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter.txt" - }, - new - { - Id = 2475L, - FilterListId = 2324L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/phishing-filter-domains.txt" - }, - new - { - Id = 2476L, - FilterListId = 2324L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gl/curben/phishing-filter/master/phishing-filter-domains.txt" - }, - new - { - Id = 2477L, - FilterListId = 2324L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter-domains.txt" - }, - new - { - Id = 2478L, - FilterListId = 2325L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/phishing-filter-dnsmasq.conf" - }, - new - { - Id = 2479L, - FilterListId = 2325L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gl/curben/phishing-filter/master/dist/phishing-filter-dnsmasq.conf" - }, - new - { - Id = 2480L, - FilterListId = 2325L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter-dnsmasq.conf" - }, - new - { - Id = 2481L, - FilterListId = 2326L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/phishing-filter-hosts.txt" - }, - new - { - Id = 2482L, - FilterListId = 2326L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gl/curben/phishing-filter/master/dist/phishing-filter-hosts.txt" - }, - new - { - Id = 2483L, - FilterListId = 2326L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter-hosts.txt" - }, - new - { - Id = 2484L, - FilterListId = 2327L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/phishing-filter-bind.conf" - }, - new - { - Id = 2485L, - FilterListId = 2327L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gl/curben/phishing-filter/master/dist/phishing-filter-bind.conf" - }, - new - { - Id = 2486L, - FilterListId = 2327L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter-bind.conf" - }, - new - { - Id = 2487L, - FilterListId = 2328L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/phishing-filter-unbound.conf" - }, - new - { - Id = 2488L, - FilterListId = 2328L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gl/curben/phishing-filter/master/dist/phishing-filter-unbound.conf" - }, - new - { - Id = 2489L, - FilterListId = 2328L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter-unbound.conf" - }, - new - { - Id = 2490L, - FilterListId = 2329L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/infinitytec/blocklists/master/adfilters.txt" - }, - new - { - Id = 2491L, - FilterListId = 2330L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://github.com/infinitytec/blocklists/raw/master/annoyances.txt" - }, - new - { - Id = 2492L, - FilterListId = 2331L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://github.com/infinitytec/blocklists/raw/master/medicalpseudoscience.txt" - }, - new - { - Id = 2493L, - FilterListId = 2332L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/Anifltrs.txt" - }, - new - { - Id = 2494L, - FilterListId = 2333L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/MAL-Sync UI.txt" - }, - new - { - Id = 2495L, - FilterListId = 2334L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/Anifiltrs Main/Anifiltrs extra-main.txt" - }, - new - { - Id = 2496L, - FilterListId = 2335L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/Anifiltrs Main/Anifiltrs main.txt" - }, - new - { - Id = 2497L, - FilterListId = 2336L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/Anifiltrs — skeletonise.txt" - }, - new - { - Id = 2498L, - FilterListId = 2337L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/Anifiltrs — skeletonise extra.txt" - }, - new - { - Id = 2499L, - FilterListId = 2338L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/L33Tech/uLists/master/Lists/L33TAIO.uBl" - }, - new - { - Id = 2500L, - FilterListId = 2339L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/L33Tech/uLists/master/Forks/StopModReposts.uBl" - }, - new - { - Id = 2501L, - FilterListId = 2340L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/privacy-protection-tools/anti-AD/master/anti-ad-smartdns.conf" - }, - new - { - Id = 2502L, - FilterListId = 2340L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.jsdelivr.net/gh/privacy-protection-tools/anti-AD@master/anti-ad-smartdns.conf" - }, - new - { - Id = 2503L, - FilterListId = 2340L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://anti-ad.net/anti-ad-for-smartdns.conf" - }, - new - { - Id = 2504L, - FilterListId = 2341L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "66.66.23.98" - }, - new - { - Id = 2505L, - FilterListId = 2342L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/AdGuardSDNSFilter/master/Filters/rules.txt" - }, - new - { - Id = 2506L, - FilterListId = 2343L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/AdGuardSDNSFilter/master/Filters/exceptions.txt" - }, - new - { - Id = 2507L, - FilterListId = 2344L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.eff.org/files/effdntlist.txt" - }, - new - { - Id = 2508L, - FilterListId = 2345L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/filter" - }, - new - { - Id = 2509L, - FilterListId = 2346L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/domains.txt" - }, - new - { - Id = 2510L, - FilterListId = 2347L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/dnsmasq.conf" - }, - new - { - Id = 2511L, - FilterListId = 2348L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/dnsmasq-ipv6.conf" - }, - new - { - Id = 2512L, - FilterListId = 2349L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/unbound.conf" - }, - new - { - Id = 2513L, - FilterListId = 2350L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/rpz.txt" - }, - new - { - Id = 2514L, - FilterListId = 2351L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/pdnsf.txt" - }, - new - { - Id = 2515L, - FilterListId = 2352L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.smartadblock.co.uk/filters/sabfilter.txt" - }, - new - { - Id = 2516L, - FilterListId = 2353L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jdlingyu/ad-wars/master/sha_ad_hosts" - }, - new - { - Id = 2517L, - FilterListId = 2354L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Ultimate-Hosts-Blacklist/whitelist/master/domains.list" - }, - new - { - Id = 2518L, - FilterListId = 2355L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/notracking/hosts-blocklists-scripts/master/hostnames.whitelist.txt" - }, - new - { - Id = 2519L, - FilterListId = 2356L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdBlock" - }, - new - { - Id = 2520L, - FilterListId = 2357L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdBlockLite" - }, - new - { - Id = 2521L, - FilterListId = 2358L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdList" - }, - new - { - Id = 2522L, - FilterListId = 2359L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdListLite" - }, - new - { - Id = 2523L, - FilterListId = 2360L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdBlock-dnsmasq" - }, - new - { - Id = 2524L, - FilterListId = 2361L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdBlockLite-dnsmasq" - }, - new - { - Id = 2525L, - FilterListId = 2362L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdAllowlist" - }, - new - { - Id = 2526L, - FilterListId = 2363L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/examplecode/ad-rules-for-xbrowser/master/core-rule-cn.txt" - }, - new - { - Id = 2527L, - FilterListId = 2364L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ilpl/ad-hosts/master/hosts" - }, - new - { - Id = 2529L, - FilterListId = 2366L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/FalukorvList.txt" - }, - new - { - Id = 2530L, - FilterListId = 2366L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/FalukorvList.txt" - }, - new - { - Id = 2531L, - FilterListId = 2367L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://blokada.org/blocklists/ddgtrackerradar/standard/hosts.txt" - }, - new - { - Id = 2532L, - FilterListId = 2368L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Loyalsoldier/v2ray-rules-dat/release/reject-list.txt" - }, - new - { - Id = 2533L, - FilterListId = 2369L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiKpopSpammersTwitter.txt" - }, - new - { - Id = 2534L, - FilterListId = 2369L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiKpopSpammersTwitter.txt" - }, - new - { - Id = 2535L, - FilterListId = 2370L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Goooler/1024_hosts/master/hosts" - }, - new - { - Id = 2536L, - FilterListId = 2371L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/adbyby/xwhyc-rules/master/lazy.txt" - }, - new - { - Id = 2537L, - FilterListId = 2372L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/privacy-protection-tools/dead-horse/master/anti-ad-white-list.txt" - }, - new - { - Id = 2538L, - FilterListId = 2373L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAdoptablesList.txt" - }, - new - { - Id = 2539L, - FilterListId = 2373L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAdoptablesList.txt" - }, - new - { - Id = 2540L, - FilterListId = 2374L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianCashbackAssistantReborn.txt" - }, - new - { - Id = 2541L, - FilterListId = 2374L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianCashbackAssistantReborn.txt" - }, - new - { - Id = 2542L, - FilterListId = 2375L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiNonNewsList.txt" - }, - new - { - Id = 2543L, - FilterListId = 2375L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiNonNewsList.txt" - }, - new - { - Id = 2544L, - FilterListId = 2376L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiBadCapitalismList.txt" - }, - new - { - Id = 2545L, - FilterListId = 2376L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiBadCapitalismList.txt" - }, - new - { - Id = 2546L, - FilterListId = 2377L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/dandelion_sprouts_nordic_filters+easylist.txt" - }, - new - { - Id = 2547L, - FilterListId = 2378L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/dandelion_sprouts_nordic_filters+easylist.tpl" - }, - new - { - Id = 2548L, - FilterListId = 2379L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://doh1.blahdns.com/dns-query" - }, - new - { - Id = 2549L, - FilterListId = 2379L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "tls://95.216.212.177:853/" - }, - new - { - Id = 2550L, - FilterListId = 2379L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "95.216.212.177" - }, - new - { - Id = 2551L, - FilterListId = 2380L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/googlehosts/hosts/master/hosts-files/surge.conf" - }, - new - { - Id = 2552L, - FilterListId = 2380L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://git.qvq.network/googlehosts/hosts/raw/master/hosts-files/surge.conf" - }, - new - { - Id = 2553L, - FilterListId = 2381L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/googlehosts/hosts/master/hosts-files/dnsmasq.conf" - }, - new - { - Id = 2554L, - FilterListId = 2381L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://git.qvq.network/googlehosts/hosts/raw/master/hosts-files/dnsmasq.conf" - }, - new - { - Id = 2555L, - FilterListId = 2382L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/abp_light.txt" - }, - new - { - Id = 2556L, - FilterListId = 2382L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/abp_light.txt" - }, - new - { - Id = 2557L, - FilterListId = 2383L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dblw.txt" - }, - new - { - Id = 2558L, - FilterListId = 2383L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dblw.txt" - }, - new - { - Id = 2559L, - FilterListId = 2384L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dblw_light.txt" - }, - new - { - Id = 2560L, - FilterListId = 2384L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dblw_light.txt" - }, - new - { - Id = 2561L, - FilterListId = 2385L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dnsmasq.txt" - }, - new - { - Id = 2562L, - FilterListId = 2385L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dnsmasq.txt" - }, - new - { - Id = 2563L, - FilterListId = 2386L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dnsmasq_light.txt" - }, - new - { - Id = 2564L, - FilterListId = 2386L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dnsmasq_light.txt" - }, - new - { - Id = 2565L, - FilterListId = 2387L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/ryanbr/fanboy-adblock/master/fanboy-anticomments.txt" - }, - new - { - Id = 2566L, - FilterListId = 2388L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://blacklists.ntop.org/blacklist-hostnames.txt" - }, - new - { - Id = 2567L, - FilterListId = 2389L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://blacklists.ntop.org/adblocker-hostnames.txt" - }, - new - { - Id = 2570L, - FilterListId = 2392L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/hufilter/hufilter/master/hufilter-dns.txt" - }, - new - { - Id = 2571L, - FilterListId = 2393L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://security.cloudflare-dns.com/dns-query" - }, - new - { - Id = 2572L, - FilterListId = 2393L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "1.1.1.2" - }, - new - { - Id = 2573L, - FilterListId = 2393L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "1.0.0.2" - }, - new - { - Id = 2574L, - FilterListId = 2394L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://family.cloudflare-dns.com/dns-query" - }, - new - { - Id = 2575L, - FilterListId = 2394L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "1.1.1.3" - }, - new - { - Id = 2576L, - FilterListId = 2394L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "1.0.0.3" - }, - new - { - Id = 2577L, - FilterListId = 2395L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "156.154.70.2" - }, - new - { - Id = 2578L, - FilterListId = 2395L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "156.154.71.2" - }, - new - { - Id = 2579L, - FilterListId = 2395L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "2610:a1:1018::2" - }, - new - { - Id = 2580L, - FilterListId = 198L, - Primariness = (short)4, - SegmentNumber = (short)0, - Url = "https://gitlab.com/ABPindo/indonesianadblockrules/raw/master/subscriptions/abpindo.txt" - }, - new - { - Id = 2581L, - FilterListId = 2396L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/banks.txt" - }, - new - { - Id = 2582L, - FilterListId = 2397L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/sensitive.txt" - }, - new - { - Id = 2583L, - FilterListId = 2398L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/issues.txt" - }, - new - { - Id = 2584L, - FilterListId = 2399L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/windows.txt" - }, - new - { - Id = 2585L, - FilterListId = 2400L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/mac.txt" - }, - new - { - Id = 2586L, - FilterListId = 2401L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/android.txt" - }, - new - { - Id = 2587L, - FilterListId = 2402L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/firefox.txt" - }, - new - { - Id = 2588L, - FilterListId = 2403L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersDomainsAllowlist.txt" - }, - new - { - Id = 2589L, - FilterListId = 2403L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersDomainsAllowlist.txt" - }, - new - { - Id = 2590L, - FilterListId = 2404L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiPorkMeatOnRestaurantMenusList.txt" - }, - new - { - Id = 2591L, - FilterListId = 2404L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiPorkMeatOnRestaurantMenusList.txt" - }, - new - { - Id = 2592L, - FilterListId = 2406L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Special security lists/DummyList.txt" - }, - new - { - Id = 2593L, - FilterListId = 2406L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Special security lists/DummyList.txt" - }, - new - { - Id = 2594L, - FilterListId = 2405L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/Swedish-List-for-Adblock-Plus/main/Swedish List for Adblock Plus.txt" - }, - new - { - Id = 2595L, - FilterListId = 214L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/antiadblockfilters.txt" - }, - new - { - Id = 2596L, - FilterListId = 566L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://easylist-downloads.adblockplus.org/abp-filters-anti-cv.txt" - }, - new - { - Id = 2597L, - FilterListId = 2407L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hg.adblockplus.org/antiadblockfilters/raw-file/tip/antiadblockfilters/antiadblock_english.txt" - }, - new - { - Id = 2598L, - FilterListId = 2408L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hg.adblockplus.org/antiadblockfilters/raw-file/tip/antiadblockfilters/antiadblock_french.txt" - }, - new - { - Id = 2599L, - FilterListId = 2409L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://hg.adblockplus.org/antiadblockfilters/raw-file/tip/antiadblockfilters/antiadblock_russian.txt" - }, - new - { - Id = 2600L, - FilterListId = 2410L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiSnowMarketingList.txt" - }, - new - { - Id = 2601L, - FilterListId = 2411L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/pexcn/daily/gh-pages/adlist/adlist.txt" - }, - new - { - Id = 2602L, - FilterListId = 2412L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/pexcn/daily/gh-pages/adblock/adblock.conf" - }, - new - { - Id = 2603L, - FilterListId = 2413L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/pexcn/daily/gh-pages/shadowrocket/gfwlist.conf" - }, - new - { - Id = 2604L, - FilterListId = 2414L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/pexcn/daily/gh-pages/shadowrocket/whitelist.conf" - }, - new - { - Id = 2605L, - FilterListId = 2415L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/pexcn/daily/gh-pages/trackerlist/trackerlist.txt" - }, - new - { - Id = 2606L, - FilterListId = 2416L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/pexcn/daily/gh-pages/ublacklist/ublacklist.txt" - }, - new - { - Id = 2607L, - FilterListId = 2417L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/pexcn/daily/gh-pages/chnroute/chnroute.txt" - }, - new - { - Id = 2608L, - FilterListId = 2418L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/pexcn/daily/gh-pages/chnroute/chnroute-v6.txt" - }, - new - { - Id = 2609L, - FilterListId = 2419L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-agh-online.txt" - }, - new - { - Id = 2610L, - FilterListId = 2420L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-ag-online.txt" - }, - new - { - Id = 2611L, - FilterListId = 2421L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-vivaldi-online.txt" - }, - new - { - Id = 2612L, - FilterListId = 2422L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/phishing-filter-agh.txt" - }, - new - { - Id = 2613L, - FilterListId = 2423L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/phishing-filter-ag.txt" - }, - new - { - Id = 2614L, - FilterListId = 2424L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/phishing-filter-vivaldi.txt" - }, - new - { - Id = 2615L, - FilterListId = 1985L, - Primariness = (short)4, - SegmentNumber = (short)0, - Url = "176.103.130.131" - }, - new - { - Id = 2616L, - FilterListId = 1985L, - Primariness = (short)5, - SegmentNumber = (short)0, - Url = "2a00:5a60::ad1:0ff" - }, - new - { - Id = 2617L, - FilterListId = 1985L, - Primariness = (short)6, - SegmentNumber = (short)0, - Url = "2a00:5a60::ad2:0ff" - }, - new - { - Id = 2618L, - FilterListId = 1986L, - Primariness = (short)4, - SegmentNumber = (short)0, - Url = "176.103.130.134" - }, - new - { - Id = 2619L, - FilterListId = 1986L, - Primariness = (short)5, - SegmentNumber = (short)0, - Url = "2a00:5a60::bad1:0ff" - }, - new - { - Id = 2620L, - FilterListId = 1986L, - Primariness = (short)6, - SegmentNumber = (short)0, - Url = "2a00:5a60::bad2:0ff" - }, - new - { - Id = 2621L, - FilterListId = 2425L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AdGuard Home Compilation List/AdGuardHomeCompilationList-Notifications.txt" - }, - new - { - Id = 2622L, - FilterListId = 2425L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/AdGuard Home Compilation List/AdGuardHomeCompilationList-Notifications.txt" - }, - new - { - Id = 2623L, - FilterListId = 2427L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/AdGuardSDNSFilter/master/Filters/exclusions.txt" - }, - new - { - Id = 2624L, - FilterListId = 2428L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiGachaAndKnockoffGamesList.txt" - }, - new - { - Id = 2625L, - FilterListId = 2428L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/AntiGachaAndKnockoffGamesList.txt" - }, - new - { - Id = 2626L, - FilterListId = 2426L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/rimu/no-qanon/master/etc_hosts.txt" - }, - new - { - Id = 2627L, - FilterListId = 2429L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/rimu/no-qanon/master/etc_hosts.txt.ipv6" - }, - new - { - Id = 2628L, - FilterListId = 2430L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.team-cymru.org/Services/Bogons/bogon-bn-agg.txt" - }, - new - { - Id = 2629L, - FilterListId = 2431L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.team-cymru.org/Services/Bogons/fullbogons-ipv4.txt" - }, - new - { - Id = 2630L, - FilterListId = 2432L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.team-cymru.org/Services/Bogons/fullbogons-ipv6.txt" - }, - new - { - Id = 2631L, - FilterListId = 2433L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFilters-uMatrixSupplement.txt" - }, - new - { - Id = 2632L, - FilterListId = 2433L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/NorwegianExperimentalList alternate versions/NordicFilters-uMatrixSupplement.txt" - }, - new - { - Id = 2633L, - FilterListId = 2434L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/LegitimateURLShortener.txt" - }, - new - { - Id = 2634L, - FilterListId = 2434L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/LegitimateURLShortener.txt" - }, - new - { - Id = 2635L, - FilterListId = 2435L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/SerboCroatianList.txt" - }, - new - { - Id = 2636L, - FilterListId = 2435L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/SerboCroatianList.txt" - }, - new - { - Id = 2637L, - FilterListId = 2436L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/AntiWeebBoobGamesList.txt" - }, - new - { - Id = 2638L, - FilterListId = 2436L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/Sensitive lists/AntiWeebBoobGamesList.txt" - }, - new - { - Id = 2639L, - FilterListId = 2437L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-online.tpl" - }, - new - { - Id = 2640L, - FilterListId = 2438L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/phishing-filter.tpl" - }, - new - { - Id = 2641L, - FilterListId = 2439L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://github.com/arapurayil/aBL/raw/master/lists/general/filter_list.txt" - }, - new - { - Id = 2642L, - FilterListId = 2440L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/arapurayil/aBL/master/lists/social/filter_list.txt" - }, - new - { - Id = 2643L, - FilterListId = 2441L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/arapurayil/aBL/master/lists/porn_gambling_snuff/filter_list.txt" - }, - new - { - Id = 2644L, - FilterListId = 2442L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/arapurayil/aBL/master/lists/regional/filter_list.txt" - }, - new - { - Id = 2645L, - FilterListId = 2443L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Special security lists/AntiFaviconList.txt" - }, - new - { - Id = 2646L, - FilterListId = 2443L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/Special security lists/AntiFaviconList.txt" - }, - new - { - Id = 2647L, - FilterListId = 2444L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareDomains.txt" - }, - new - { - Id = 2648L, - FilterListId = 2444L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/Alternate versions Anti-Malware List/AntiMalwareDomains.txt" - }, - new - { - Id = 2649L, - FilterListId = 2445L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/acnapyx/paywall-remover/master/paywall-remover-list.txt" - }, - new - { - Id = 2650L, - FilterListId = 2446L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://dns.hostux.net/ads" - }, - new - { - Id = 2651L, - FilterListId = 2447L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/arman68/noappleads/main/adguard-blocklist.txt" - }, - new - { - Id = 2652L, - FilterListId = 2448L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/vavavr00m/lists/main/hosts/googletranslate" - }, - new - { - Id = 2653L, - FilterListId = 2449L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/vavavr00m/lists/main/hosts/phorm" - }, - new - { - Id = 2654L, - FilterListId = 2450L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jmhenrique/adblock/master/etc/adblock_hosts" - }, - new - { - Id = 2656L, - FilterListId = 2452L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jbunner/adblock/master/a-roblox.txt" - }, - new - { - Id = 2657L, - FilterListId = 2453L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jbunner/adblock/master/a-msteams.txt" - }, - new - { - Id = 2658L, - FilterListId = 2454L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jbunner/adblock/master/a-scratch.txt" - }, - new - { - Id = 2659L, - FilterListId = 2455L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://dandelionsprout.asuscomm.com:2501/dns-query" - }, - new - { - Id = 2660L, - FilterListId = 2455L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "tls://dandelionsprout.asuscomm.com:853/" - }, - new - { - Id = 2661L, - FilterListId = 2456L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/pafnuty/onlineConsultantBlocker/master/online-consultant.txt" - }, - new - { - Id = 2662L, - FilterListId = 2457L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/catsxp/adblock-lists/master/catsxp-unbreak.txt" - }, - new - { - Id = 2663L, - FilterListId = 2458L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/RedDragonWebDesign/block-everything/master/block-everything.txt" - }, - new - { - Id = 2664L, - FilterListId = 2459L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/cname-trackers/master/combined_disguised_trackers.txt" - }, - new - { - Id = 2665L, - FilterListId = 2460L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/cname-trackers/master/combined_disguised_trackers_justdomains.txt" - }, - new - { - Id = 2666L, - FilterListId = 2461L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/cname-trackers/master/combined_original_trackers.txt" - }, - new - { - Id = 2667L, - FilterListId = 2462L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/WhyIsEvery4thYearAlwaysBad/anti-cancer-filter-lists/master/anti_trash_youtube.txt" - }, - new - { - Id = 2668L, - FilterListId = 2463L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/WhyIsEvery4thYearAlwaysBad/anti-cancer-filter-lists/master/anti_trash_new_reddit.txt" - }, - new - { - Id = 2669L, - FilterListId = 2464L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/WhyIsEvery4thYearAlwaysBad/anti-cancer-filter-lists/master/anti_trash_old_reddit.txt" - }, - new - { - Id = 2670L, - FilterListId = 2465L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/WhyIsEvery4thYearAlwaysBad/anti-cancer-filter-lists/master/anti_scam_internet.txt" - }, - new - { - Id = 2671L, - FilterListId = 2466L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filter.futa.gg/filter.txt" - }, - new - { - Id = 2672L, - FilterListId = 2466L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://filter.futa.app/filter.txt" - }, - new - { - Id = 2673L, - FilterListId = 2467L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filter.futa.gg/hosts.txt" - }, - new - { - Id = 2674L, - FilterListId = 2467L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://filter.futa.app/hosts.txt" - }, - new - { - Id = 2675L, - FilterListId = 2468L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filter.futa.gg/nofarm_hosts.txt" - }, - new - { - Id = 2676L, - FilterListId = 2468L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://filter.futa.app/nofarm_hosts.txt" - }, - new - { - Id = 2677L, - FilterListId = 2469L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FutaGuard/FutaFilter/master/removeparam.txt" - }, - new - { - Id = 2678L, - FilterListId = 2470L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/twcau/AdblockRules/master/MurdochList" - }, - new - { - Id = 2679L, - FilterListId = 2471L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/BPower0036/AdBlockFilters/main/easydutch.txt" - }, - new - { - Id = 2680L, - FilterListId = 2472L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-rpz-online.conf" - }, - new - { - Id = 2681L, - FilterListId = 2473L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/phishing-filter-rpz.conf" - }, - new - { - Id = 2683L, - FilterListId = 2096L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/blogroll.txt" - }, - new - { - Id = 2684L, - FilterListId = 2475L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/hirorpt/filters/main/fix.txt" - }, - new - { - Id = 2685L, - FilterListId = 2476L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/pup-filter.txt" - }, - new - { - Id = 2686L, - FilterListId = 2477L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/pup-filter-domains.txt" - }, - new - { - Id = 2687L, - FilterListId = 2478L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/pup-filter-dnsmasq.conf" - }, - new - { - Id = 2688L, - FilterListId = 2479L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/pup-filter-hosts.txt" - }, - new - { - Id = 2689L, - FilterListId = 2480L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/pup-filter-bind.conf" - }, - new - { - Id = 2690L, - FilterListId = 2481L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/pup-filter-unbound.conf" - }, - new - { - Id = 2691L, - FilterListId = 2482L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/pup-filter-agh.txt" - }, - new - { - Id = 2692L, - FilterListId = 2483L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/pup-filter-ag.txt" - }, - new - { - Id = 2693L, - FilterListId = 2484L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/pup-filter-vivaldi.txt" - }, - new - { - Id = 2694L, - FilterListId = 2485L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/pup-filter.tpl" - }, - new - { - Id = 2695L, - FilterListId = 2486L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/pup-filter-rpz.conf" - }, - new - { - Id = 2696L, - FilterListId = 2487L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/pup-filter-snort2.rules" - }, - new - { - Id = 2697L, - FilterListId = 2488L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/pup-filter-snort3.rules" - }, - new - { - Id = 2698L, - FilterListId = 2489L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/pup-filter-suricata.conf" - }, - new - { - Id = 2699L, - FilterListId = 2490L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-snort2-online.rules" - }, - new - { - Id = 2700L, - FilterListId = 2491L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-snort3-online.rules" - }, - new - { - Id = 2701L, - FilterListId = 2492L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-suricata-online.rules" - }, - new - { - Id = 2702L, - FilterListId = 2493L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/phishing-filter-snort2.rules" - }, - new - { - Id = 2703L, - FilterListId = 2494L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/phishing-filter-snort3.rules" - }, - new - { - Id = 2704L, - FilterListId = 2495L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/phishing-filter-suricata.rules" - }, - new - { - Id = 2705L, - FilterListId = 2496L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/troysjanda/MyBlockLists/master/UBOXPI" - }, - new - { - Id = 2706L, - FilterListId = 2097L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-annoyances-plus.txt" - }, - new - { - Id = 2707L, - FilterListId = 2098L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/adguard/anti-antiadb.txt" - }, - new - { - Id = 2708L, - FilterListId = 2497L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://filters.adtidy.org/windows/filters/17.txt" - }, - new - { - Id = 2709L, - FilterListId = 2498L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://www.joinhoney.com/whitelist/honey-smart-shopping.txt" - }, - new - { - Id = 2710L, - FilterListId = 2499L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/furkun/Anti-IP-Grabber-Hosts/main/hosts" - }, - new - { - Id = 2711L, - FilterListId = 2500L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Cinnamon-Unltd/Anti-Kpop-Spammers-Filterlist-for-Twitter/main/AntiKPopSpammersFilterlistTwitter.txt" - }, - new - { - Id = 2712L, - FilterListId = 2501L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/clarketm/proxy-list/master/proxy-list-raw.txt" - }, - new - { - Id = 2713L, - FilterListId = 2502L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/no-cmyk/Search-Engine-Spam-Domains-Blocklist/master/blocklist.txt" - }, - new - { - Id = 2714L, - FilterListId = 2503L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/SecOps-Institute/Tor-IP-Addresses/master/tor-nodes.lst" - }, - new - { - Id = 2715L, - FilterListId = 2504L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/SecOps-Institute/Tor-IP-Addresses/master/tor-exit-nodes.lst" - }, - new - { - Id = 2716L, - FilterListId = 2505L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/SecOps-Institute/SpamhausIPLists/master/drop.txt" - }, - new - { - Id = 2717L, - FilterListId = 2506L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/SecOps-Institute/SpamhausIPLists/master/drop_ipv6.txt" - }, - new - { - Id = 2718L, - FilterListId = 2507L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/SecOps-Institute/SpamhausIPLists/master/edrop.txt" - }, - new - { - Id = 2719L, - FilterListId = 2508L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://ipverse.net/ipblocks/data/countries/nl.zone" - }, - new - { - Id = 2720L, - FilterListId = 2509L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "http://ipverse.net/ipblocks/data/countries/nl-ipv6.zone" - }, - new - { - Id = 2721L, - FilterListId = 2510L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/autinerd/anti-axelspringer-hosts/master/ios-adguard.txt" - }, - new - { - Id = 2722L, - FilterListId = 2511L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/autinerd/anti-axelspringer-hosts/master/axelspringer-hosts" - }, - new - { - Id = 2723L, - FilterListId = 2512L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/LegitimateURLShortener-AffiliateTagAllowlist.txt" - }, - new - { - Id = 2724L, - FilterListId = 2512L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/LegitimateURLShortener-AffiliateTagAllowlist.txt" - }, - new - { - Id = 2725L, - FilterListId = 2513L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DRSDavidSoft/additional-hosts/master/domains/blacklist/fake-domains.txt" - }, - new - { - Id = 2726L, - FilterListId = 2514L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-dnscrypt-blocked-names-online.txt" - }, - new - { - Id = 2727L, - FilterListId = 2515L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-dnscrypt-blocked-ips-online.txt" - }, - new - { - Id = 2728L, - FilterListId = 2516L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/phishing-filter-dnscrypt-blocked-names.txt" - }, - new - { - Id = 2729L, - FilterListId = 2517L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/phishing-filter-dnscrypt-blocked-ips.txt" - }, - new - { - Id = 2730L, - FilterListId = 2518L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://curben.gitlab.io/malware-filter/pup-filter-dnscrypt-blocked-names.txt" - }, - new - { - Id = 2731L, - FilterListId = 2519L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/JohnyP36/Personal-List/main/Personal List (uBo).txt" - }, - new - { - Id = 2732L, - FilterListId = 2471L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/BPower0036/AdBlockFilters/-/raw/main/easydutch.txt" - }, - new - { - Id = 2733L, - FilterListId = 2520L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/BPower0036/AdBlockFilters/main/dynamic rules" - }, - new - { - Id = 2734L, - FilterListId = 2521L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/BPower0036/AdBlockFilters/main/my filters" - }, - new - { - Id = 2735L, - FilterListId = 2522L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://git.bubblev.org/bubblev/bubble-filter-lists/raw/branch/master/ads_and_trackers1.txt" - }, - new - { - Id = 2736L, - FilterListId = 2523L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://git.bubblev.org/bubblev/bubble-filter-lists/raw/branch/master/sites_us_news.txt" - }, - new - { - Id = 2737L, - FilterListId = 2524L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/jamiemansfield/minecraft-hosts/master/lists/tracking.txt" - }, - new - { - Id = 2738L, - FilterListId = 2525L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://orca.pet/notonmyshift/hosts.txt" - }, - new - { - Id = 2739L, - FilterListId = 2526L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://orca.pet/notonmyshift/abp.txt" - }, - new - { - Id = 2740L, - FilterListId = 2527L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://gist.githubusercontent.com/opus-x/3e673a9d5db2a214df05929a4eee6a57/raw" - }, - new - { - Id = 2741L, - FilterListId = 2528L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/dibdot/DoH-IP-blocklists/master/doh-domains.txt" - }, - new - { - Id = 2742L, - FilterListId = 2529L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AmnestyTech/investigations/master/2021-07-18_nso/domains.txt" - }, - new - { - Id = 2743L, - FilterListId = 2530L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://wp.owenthe.dev/fortnite.txt" - }, - new - { - Id = 2744L, - FilterListId = 2531L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://wp.owenthe.dev/redshell.txt" - }, - new - { - Id = 2745L, - FilterListId = 2532L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/allendema/noplaylist/main/NoPlayList.txt" - }, - new - { - Id = 2746L, - FilterListId = 2533L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiOwlHouseList.txt" - }, - new - { - Id = 2747L, - FilterListId = 2533L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/AntiOwlHouseList.txt" - }, - new - { - Id = 2748L, - FilterListId = 2534L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/Dandelion Sprout's and other adblocker lists' IPs.ipset" - }, - new - { - Id = 2749L, - FilterListId = 2534L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/Alternate versions Anti-Malware List/Dandelion Sprout's and other adblocker lists' IPs.ipset" - }, - new - { - Id = 2750L, - FilterListId = 301L, - Primariness = (short)4, - SegmentNumber = (short)0, - Url = "https://downloads.vivaldi.com/easylist/easylist-current.txt" - }, - new - { - Id = 2751L, - FilterListId = 2535L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/hadig/Focus-for-Youtube/master/focus4yt.txt" - }, - new - { - Id = 2752L, - FilterListId = 2537L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/iam-py-test/my_filters_001/main/antimalware.txt" - }, - new - { - Id = 2753L, - FilterListId = 2538L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/iam-py-test/my_filters_001/main/Alternative list formats/antimalware_hosts.txt" - }, - new - { - Id = 2754L, - FilterListId = 2536L, - Primariness = (short)0, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Arctic-Circle-System/Sketchy-Extension-and-Search-List/main/list.txt" - }, - new - { - Id = 2755L, - FilterListId = 2434L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://iam-py-test.github.io/mirrors/LegitimateURLShortener.txt" - }, - new - { - Id = 2756L, - FilterListId = 2537L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://iam-py-test.github.io/my_filters_001/antimalware.txt" - }, - new - { - Id = 2757L, - FilterListId = 2538L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://iam-py-test.github.io/my_filters_001/Alternative list formats/antimalware_hosts.txt" - }, - new - { - Id = 2758L, - FilterListId = 2539L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://ammnt.app/filter.txt" - }, - new - { - Id = 2759L, - FilterListId = 2540L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AmmoniteFilter/TrilobiteFilter/main/filter.txt" - }, - new - { - Id = 2760L, - FilterListId = 2541L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/iam-py-test/my_filters_001/main/Alternative list formats/antimalware_domains.txt" - }, - new - { - Id = 2761L, - FilterListId = 2541L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://iam-py-test.github.io/my_filters_001/Alternative list formats/antimalware_domains.txt" - }, - new - { - Id = 2762L, - FilterListId = 2542L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/AdguardTeam/AdguardFilters/master/AnnoyancesFilter/sections/subscriptions.txt" - }, - new - { - Id = 2763L, - FilterListId = 2543L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://pfblockerlists.smallbusinesstech.net/hackerlist.txt" - }, - new - { - Id = 2764L, - FilterListId = 2544L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://pfblockerlists.smallbusinesstech.net/spamlist.txt" - }, - new - { - Id = 2765L, - FilterListId = 2545L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/nextdns/metadata/master/privacy/affiliate-tracking-domains" - }, - new - { - Id = 2766L, - FilterListId = 2546L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/deep-bhatt/huawei-block-list/master/huawei-block-host.txt" - }, - new - { - Id = 2767L, - FilterListId = 2547L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/wesbos/burner-email-providers/master/emails.txt" - }, - new - { - Id = 2768L, - FilterListId = 2548L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://kriskintel.com/feeds/ktip_ransomware_feeds.txt" - }, - new - { - Id = 2769L, - FilterListId = 2549L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/brijrajparmar27/host-sources/master/Porn/hosts" - }, - new - { - Id = 2770L, - FilterListId = 2550L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Zelo72/adguard/main/whitelist.referral.adguard" - }, - new - { - Id = 2771L, - FilterListId = 2551L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://github.com/stamparm/maltrail/blob/master/trails/static/suspicious/i2p.txt" - }, - new - { - Id = 2772L, - FilterListId = 2552L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://github.com/stamparm/maltrail/blob/master/trails/static/suspicious/ipinfo.txt" - }, - new - { - Id = 2773L, - FilterListId = 2553L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://github.com/stamparm/maltrail/blob/master/trails/static/suspicious/parking_site.txt" - }, - new - { - Id = 2774L, - FilterListId = 2554L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/DeadServerGamePingList.txt" - }, - new - { - Id = 2775L, - FilterListId = 2554L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/DeadServerGamePingList.txt" - }, - new - { - Id = 2776L, - FilterListId = 2555L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/TabloidRemover-MastodonCategoryForImports.csv" - }, - new - { - Id = 2777L, - FilterListId = 2555L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/Sensitive lists/TabloidRemover-MastodonCategoryForImports.csv" - }, - new - { - Id = 2778L, - FilterListId = 2556L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/ClearURLs for uBo/clear_urls_uboified.txt" - }, - new - { - Id = 2779L, - FilterListId = 2556L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/ClearURLs for uBo/clear_urls_uboified.txt" - }, - new - { - Id = 2780L, - FilterListId = 2557L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/scafroglia93/blocklists/master/blocklists-malware-traffic.txt" - }, - new - { - Id = 2781L, - FilterListId = 2558L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/Knuschberkeks/Knuschberblock/main/Knuschberblock.txt" - }, - new - { - Id = 2782L, - FilterListId = 2559L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/huzunluartemis/TurkishAdblockList/main/src/HostsList.txt" - }, - new - { - Id = 2783L, - FilterListId = 2560L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/huzunluartemis/TurkishAdblockList/main/src/ElementalList.txt" - }, - new - { - Id = 2784L, - FilterListId = 2561L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/huzunluartemis/TurkishAdblockList/main/src/BadIpList.txt" - }, - new - { - Id = 2785L, - FilterListId = 2562L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/furkun/AndroidSecurityHosts/main/hosts" - }, - new - { - Id = 2786L, - FilterListId = 2563L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/furkun/AndroidSecurityHosts/main/domains.txt" - }, - new - { - Id = 2787L, - FilterListId = 2556L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://codeberg.org/rusty-snake/firefox-config/src/branch/main/assets/uBlockOrigin:queryprune.txt" - }, - new - { - Id = 2788L, - FilterListId = 2564L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/PCCassets/main/plCDB.txt" - }, - new - { - Id = 2789L, - FilterListId = 2564L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.jsdelivr.net/gh/FiltersHeroes/PCCassets@main/plCDB.txt" - }, - new - { - Id = 2790L, - FilterListId = 2564L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://combinatronics.io/FiltersHeroes/PCCassets/main/plCDB.txt" - }, - new - { - Id = 2791L, - FilterListId = 2564L, - Primariness = (short)4, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gh/FiltersHeroes/PCCassets/main/plCDB.txt" - }, - new - { - Id = 2792L, - FilterListId = 2564L, - Primariness = (short)5, - SegmentNumber = (short)0, - Url = "https://filtersheroes.gitlab.io/AssetsMirror/plCDB.txt" - }, - new - { - Id = 2793L, - FilterListId = 2565L, - Primariness = (short)1, - SegmentNumber = (short)0, - Url = "https://raw.githubusercontent.com/FiltersHeroes/PCCassets/main/euCDB.txt" - }, - new - { - Id = 2794L, - FilterListId = 2565L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://cdn.jsdelivr.net/gh/FiltersHeroes/PCCassets@main/euCDB.txt" - }, - new - { - Id = 2795L, - FilterListId = 2565L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://combinatronics.io/FiltersHeroes/PCCassets/main/euCDB.txt" - }, - new - { - Id = 2796L, - FilterListId = 2565L, - Primariness = (short)4, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gh/FiltersHeroes/PCCassets/main/euCDB.txt" - }, - new - { - Id = 2797L, - FilterListId = 2565L, - Primariness = (short)5, - SegmentNumber = (short)0, - Url = "https://filtersheroes.gitlab.io/AssetsMirror/euCDB.txt" - }, - new - { - Id = 2798L, - FilterListId = 2471L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://combinatronics.io/BPower0036/AdBlockFilters/main/easydutch.txt" - }, - new - { - Id = 2799L, - FilterListId = 2471L, - Primariness = (short)4, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gh/BPower0036/AdBlockFilters/main/easydutch.txt" - }, - new - { - Id = 2800L, - FilterListId = 2471L, - Primariness = (short)5, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gl/BPower0036/AdBlockFilters/main/easydutch.txt" - }, - new - { - Id = 2801L, - FilterListId = 2471L, - Primariness = (short)6, - SegmentNumber = (short)0, - Url = "https://cdn.jsdelivr.net/gh/BPower0036/AdBlockFilters@main/easydutch.txt" - }, - new - { - Id = 2802L, - FilterListId = 2520L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/BPower0036/AdBlockFilters/-/raw/main/dynamic rules" - }, - new - { - Id = 2803L, - FilterListId = 2520L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://combinatronics.io/BPower0036/AdBlockfilters/main/dynamic rules" - }, - new - { - Id = 2804L, - FilterListId = 2520L, - Primariness = (short)4, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gh/BPower0036/AdBlockfilters/main/dynamic rules" - }, - new - { - Id = 2805L, - FilterListId = 2520L, - Primariness = (short)5, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gl/BPower0036/AdBlockFilters/main/dynamic rules" - }, - new - { - Id = 2806L, - FilterListId = 2520L, - Primariness = (short)6, - SegmentNumber = (short)0, - Url = "https://cdn.jsdelivr.net/gh/BPower0036/AdBlockfilters@main/dynamic rules" - }, - new - { - Id = 2807L, - FilterListId = 2521L, - Primariness = (short)2, - SegmentNumber = (short)0, - Url = "https://gitlab.com/BPower0036/AdBlockFilters/-/raw/main/my filters" - }, - new - { - Id = 2808L, - FilterListId = 2521L, - Primariness = (short)3, - SegmentNumber = (short)0, - Url = "https://combinatronics.io/BPower0036/AdBlockfilters/main/my filters" - }, - new - { - Id = 2809L, - FilterListId = 2521L, - Primariness = (short)4, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gh/BPower0036/AdBlockfilters/main/my filters" - }, - new - { - Id = 2810L, - FilterListId = 2521L, - Primariness = (short)5, - SegmentNumber = (short)0, - Url = "https://cdn.statically.io/gl/BPower0036/AdBlockFilters/main/my filters" - }, - new - { - Id = 2811L, - FilterListId = 2521L, - Primariness = (short)6, - SegmentNumber = (short)0, - Url = "https://cdn.jsdelivr.net/gh/BPower0036/AdBlockfilters@main/my filters" - }); - }); - modelBuilder.Entity("FilterLists.Directory.Infrastructure.Persistence.Queries.Entities.Fork", b => { b.Property("UpstreamFilterListId") @@ -87495,7 +66037,21473 @@ protected override void BuildModel(ModelBuilder modelBuilder) .IsRequired() .HasConstraintName("fk_filter_lists_licenses_license_id"); + b.OwnsMany("FilterLists.Directory.Infrastructure.Persistence.Queries.Entities.FilterListViewUrl", "ViewUrls", b1 => + { + b1.Property("FilterListId") + .HasColumnType("bigint") + .HasColumnName("filter_list_id"); + + b1.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("bigint") + .HasColumnName("id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b1.Property("Id")); + + b1.Property("Primariness") + .ValueGeneratedOnAdd() + .HasColumnType("smallint") + .HasDefaultValue((short)1) + .HasColumnName("primariness"); + + b1.Property("SegmentNumber") + .ValueGeneratedOnAdd() + .HasColumnType("smallint") + .HasDefaultValue((short)1) + .HasColumnName("segment_number"); + + b1.Property("Url") + .IsRequired() + .HasColumnType("text") + .HasColumnName("url"); + + b1.HasKey("FilterListId", "Id") + .HasName("pk_filter_list_view_urls"); + + b1.HasIndex("FilterListId", "SegmentNumber", "Primariness") + .IsUnique() + .HasDatabaseName("ix_filter_list_view_urls_filter_list_id_segment_number_primari"); + + b1.ToTable("filter_list_view_urls", (string)null); + + b1.WithOwner("FilterList") + .HasForeignKey("FilterListId") + .HasConstraintName("fk_filter_list_view_urls_filter_lists_filter_list_id"); + + b1.Navigation("FilterList"); + + b1.HasData( + new + { + FilterListId = 1L, + Id = 1L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-mob.txt" + }, + new + { + FilterListId = 2L, + Id = 2L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/B-Con/mute/master/mute.txt" + }, + new + { + FilterListId = 3L, + Id = 3L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://adblock.mahakala.is/" + }, + new + { + FilterListId = 4L, + Id = 4L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/michaeltrimm/hosts-blocking/master/_hosts.txt" + }, + new + { + FilterListId = 4L, + Id = 5L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/michaeltrimm/hosts-blocking/master/_hosts.txt" + }, + new + { + FilterListId = 4L, + Id = 6L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/michaeltrimm/hosts-blocking/master/_hosts.txt" + }, + new + { + FilterListId = 5L, + Id = 7L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hg.adblockplus.org/facebookfilters/file/tip/message_seen_remover_for_facebook.txt" + }, + new + { + FilterListId = 6L, + Id = 8L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mayve/private-adblock-filters/master/Adblock_List.txt" + }, + new + { + FilterListId = 6L, + Id = 9L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/mayve/private-adblock-filters/master/Adblock_List.txt" + }, + new + { + FilterListId = 6L, + Id = 10L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/mayve/private-adblock-filters/master/Adblock_List.txt" + }, + new + { + FilterListId = 10L, + Id = 11L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.malwaredomainlist.com/hostslist/hosts.txt" + }, + new + { + FilterListId = 11L, + Id = 12L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/liste_fr+easylist.txt" + }, + new + { + FilterListId = 12L, + Id = 13L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/liste_fr.txt" + }, + new + { + FilterListId = 13L, + Id = 14L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/liste_ar+liste_fr+easylist.txt" + }, + new + { + FilterListId = 14L, + Id = 15L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/Liste_AR.txt" + }, + new + { + FilterListId = 16L, + Id = 16L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/List-KR/List-KR/master/filter.txt" + }, + new + { + FilterListId = 17L, + Id = 17L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://winhelp2002.mvps.org/hosts.txt" + }, + new + { + FilterListId = 17L, + Id = 18L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/data/mvps.org/hosts" + }, + new + { + FilterListId = 17L, + Id = 19L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/data/mvps.org/hosts" + }, + new + { + FilterListId = 18L, + Id = 20L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/taylr/linkedinsanity/master/linkedinsanity.txt" + }, + new + { + FilterListId = 18L, + Id = 21L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/taylr/linkedinsanity/master/linkedinsanity.txt" + }, + new + { + FilterListId = 18L, + Id = 22L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/taylr/linkedinsanity/master/linkedinsanity.txt" + }, + new + { + FilterListId = 19L, + Id = 23L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/hoshsadiq/adblock-nocoin-list/master/nocoin.txt" + }, + new + { + FilterListId = 19L, + Id = 24L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/hoshsadiq/adblock-nocoin-list/master/nocoin.txt" + }, + new + { + FilterListId = 19L, + Id = 25L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/hoshsadiq/adblock-nocoin-list/master/nocoin.txt" + }, + new + { + FilterListId = 20L, + Id = 26L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianList.txt" + }, + new + { + FilterListId = 20L, + Id = 27L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianList.txt" + }, + new + { + FilterListId = 27L, + Id = 28L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/metaphoricgiraffe/tracking-filters/master/trackingfilters.txt" + }, + new + { + FilterListId = 27L, + Id = 29L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/metaphoricgiraffe/tracking-filters/master/trackingfilters.txt" + }, + new + { + FilterListId = 27L, + Id = 30L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/metaphoricgiraffe/tracking-filters/master/trackingfilters.txt" + }, + new + { + FilterListId = 28L, + Id = 31L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/liamja/Prebake/master/quiet.txt" + }, + new + { + FilterListId = 28L, + Id = 32L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/liamja/Prebake/master/quiet.txt" + }, + new + { + FilterListId = 28L, + Id = 33L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/liamja/Prebake/master/quiet.txt" + }, + new + { + FilterListId = 29L, + Id = 34L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/liamja/Prebake/master/obtrusive.txt" + }, + new + { + FilterListId = 29L, + Id = 35L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/liamja/Prebake/master/obtrusive.txt" + }, + new + { + FilterListId = 29L, + Id = 36L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/liamja/Prebake/master/obtrusive.txt" + }, + new + { + FilterListId = 30L, + Id = 37L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PPB.txt" + }, + new + { + FilterListId = 30L, + Id = 38L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/FiltersHeroes/PolishAnnoyanceFilters/master/PPB.txt" + }, + new + { + FilterListId = 30L, + Id = 39L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/FiltersHeroes/PolishAnnoyanceFilters/master/PPB.txt" + }, + new + { + FilterListId = 31L, + Id = 40L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.niecko.pl/adblock/adblock.txt" + }, + new + { + FilterListId = 32L, + Id = 41L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=adblockplus&showintro=1&mimetype=plaintext" + }, + new + { + FilterListId = 33L, + Id = 42L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/LordBadmintonofYorkshire/Overlay-Blocker/master/blocklist.txt" + }, + new + { + FilterListId = 33L, + Id = 43L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/LordBadmintonofYorkshire/Overlay-Blocker/master/blocklist.txt" + }, + new + { + FilterListId = 33L, + Id = 44L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/LordBadmintonofYorkshire/Overlay-Blocker/master/blocklist.txt" + }, + new + { + FilterListId = 34L, + Id = 45L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://openphish.com/feed.txt" + }, + new + { + FilterListId = 36L, + Id = 46L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/genediazjr/nopelist/master/nopelist.txt" + }, + new + { + FilterListId = 36L, + Id = 47L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/genediazjr/nopelist/master/nopelist.txt" + }, + new + { + FilterListId = 36L, + Id = 48L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/genediazjr/nopelist/master/nopelist.txt" + }, + new + { + FilterListId = 38L, + Id = 49L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Rpsl/adblock-leadgenerator-list/master/list/list.txt" + }, + new + { + FilterListId = 38L, + Id = 50L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/Rpsl/adblock-leadgenerator-list/master/list/list.txt" + }, + new + { + FilterListId = 38L, + Id = 51L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/Rpsl/adblock-leadgenerator-list/master/list/list.txt" + }, + new + { + FilterListId = 39L, + Id = 52L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://notabug.org/latvian-list/adblock-latvian/raw/master/lists/latvian-list.txt" + }, + new + { + FilterListId = 47L, + Id = 53L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/NanoMeow/UltimateMirror/master/archive/hphosts.txt" + }, + new + { + FilterListId = 47L, + Id = 54L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/static/HPHosts/HostsAdServers.txt" + }, + new + { + FilterListId = 49L, + Id = 55L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://sites.google.com/site/hosts2ch/ja?attredirects=0" + }, + new + { + FilterListId = 50L, + Id = 56L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/HexxiumCreations/threat-list/gh-pages/hexxiumthreatlist.txt" + }, + new + { + FilterListId = 50L, + Id = 57L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/HexxiumCreations/threat-list/gh-pages/hexxiumthreatlist.txt" + }, + new + { + FilterListId = 50L, + Id = 58L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/HexxiumCreations/threat-list/gh-pages/hexxiumthreatlist.txt" + }, + new + { + FilterListId = 51L, + Id = 59L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kargig/greek-adblockplus-filter/master/void-gr-filters.txt" + }, + new + { + FilterListId = 51L, + Id = 60L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/kargig/greek-adblockplus-filter/master/void-gr-filters.txt" + }, + new + { + FilterListId = 51L, + Id = 61L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/kargig/greek-adblockplus-filter/master/void-gr-filters.txt" + }, + new + { + FilterListId = 52L, + Id = 62L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gnuzilla.gnu.org/filters/blacklist.txt" + }, + new + { + FilterListId = 53L, + Id = 63L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/gmbkslist (Hosts).txt" + }, + new + { + FilterListId = 53L, + Id = 64L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/DandelionSprout/adfilt/master/AncientLibrary/gmbkslist (Hosts).txt" + }, + new + { + FilterListId = 54L, + Id = 65L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://web.archive.org/web/20160221140034if_/http://adblock.gjtech.net/?format=unix-hosts" + }, + new + { + FilterListId = 56L, + Id = 66L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/latvianlist+easylist.txt" + }, + new + { + FilterListId = 59L, + Id = 67L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/gfmaster/adblock-korea-contrib/master/filter.txt" + }, + new + { + FilterListId = 59L, + Id = 68L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/gfmaster/adblock-korea-contrib/master/filter.txt" + }, + new + { + FilterListId = 59L, + Id = 69L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/gfmaster/adblock-korea-contrib/master/filter.txt" + }, + new + { + FilterListId = 60L, + Id = 70L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/KADhosts/master/KADhosts.txt" + }, + new + { + FilterListId = 60L, + Id = 71L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/FiltersHeroes/KADhosts/master/KADhosts.txt" + }, + new + { + FilterListId = 60L, + Id = 72L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/FiltersHeroes/KADhosts/master/KADhosts.txt" + }, + new + { + FilterListId = 61L, + Id = 73L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/KAD/master/KAD.txt" + }, + new + { + FilterListId = 61L, + Id = 74L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/FiltersHeroes/KAD/master/KAD.txt" + }, + new + { + FilterListId = 61L, + Id = 75L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/FiltersHeroes/KAD/master/KAD.txt" + }, + new + { + FilterListId = 62L, + Id = 76L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://qme.mydns.jp/data/AdblockV2.txt" + }, + new + { + FilterListId = 63L, + Id = 77L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://qme.mydns.jp/data/Adblock.txt" + }, + new + { + FilterListId = 64L, + Id = 78L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/lewisje/jansal/master/adblock/hostslt" + }, + new + { + FilterListId = 64L, + Id = 79L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/lewisje/jansal/master/adblock/hostslt" + }, + new + { + FilterListId = 64L, + Id = 80L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitcdn.link/repo/lewisje/jansal/master/adblock/hostslt" + }, + new + { + FilterListId = 65L, + Id = 81L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/lewisje/jansal/master/adblock/hosts" + }, + new + { + FilterListId = 65L, + Id = 82L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/lewisje/jansal/master/adblock/hosts" + }, + new + { + FilterListId = 65L, + Id = 83L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitcdn.link/repo/lewisje/jansal/master/adblock/hosts" + }, + new + { + FilterListId = 66L, + Id = 84L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.jabcreations.com/downloads/adblock-filters.php" + }, + new + { + FilterListId = 67L, + Id = 85L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/piperun/iploggerfilter/master/filterlist" + }, + new + { + FilterListId = 67L, + Id = 86L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/piperun/iploggerfilter/master/filterlist" + }, + new + { + FilterListId = 67L, + Id = 87L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitcdn.link/repo/piperun/iploggerfilter/master/filterlist" + }, + new + { + FilterListId = 68L, + Id = 88L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ilyakatz/adblock_filters/master/inpage_popups.txt" + }, + new + { + FilterListId = 68L, + Id = 89L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/ilyakatz/adblock_filters/master/inpage_popups.txt" + }, + new + { + FilterListId = 68L, + Id = 90L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/ilyakatz/adblock_filters/master/inpage_popups.txt" + }, + new + { + FilterListId = 69L, + Id = 91L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://adblock.gardar.net/is.abp.txt" + }, + new + { + FilterListId = 70L, + Id = 92L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Rudloff/adblock-imokwithcookies/master/filters.txt" + }, + new + { + FilterListId = 70L, + Id = 93L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/Rudloff/adblock-imokwithcookies/master/filters.txt" + }, + new + { + FilterListId = 70L, + Id = 94L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/Rudloff/adblock-imokwithcookies/master/filters.txt" + }, + new + { + FilterListId = 71L, + Id = 95L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.i-dont-care-about-cookies.eu/abp/" + }, + new + { + FilterListId = 72L, + Id = 96L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/hufilter/hufilter/master/hufilter.txt" + }, + new + { + FilterListId = 72L, + Id = 97L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://repo.or.cz/Adblock-list-backups-hufilter.git/blob_plain/refs/heads/master:/hufilter.txt" + }, + new + { + FilterListId = 72L, + Id = 98L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/hufilter/hufilter/master/hufilter.txt" + }, + new + { + FilterListId = 78L, + Id = 99L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn/hosts" + }, + new + { + FilterListId = 78L, + Id = 100L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://sbc.io/hosts/alternates/gambling-porn/hosts" + }, + new + { + FilterListId = 78L, + Id = 101L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/gambling-porn/hosts" + }, + new + { + FilterListId = 79L, + Id = 102L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling/hosts" + }, + new + { + FilterListId = 79L, + Id = 103L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://sbc.io/hosts/alternates/gambling/hosts" + }, + new + { + FilterListId = 79L, + Id = 104L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/gambling/hosts" + }, + new + { + FilterListId = 80L, + Id = 105L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts" + }, + new + { + FilterListId = 80L, + Id = 106L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://sbc.io/hosts/hosts" + }, + new + { + FilterListId = 80L, + Id = 107L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/hosts" + }, + new + { + FilterListId = 81L, + Id = 108L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/UncheckyAds/hosts" + }, + new + { + FilterListId = 81L, + Id = 109L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/data/UncheckyAds/hosts" + }, + new + { + FilterListId = 81L, + Id = 110L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/data/UncheckyAds/hosts" + }, + new + { + FilterListId = 82L, + Id = 111L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/uBlock-user/uBO-Personal-Filters/master/uPF.txt" + }, + new + { + FilterListId = 82L, + Id = 112L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/uBlock-user/uBO-Personal-Filters/master/uPF.txt" + }, + new + { + FilterListId = 82L, + Id = 113L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/uBlock-user/uBO-Personal-Filters/master/uPF.txt" + }, + new + { + FilterListId = 83L, + Id = 114L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/NanoAdblocker/NanoFilters/master/NanoMirror/NanoDefender.txt" + }, + new + { + FilterListId = 83L, + Id = 115L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/NanoAdblocker/NanoFilters/master/NanoMirror/NanoDefender.txt" + }, + new + { + FilterListId = 84L, + Id = 116L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock_ublock.txt" + }, + new + { + FilterListId = 84L, + Id = 117L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock_ublock.txt" + }, + new + { + FilterListId = 84L, + Id = 118L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock_ublock.txt" + }, + new + { + FilterListId = 85L, + Id = 119L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/IDKwhattoputhere/uBlock-Filters-Plus/master/uBlock-Filters-Plus.txt" + }, + new + { + FilterListId = 85L, + Id = 120L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/IDKwhattoputhere/uBlock-Filters-Plus/master/uBlock-Filters-Plus.txt" + }, + new + { + FilterListId = 85L, + Id = 121L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/IDKwhattoputhere/uBlock-Filters-Plus/master/uBlock-Filters-Plus.txt" + }, + new + { + FilterListId = 86L, + Id = 122L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/byaka/ublock-antiskimming-list/master/build/data.txt" + }, + new + { + FilterListId = 86L, + Id = 123L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/byaka/ublock-antiskimming-list/master/build/data.txt" + }, + new + { + FilterListId = 86L, + Id = 124L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/byaka/ublock-antiskimming-list/master/build/data.txt" + }, + new + { + FilterListId = 87L, + Id = 125L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/unbreak.txt" + }, + new + { + FilterListId = 87L, + Id = 126L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/uBlockOrigin/uAssets/master/filters/unbreak.txt" + }, + new + { + FilterListId = 87L, + Id = 127L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/uBlockOrigin/uAssets/master/filters/unbreak.txt" + }, + new + { + FilterListId = 88L, + Id = 128L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/privacy.txt" + }, + new + { + FilterListId = 88L, + Id = 129L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/uBlockOrigin/uAssets/master/filters/privacy.txt" + }, + new + { + FilterListId = 88L, + Id = 130L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/uBlockOrigin/uAssets/master/filters/privacy.txt" + }, + new + { + FilterListId = 89L, + Id = 131L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/filters.txt" + }, + new + { + FilterListId = 89L, + Id = 132L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/uBlockOrigin/uAssets/master/filters/filters.txt" + }, + new + { + FilterListId = 89L, + Id = 133L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/uBlockOrigin/uAssets/master/filters/filters.txt" + }, + new + { + FilterListId = 91L, + Id = 137L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/badware.txt" + }, + new + { + FilterListId = 91L, + Id = 138L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/uBlockOrigin/uAssets/master/filters/badware.txt" + }, + new + { + FilterListId = 91L, + Id = 139L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/uBlockOrigin/uAssets/master/filters/badware.txt" + }, + new + { + FilterListId = 93L, + Id = 140L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-porn-social/hosts" + }, + new + { + FilterListId = 93L, + Id = 141L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://sbc.io/hosts/alternates/gambling-porn-social/hosts" + }, + new + { + FilterListId = 93L, + Id = 142L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/gambling-porn-social/hosts" + }, + new + { + FilterListId = 94L, + Id = 143L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.topcashback.com/Misc/AdBlockWhiteList.aspx" + }, + new + { + FilterListId = 95L, + Id = 144L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-social/hosts" + }, + new + { + FilterListId = 95L, + Id = 145L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://sbc.io/hosts/alternates/gambling-social/hosts" + }, + new + { + FilterListId = 95L, + Id = 146L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/gambling-social/hosts" + }, + new + { + FilterListId = 96L, + Id = 147L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-social/hosts" + }, + new + { + FilterListId = 96L, + Id = 148L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://sbc.io/hosts/alternates/porn-social/hosts" + }, + new + { + FilterListId = 96L, + Id = 149L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/porn-social/hosts" + }, + new + { + FilterListId = 97L, + Id = 151L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hg.adblockplus.org/youtubefilters/raw-file/default/yt_annoyances_full.txt" + }, + new + { + FilterListId = 98L, + Id = 153L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hg.adblockplus.org/youtubefilters/raw-file/default/yt_annoyances_other.txt" + }, + new + { + FilterListId = 99L, + Id = 154L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/yous/YousList/master/youslist.txt" + }, + new + { + FilterListId = 99L, + Id = 155L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/yous/YousList/master/youslist.txt" + }, + new + { + FilterListId = 99L, + Id = 156L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/yous/YousList/master/youslist.txt" + }, + new + { + FilterListId = 100L, + Id = 157L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/wiltteri/subscriptions/master/wiltteri-reborn.txt" + }, + new + { + FilterListId = 100L, + Id = 158L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/wiltteri/subscriptions/master/wiltteri-reborn.txt" + }, + new + { + FilterListId = 100L, + Id = 159L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/wiltteri/subscriptions/master/wiltteri-reborn.txt" + }, + new + { + FilterListId = 101L, + Id = 160L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/wiltteri/subscriptions/master/wiltteri.txt" + }, + new + { + FilterListId = 101L, + Id = 161L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/wiltteri/subscriptions/master/wiltteri.txt" + }, + new + { + FilterListId = 101L, + Id = 162L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/wiltteri/subscriptions/master/wiltteri.txt" + }, + new + { + FilterListId = 102L, + Id = 163L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/ultralist.txt" + }, + new + { + FilterListId = 102L, + Id = 164L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/yourduskquibbles/webannoyances/master/ultralist.txt" + }, + new + { + FilterListId = 102L, + Id = 165L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/yourduskquibbles/webannoyances/master/ultralist.txt" + }, + new + { + FilterListId = 103L, + Id = 166L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn-social/hosts" + }, + new + { + FilterListId = 103L, + Id = 167L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://sbc.io/hosts/alternates/fakenews-gambling-porn-social/hosts" + }, + new + { + FilterListId = 103L, + Id = 168L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-gambling-porn-social/hosts" + }, + new + { + FilterListId = 104L, + Id = 169L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn-social/hosts" + }, + new + { + FilterListId = 104L, + Id = 170L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://sbc.io/hosts/alternates/fakenews-porn-social/hosts" + }, + new + { + FilterListId = 104L, + Id = 171L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-porn-social/hosts" + }, + new + { + FilterListId = 105L, + Id = 172L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-social/hosts" + }, + new + { + FilterListId = 105L, + Id = 173L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://sbc.io/hosts/alternates/fakenews-gambling-social/hosts" + }, + new + { + FilterListId = 105L, + Id = 174L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-gambling-social/hosts" + }, + new + { + FilterListId = 106L, + Id = 175L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts" + }, + new + { + FilterListId = 106L, + Id = 176L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://sbc.io/hosts/alternates/fakenews-gambling-porn/hosts" + }, + new + { + FilterListId = 106L, + Id = 177L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-gambling-porn/hosts" + }, + new + { + FilterListId = 107L, + Id = 178L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-social/hosts" + }, + new + { + FilterListId = 107L, + Id = 179L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://sbc.io/hosts/alternates/fakenews-social/hosts" + }, + new + { + FilterListId = 107L, + Id = 180L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-social/hosts" + }, + new + { + FilterListId = 108L, + Id = 181L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-porn/hosts" + }, + new + { + FilterListId = 108L, + Id = 182L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://sbc.io/hosts/alternates/fakenews-porn/hosts" + }, + new + { + FilterListId = 108L, + Id = 183L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-porn/hosts" + }, + new + { + FilterListId = 109L, + Id = 184L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling/hosts" + }, + new + { + FilterListId = 109L, + Id = 185L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://sbc.io/hosts/alternates/fakenews-gambling/hosts" + }, + new + { + FilterListId = 109L, + Id = 186L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews-gambling/hosts" + }, + new + { + FilterListId = 110L, + Id = 187L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews/hosts" + }, + new + { + FilterListId = 110L, + Id = 188L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://sbc.io/hosts/alternates/fakenews/hosts" + }, + new + { + FilterListId = 110L, + Id = 189L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/fakenews/hosts" + }, + new + { + FilterListId = 111L, + Id = 190L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social/hosts" + }, + new + { + FilterListId = 111L, + Id = 191L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://sbc.io/hosts/alternates/social/hosts" + }, + new + { + FilterListId = 111L, + Id = 192L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/social/hosts" + }, + new + { + FilterListId = 112L, + Id = 193L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts" + }, + new + { + FilterListId = 112L, + Id = 194L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://sbc.io/hosts/alternates/porn/hosts" + }, + new + { + FilterListId = 112L, + Id = 195L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/alternates/porn/hosts" + }, + new + { + FilterListId = 113L, + Id = 196L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tofukko/filter/master/Adblock_Plus_list.txt" + }, + new + { + FilterListId = 114L, + Id = 197L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/thoughtconverge/abf/master/abf.txt" + }, + new + { + FilterListId = 114L, + Id = 198L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/thoughtconverge/abf/master/abf.txt" + }, + new + { + FilterListId = 114L, + Id = 199L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/thoughtconverge/abf/master/abf.txt" + }, + new + { + FilterListId = 115L, + Id = 200L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hostsfile.mine.nu/hosts0.txt" + }, + new + { + FilterListId = 116L, + Id = 201L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.zoso.ro/pages/rolist2.txt" + }, + new + { + FilterListId = 117L, + Id = 202L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/rolist+easylist.txt" + }, + new + { + FilterListId = 118L, + Id = 203L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.zoso.ro/pages/rolist.txt" + }, + new + { + FilterListId = 119L, + Id = 204L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://road.adblock.ro/lista.txt" + }, + new + { + FilterListId = 119L, + Id = 205L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tcptomato/ROad-Block/master/road-block-filters-light.txt" + }, + new + { + FilterListId = 119L, + Id = 206L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/tcptomato/ROad-Block/master/road-block-filters-light.txt" + }, + new + { + FilterListId = 131L, + Id = 207L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/advblock.txt" + }, + new + { + FilterListId = 132L, + Id = 208L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://denis-ovs.narod.ru/adblock.txt" + }, + new + { + FilterListId = 133L, + Id = 209L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/ruadlist+easylist.txt" + }, + new + { + FilterListId = 134L, + Id = 210L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/bitblock.txt" + }, + new + { + FilterListId = 135L, + Id = 211L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hostsfile.mine.nu/downloads/adblock.txt" + }, + new + { + FilterListId = 136L, + Id = 212L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/betterwebleon/slovenian-list/master/filters.txt" + }, + new + { + FilterListId = 136L, + Id = 213L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/betterwebleon/slovenian-list/master/filters.txt" + }, + new + { + FilterListId = 136L, + Id = 214L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/betterwebleon/slovenian-list/master/filters.txt" + }, + new + { + FilterListId = 137L, + Id = 215L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/data/StevenBlack/hosts" + }, + new + { + FilterListId = 137L, + Id = 216L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/StevenBlack/hosts/master/data/StevenBlack/hosts" + }, + new + { + FilterListId = 137L, + Id = 217L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/StevenBlack/hosts/raw/master/data/StevenBlack/hosts" + }, + new + { + FilterListId = 139L, + Id = 221L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Spam404/lists/master/main-blacklist.txt" + }, + new + { + FilterListId = 139L, + Id = 222L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/Spam404/lists/master/main-blacklist.txt" + }, + new + { + FilterListId = 139L, + Id = 223L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/Spam404/lists/master/main-blacklist.txt" + }, + new + { + FilterListId = 140L, + Id = 224L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Spam404/lists/master/adblock-list.txt" + }, + new + { + FilterListId = 140L, + Id = 225L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/Spam404/lists/master/adblock-list.txt" + }, + new + { + FilterListId = 140L, + Id = 226L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/Spam404/lists/master/adblock-list.txt" + }, + new + { + FilterListId = 141L, + Id = 227L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://shopping.mileageplus.com/adBlockWhitelist.php" + }, + new + { + FilterListId = 142L, + Id = 228L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://web.archive.org/web/20160221140104if_/http://adblock.gjtech.net/?format=adblock-plus" + }, + new + { + FilterListId = 143L, + Id = 229L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://rapidrewardsshopping.southwest.com/adBlockWhitelist.php" + }, + new + { + FilterListId = 144L, + Id = 230L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.aadvantageeshopping.com/adBlockWhitelist.php" + }, + new + { + FilterListId = 145L, + Id = 231L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.mileageplanshopping.com/adBlockWhitelist.php" + }, + new + { + FilterListId = 146L, + Id = 232L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://web.archive.org/web/20121106002043if_/http://www.schuzak.jp:80/other/abp.conf" + }, + new + { + FilterListId = 147L, + Id = 233L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://adblock.dk/block.csv" + }, + new + { + FilterListId = 147L, + Id = 234L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://adblock.schack.dk/block.txt" + }, + new + { + FilterListId = 150L, + Id = 235L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/cntblock.txt" + }, + new + { + FilterListId = 151L, + Id = 236L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.barclaycardrewardsboost.com/adBlockWhitelist.php" + }, + new + { + FilterListId = 152L, + Id = 237L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://pastebin.com/raw/r9a5WrZa" + }, + new + { + FilterListId = 155L, + Id = 238L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/chromium/filters/10.txt" + }, + new + { + FilterListId = 156L, + Id = 239L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/chromium/filters/13.txt" + }, + new + { + FilterListId = 157L, + Id = 240L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/chromium/filters/3.txt" + }, + new + { + FilterListId = 158L, + Id = 241L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/chromium/filters/9.txt" + }, + new + { + FilterListId = 159L, + Id = 242L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/chromium/filters/4.txt" + }, + new + { + FilterListId = 160L, + Id = 243L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/mac/filters/12.txt" + }, + new + { + FilterListId = 161L, + Id = 244L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/chromium/filters/1.txt" + }, + new + { + FilterListId = 162L, + Id = 245L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/android/filters/11.txt" + }, + new + { + FilterListId = 163L, + Id = 246L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/chromium/filters/7.txt" + }, + new + { + FilterListId = 164L, + Id = 247L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/chromium/filters/6.txt" + }, + new + { + FilterListId = 165L, + Id = 248L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/chromium/filters/5.txt" + }, + new + { + FilterListId = 166L, + Id = 249L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/chromium/filters/2.txt" + }, + new + { + FilterListId = 167L, + Id = 250L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/chromium/filters/8.txt" + }, + new + { + FilterListId = 168L, + Id = 251L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/windows/filters/15.txt" + }, + new + { + FilterListId = 169L, + Id = 252L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/chromium/filters/14.txt" + }, + new + { + FilterListId = 170L, + Id = 253L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hg.adblockplus.org/adwarefilters/raw-file/tip/adwarefilters.txt" + }, + new + { + FilterListId = 171L, + Id = 254L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://dl.dropboxusercontent.com/s/1ybzw9lb7m1qiyl/AAs.txt" + }, + new + { + FilterListId = 173L, + Id = 255L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://rlwpx.free.fr/WPFF/hmis.7z" + }, + new + { + FilterListId = 175L, + Id = 256L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/r4vi/block-the-eu-cookie-shit-list/master/filterlist.txt" + }, + new + { + FilterListId = 175L, + Id = 257L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/r4vi/block-the-eu-cookie-shit-list/master/filterlist.txt" + }, + new + { + FilterListId = 175L, + Id = 258L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/r4vi/block-the-eu-cookie-shit-list/master/filterlist.txt" + }, + new + { + FilterListId = 176L, + Id = 259L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/anarki999/Adblock-List-Archive/master/Better.fyiTrackersBlocklist.txt" + }, + new + { + FilterListId = 176L, + Id = 260L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/anarki999/Adblock-List-Archive/master/Better.fyiTrackersBlocklist.txt" + }, + new + { + FilterListId = 176L, + Id = 261L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/anarki999/Adblock-List-Archive/master/Better.fyiTrackersBlocklist.txt" + }, + new + { + FilterListId = 177L, + Id = 262L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://paulgb.github.io/BarbBlock/blacklists/hosts-file.txt" + }, + new + { + FilterListId = 178L, + Id = 263L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/rebelion76/bankiru_plus_adblock_list/master/bankiru_plus.txt" + }, + new + { + FilterListId = 178L, + Id = 264L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/rebelion76/bankiru_plus_adblock_list/master/bankiru_plus.txt" + }, + new + { + FilterListId = 178L, + Id = 265L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/rebelion76/bankiru_plus_adblock_list/master/bankiru_plus.txt" + }, + new + { + FilterListId = 179L, + Id = 266L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.hostsfile.org/Downloads/hosts.txt" + }, + new + { + FilterListId = 181L, + Id = 267L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://git.sourceforge.jp/view?p=ayucat-list/ayucat-list.git;a=blob_plain;f=ayucat-list.txt;hb=b254c74c132832a3ade7b9d42c2ef8d3dd59fdb9" + }, + new + { + FilterListId = 181L, + Id = 268L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Ayucat Powerful List.txt" + }, + new + { + FilterListId = 183L, + Id = 269L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yhonay/antipopads/master/popads.txt" + }, + new + { + FilterListId = 183L, + Id = 270L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/Yhonay/antipopads/master/popads.txt" + }, + new + { + FilterListId = 183L, + Id = 271L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/Yhonay/antipopads/master/popads.txt" + }, + new + { + FilterListId = 184L, + Id = 272L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/fanboy-antifacebook.txt" + }, + new + { + FilterListId = 185L, + Id = 273L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://rlwpx.free.fr/WPFF/hblc.7z" + }, + new + { + FilterListId = 186L, + Id = 274L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://rlwpx.free.fr/WPFF/hrsk.7z" + }, + new + { + FilterListId = 186L, + Id = 275L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/Airelle-hrsk.txt" + }, + new + { + FilterListId = 187L, + Id = 276L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://rlwpx.free.fr/WPFF/htrc.7z" + }, + new + { + FilterListId = 187L, + Id = 277L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/Airelle-trc.txt" + }, + new + { + FilterListId = 188L, + Id = 278L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://rlwpx.free.fr/WPFF/hsex.7z" + }, + new + { + FilterListId = 189L, + Id = 279L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://rlwpx.free.fr/WPFF/hpub.7z" + }, + new + { + FilterListId = 190L, + Id = 280L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.Spam/hosts" + }, + new + { + FilterListId = 190L, + Id = 281L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/FadeMind/hosts.extras/master/add.Spam/hosts" + }, + new + { + FilterListId = 190L, + Id = 282L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitcdn.link/repo/FadeMind/hosts.extras/master/add.Spam/hosts" + }, + new + { + FilterListId = 191L, + Id = 283L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.Risk/hosts" + }, + new + { + FilterListId = 191L, + Id = 284L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/FadeMind/hosts.extras/master/add.Risk/hosts" + }, + new + { + FilterListId = 191L, + Id = 285L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitcdn.link/repo/FadeMind/hosts.extras/master/add.Risk/hosts" + }, + new + { + FilterListId = 192L, + Id = 286L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.Dead/hosts" + }, + new + { + FilterListId = 192L, + Id = 287L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/FadeMind/hosts.extras/master/add.Dead/hosts" + }, + new + { + FilterListId = 192L, + Id = 288L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitcdn.link/repo/FadeMind/hosts.extras/master/add.Dead/hosts" + }, + new + { + FilterListId = 197L, + Id = 289L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/abpindo+easylist.txt" + }, + new + { + FilterListId = 198L, + Id = 290L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ABPindo/indonesianadblockrules/master/subscriptions/abpindo.txt" + }, + new + { + FilterListId = 198L, + Id = 291L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/heradhis/indonesianadblockrules/master/subscriptions/abpindo.txt" + }, + new + { + FilterListId = 198L, + Id = 292L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/ABPindo/indonesianadblockrules/master/subscriptions/abpindo.txt" + }, + new + { + FilterListId = 199L, + Id = 293L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/gioxx/xfiles/master/facebook.txt" + }, + new + { + FilterListId = 199L, + Id = 294L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/gioxx/xfiles/master/facebook.txt" + }, + new + { + FilterListId = 199L, + Id = 295L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/gioxx/xfiles/master/facebook.txt" + }, + new + { + FilterListId = 200L, + Id = 296L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/gioxx/xfiles/master/siteblock.txt" + }, + new + { + FilterListId = 200L, + Id = 297L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/gioxx/xfiles/master/siteblock.txt" + }, + new + { + FilterListId = 200L, + Id = 298L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/gioxx/xfiles/master/siteblock.txt" + }, + new + { + FilterListId = 201L, + Id = 299L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/gioxx/xfiles/master/filtri.txt" + }, + new + { + FilterListId = 201L, + Id = 300L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/gioxx/xfiles/master/filtri.txt" + }, + new + { + FilterListId = 201L, + Id = 301L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/gioxx/xfiles/master/filtri.txt" + }, + new + { + FilterListId = 202L, + Id = 302L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/k2jp/abp-japanese-filters/master/abpjf_paranoid.txt" + }, + new + { + FilterListId = 202L, + Id = 303L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/k2jp/abp-japanese-filters/master/abpjf_paranoid.txt" + }, + new + { + FilterListId = 202L, + Id = 304L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/k2jp/abp-japanese-filters/master/abpjf_paranoid.txt" + }, + new + { + FilterListId = 203L, + Id = 305L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/k2jp/abp-japanese-filters/master/abpjf.txt" + }, + new + { + FilterListId = 203L, + Id = 306L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/k2jp/abp-japanese-filters/master/abpjf.txt" + }, + new + { + FilterListId = 203L, + Id = 307L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/k2jp/abp-japanese-filters/master/abpjf.txt" + }, + new + { + FilterListId = 204L, + Id = 308L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/k2jp/abp-japanese-filters/master/abpjf_element_hiding.txt" + }, + new + { + FilterListId = 204L, + Id = 309L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/k2jp/abp-japanese-filters/master/abpjf_element_hiding.txt" + }, + new + { + FilterListId = 204L, + Id = 310L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/k2jp/abp-japanese-filters/master/abpjf_element_hiding.txt" + }, + new + { + FilterListId = 205L, + Id = 311L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/k2jp/abp-japanese-filters/master/abpjf_3rd_party_sns.txt" + }, + new + { + FilterListId = 205L, + Id = 312L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/k2jp/abp-japanese-filters/master/abpjf_3rd_party_sns.txt" + }, + new + { + FilterListId = 205L, + Id = 313L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/k2jp/abp-japanese-filters/master/abpjf_3rd_party_sns.txt" + }, + new + { + FilterListId = 206L, + Id = 314L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/abpvn/abpvn/master/filter/abpvn.txt" + }, + new + { + FilterListId = 206L, + Id = 315L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/abpvn/abpvn/master/filter/abpvn.txt" + }, + new + { + FilterListId = 206L, + Id = 316L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/abpvn/abpvn/master/filter/abpvn.txt" + }, + new + { + FilterListId = 207L, + Id = 317L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/reek/anti-adblock-killer/master/anti-adblock-killer-filters.txt" + }, + new + { + FilterListId = 207L, + Id = 318L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/reek/anti-adblock-killer/master/anti-adblock-killer-filters.txt" + }, + new + { + FilterListId = 207L, + Id = 319L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/reek/anti-adblock-killer/master/anti-adblock-killer-filters.txt" + }, + new + { + FilterListId = 212L, + Id = 320L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.2o7Net/hosts" + }, + new + { + FilterListId = 212L, + Id = 321L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/FadeMind/hosts.extras/master/add.2o7Net/hosts" + }, + new + { + FilterListId = 212L, + Id = 322L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitcdn.link/repo/FadeMind/hosts.extras/master/add.2o7Net/hosts" + }, + new + { + FilterListId = 213L, + Id = 323L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kbinani/adblock-youtube-ads/master/signed.txt" + }, + new + { + FilterListId = 213L, + Id = 324L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/kbinani/adblock-youtube-ads/master/signed.txt" + }, + new + { + FilterListId = 213L, + Id = 325L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/kbinani/adblock-youtube-ads/master/signed.txt" + }, + new + { + FilterListId = 214L, + Id = 326L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/antiadblockfilters.txt" + }, + new + { + FilterListId = 215L, + Id = 327L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/adblockpolska/Adblock_PL_List/master/adblock_polska.txt" + }, + new + { + FilterListId = 215L, + Id = 328L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/adblockpolska/Adblock_PL_List/master/adblock_polska.txt" + }, + new + { + FilterListId = 215L, + Id = 329L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/adblockpolska/Adblock_PL_List/master/adblock_polska.txt" + }, + new + { + FilterListId = 216L, + Id = 330L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/adblock_social_filters/adblock_social_list.txt" + }, + new + { + FilterListId = 216L, + Id = 331L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/MajkiIT/polish-ads-filter/master/adblock_social_filters/adblock_social_list.txt" + }, + new + { + FilterListId = 216L, + Id = 332L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/MajkiIT/polish-ads-filter/master/adblock_social_filters/adblock_social_list.txt" + }, + new + { + FilterListId = 217L, + Id = 333L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://ideone.com/plain/K452p" + }, + new + { + FilterListId = 220L, + Id = 334L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://web.archive.org/web/20160411115130if_/http://adblock-korea.googlecode.com:80/git/adblock-korea.txt" + }, + new + { + FilterListId = 221L, + Id = 335L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gurud.ee/ab.txt" + }, + new + { + FilterListId = 222L, + Id = 336L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/SlashArash/adblockfa/master/adblockfa.txt" + }, + new + { + FilterListId = 222L, + Id = 337L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/SlashArash/adblockfa/master/adblockfa.txt" + }, + new + { + FilterListId = 222L, + Id = 338L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/SlashArash/adblockfa/master/adblockfa.txt" + }, + new + { + FilterListId = 223L, + Id = 339L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock.txt" + }, + new + { + FilterListId = 223L, + Id = 340L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock.txt" + }, + new + { + FilterListId = 223L, + Id = 341L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock.txt" + }, + new + { + FilterListId = 224L, + Id = 342L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/cookies_filters/adblock_cookies.txt" + }, + new + { + FilterListId = 224L, + Id = 343L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/MajkiIT/polish-ads-filter/master/cookies_filters/adblock_cookies.txt" + }, + new + { + FilterListId = 224L, + Id = 344L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/MajkiIT/polish-ads-filter/master/cookies_filters/adblock_cookies.txt" + }, + new + { + FilterListId = 225L, + Id = 345L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://sites.google.com/site/logroid/files/hosts.txt?attredirects=0" + }, + new + { + FilterListId = 226L, + Id = 346L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://adaway.org/hosts.txt" + }, + new + { + FilterListId = 227L, + Id = 347L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/exceptionrules.txt" + }, + new + { + FilterListId = 228L, + Id = 348L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/farrokhi/adblock-iran/master/filter.txt" + }, + new + { + FilterListId = 228L, + Id = 349L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/farrokhi/adblock-iran/master/filter.txt" + }, + new + { + FilterListId = 229L, + Id = 351L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hg.adblockplus.org/youtubefilters/raw-file/default/yt_annoyances_comments.txt" + }, + new + { + FilterListId = 232L, + Id = 352L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ryanbr/fanboy-adblock/master/fake-news.txt" + }, + new + { + FilterListId = 233L, + Id = 354L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hg.adblockplus.org/facebookfilters/raw-file/default/fb_annoyances_sidebar.txt" + }, + new + { + FilterListId = 234L, + Id = 355L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://www.squirrelconspiracy.net/abp/facebook-privacy-list.txt" + }, + new + { + FilterListId = 234L, + Id = 356L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Facebook Privacy List.txt" + }, + new + { + FilterListId = 235L, + Id = 358L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hg.adblockplus.org/facebookfilters/raw-file/default/fb_annoyances_newsfeed.txt" + }, + new + { + FilterListId = 236L, + Id = 360L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hg.adblockplus.org/facebookfilters/raw-file/default/fb_annoyances_full.txt" + }, + new + { + FilterListId = 237L, + Id = 361L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://adblock.ee/list.php" + }, + new + { + FilterListId = 238L, + Id = 362L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.ebates.com/whitelist/ebates-cash-back-shopping.txt" + }, + new + { + FilterListId = 239L, + Id = 363L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easytest.txt" + }, + new + { + FilterListId = 240L, + Id = 364L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easyprivacy_nointernational.txt" + }, + new + { + FilterListId = 241L, + Id = 365L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easyprivacy+easylist.txt" + }, + new + { + FilterListId = 242L, + Id = 366L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist.to/easylist/easyprivacy.txt" + }, + new + { + FilterListId = 242L, + Id = 367L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/easyprivacy.txt" + }, + new + { + FilterListId = 242L, + Id = 368L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easyprivacy.txt" + }, + new + { + FilterListId = 243L, + Id = 369L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylist_noadult.txt" + }, + new + { + FilterListId = 244L, + Id = 370L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylist_noelemhide.txt" + }, + new + { + FilterListId = 245L, + Id = 371L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/easylist-thailand/easylist-thailand/master/subscription/easylist-thailand.txt" + }, + new + { + FilterListId = 246L, + Id = 372L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistspanish.txt" + }, + new + { + FilterListId = 247L, + Id = 373L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/fanboy-annoyance.txt" + }, + new + { + FilterListId = 247L, + Id = 374L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/fanboy-annoyance.txt" + }, + new + { + FilterListId = 247L, + Id = 375L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://easylist.to/easylist/fanboy-annoyance.txt" + }, + new + { + FilterListId = 248L, + Id = 376L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistlithuania+easylist.txt" + }, + new + { + FilterListId = 249L, + Id = 377L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/fanboy-antifonts.txt" + }, + new + { + FilterListId = 250L, + Id = 378L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylist-cookie.txt" + }, + new + { + FilterListId = 251L, + Id = 380L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mozillahispano/nauscopio-filtros/master/filtros.txt" + }, + new + { + FilterListId = 252L, + Id = 381L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filtri-dns.ga/filtri.txt" + }, + new + { + FilterListId = 253L, + Id = 382L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/hant0508/uBlock-filters/master/filters.txt" + }, + new + { + FilterListId = 254L, + Id = 383L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/fanboy-vietnam.txt" + }, + new + { + FilterListId = 255L, + Id = 384L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/r/fanboy-ultimate.txt" + }, + new + { + FilterListId = 256L, + Id = 385L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/fanboy-turkish.txt" + }, + new + { + FilterListId = 257L, + Id = 386L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/fanboy-swedish.txt" + }, + new + { + FilterListId = 258L, + Id = 387L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/fanboy-espanol.txt" + }, + new + { + FilterListId = 259L, + Id = 388L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/fanboy-social.txt" + }, + new + { + FilterListId = 259L, + Id = 389L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/fanboy-social.txt" + }, + new + { + FilterListId = 260L, + Id = 390L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/fanboy-polish.txt" + }, + new + { + FilterListId = 261L, + Id = 391L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/fanboy-korean.txt" + }, + new + { + FilterListId = 262L, + Id = 392L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/fanboy-japanese.txt" + }, + new + { + FilterListId = 263L, + Id = 393L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/israelilist/IsraelList.txt" + }, + new + { + FilterListId = 264L, + Id = 394L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/fanboy-indian.txt" + }, + new + { + FilterListId = 265L, + Id = 395L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/enhancedstats.txt" + }, + new + { + FilterListId = 266L, + Id = 396L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/r/fanboy-complete.txt" + }, + new + { + FilterListId = 267L, + Id = 397L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/EasyList-Lithuania/easylist_lithuania/master/easylistlithuania.txt" + }, + new + { + FilterListId = 268L, + Id = 398L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cjx82630/cjxlist/master/cjxlist.txt" + }, + new + { + FilterListId = 268L, + Id = 399L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitee.com/cjx82630/cjxlist/raw/master/cjxlist.txt" + }, + new + { + FilterListId = 269L, + Id = 400L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistitaly+easylist.txt" + }, + new + { + FilterListId = 272L, + Id = 403L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://s3.amazonaws.com/lists.disconnect.me/simple_tracking.txt" + }, + new + { + FilterListId = 274L, + Id = 404L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://s3.amazonaws.com/lists.disconnect.me/simple_malvertising.txt" + }, + new + { + FilterListId = 275L, + Id = 405L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://s3.amazonaws.com/lists.disconnect.me/simple_ad.txt" + }, + new + { + FilterListId = 276L, + Id = 406L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://someonewhocares.org/hosts/zero/hosts" + }, + new + { + FilterListId = 276L, + Id = 407L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/data/someonewhocares.org/hosts" + }, + new + { + FilterListId = 277L, + Id = 408L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Czech Filters for Adblock Plus" + }, + new + { + FilterListId = 278L, + Id = 409L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nicedirector/ADBlock/master/Adblock_Filter.txt" + }, + new + { + FilterListId = 279L, + Id = 410L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.eff.org/files/cookieblocklist.txt" + }, + new + { + FilterListId = 280L, + Id = 411L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cpeterso/clickbait-blocklist/master/clickbait-blocklist.txt" + }, + new + { + FilterListId = 281L, + Id = 412L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cjx82630/cjxlist/master/cjx-annoyance.txt" + }, + new + { + FilterListId = 281L, + Id = 413L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitee.com/cjx82630/cjxlist/raw/master/cjx-annoyance.txt" + }, + new + { + FilterListId = 282L, + Id = 414L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://sysctl.org/cameleon/hosts" + }, + new + { + FilterListId = 283L, + Id = 415L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/bulgarian_list+easylist.txt" + }, + new + { + FilterListId = 284L, + Id = 416L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://stanev.org/abp/adblock_bg.txt" + }, + new + { + FilterListId = 285L, + Id = 417L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://malwaredomains.lehigh.edu/files/dynamic_dns.txt" + }, + new + { + FilterListId = 288L, + Id = 422L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://malwaredomains.lehigh.edu/files/immortal_domains.txt" + }, + new + { + FilterListId = 289L, + Id = 424L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistitaly.txt" + }, + new + { + FilterListId = 290L, + Id = 425L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/israellist+easylist.txt" + }, + new + { + FilterListId = 291L, + Id = 426L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/easylist/EasyListHebrew/master/EasyListHebrew.txt" + }, + new + { + FilterListId = 292L, + Id = 427L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistgermany+easylist.txt" + }, + new + { + FilterListId = 293L, + Id = 428L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistgermany.txt" + }, + new + { + FilterListId = 293L, + Id = 429L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://easylist.to/easylistgermany/easylistgermany.txt" + }, + new + { + FilterListId = 294L, + Id = 430L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistdutch+easylist.txt" + }, + new + { + FilterListId = 295L, + Id = 431L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistdutch.txt" + }, + new + { + FilterListId = 297L, + Id = 432L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistczechslovak+easylist.txt" + }, + new + { + FilterListId = 298L, + Id = 433L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nfer/easylistchina_it/master/easylistchina_it.txt" + }, + new + { + FilterListId = 299L, + Id = 434L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistchina+easylist.txt" + }, + new + { + FilterListId = 300L, + Id = 435L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistchina.txt" + }, + new + { + FilterListId = 301L, + Id = 436L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist.to/easylist/easylist.txt" + }, + new + { + FilterListId = 301L, + Id = 437L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/easylist.txt" + }, + new + { + FilterListId = 301L, + Id = 438L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylist.txt" + }, + new + { + FilterListId = 302L, + Id = 439L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://feeds.dshield.org/block.txt" + }, + new + { + FilterListId = 305L, + Id = 442L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tomasko126/easylistczechandslovak/master/filters.txt" + }, + new + { + FilterListId = 306L, + Id = 444L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hg.adblockplus.org/youtubefilters/raw-file/default/yt_annoyances_suggestions.txt" + }, + new + { + FilterListId = 307L, + Id = 445L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/taylr/linkedinsanity/master/spies-dislike-us.txt" + }, + new + { + FilterListId = 308L, + Id = 446L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/hoshsadiq/adblock-nocoin-list/master/hosts.txt" + }, + new + { + FilterListId = 309L, + Id = 447L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/complete/hosts.txt" + }, + new + { + FilterListId = 311L, + Id = 448L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/elypter/generic_annoying_stickybar_filter/master/generic_header_list.txt" + }, + new + { + FilterListId = 312L, + Id = 449L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/elypter/filter_processor/master/generated_filterlists/blockhead(decoy_generic_extraction).txt" + }, + new + { + FilterListId = 313L, + Id = 450L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/elypter/filter_processor/master/generated_filterlists/blockhead(decoy_generic_selection).txt" + }, + new + { + FilterListId = 315L, + Id = 451L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://alleblock.pl/alleblock/alleblock.txt" + }, + new + { + FilterListId = 316L, + Id = 452L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bkrucarci/turk-adlist/master/hosts" + }, + new + { + FilterListId = 317L, + Id = 453L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/anudeepND/blacklist/master/adservers.txt" + }, + new + { + FilterListId = 318L, + Id = 454L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/anudeepND/blacklist/master/CoinMiner.txt" + }, + new + { + FilterListId = 319L, + Id = 455L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/anudeepND/youtubeadsblacklist/master/domainlist.txt" + }, + new + { + FilterListId = 320L, + Id = 456L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/anudeepND/youtubeadsblacklist/master/hosts.txt" + }, + new + { + FilterListId = 321L, + Id = 457L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/anudeepND/whitelist/master/domains/whitelist.txt" + }, + new + { + FilterListId = 322L, + Id = 458L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/anudeepND/whitelist/master/domains/referral-sites.txt" + }, + new + { + FilterListId = 323L, + Id = 459L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/anudeepND/whitelist/master/domains/optional-list.txt" + }, + new + { + FilterListId = 324L, + Id = 460L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/arcetera/Minimal-Hosts-Blocker/master/etc/MinimalHostsBlocker/minimalhosts" + }, + new + { + FilterListId = 325L, + Id = 461L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bjornstar/hosts/master/hosts" + }, + new + { + FilterListId = 327L, + Id = 462L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/stayingonbrowser/Staying On The Phone Browser" + }, + new + { + FilterListId = 327L, + Id = 463L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/stayingonbrowser/Staying On The Phone Browser" + }, + new + { + FilterListId = 329L, + Id = 464L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/VeleSila/yhosts/master/hosts.txt" + }, + new + { + FilterListId = 330L, + Id = 465L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/ThaiConsentHosts/master/ThaiConsentHosts.txt" + }, + new + { + FilterListId = 330L, + Id = 466L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/ThaiConsentHosts/raw/master/ThaiConsentHosts.txt" + }, + new + { + FilterListId = 331L, + Id = 467L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/ThaiParanoidBlock/master/ThaiParanoid.txt" + }, + new + { + FilterListId = 331L, + Id = 468L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/ThaiParanoidBlock/raw/master/ThaiParanoid.txt" + }, + new + { + FilterListId = 332L, + Id = 469L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/ThaiAntiForceLike/master/AntiForceLike.txt" + }, + new + { + FilterListId = 333L, + Id = 470L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/pureexe/LeeCh-List/master/anime.txt" + }, + new + { + FilterListId = 334L, + Id = 471L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://warui.intaa.net/adhosts/hosts.txt" + }, + new + { + FilterListId = 335L, + Id = 472L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/multiverse2011/adawaylist-jp/master/hosts" + }, + new + { + FilterListId = 336L, + Id = 473L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://sites.google.com/site/cosmonoteshosts/hosts_for_Windows8.txt" + }, + new + { + FilterListId = 337L, + Id = 474L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://sites.google.com/site/cosmonoteshosts/hosts_for_Adaway.txt" + }, + new + { + FilterListId = 338L, + Id = 475L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://sites.google.com/site/cosmonoteshosts/hosts_Ultimate.txt" + }, + new + { + FilterListId = 339L, + Id = 476L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Lerist/Go-Hosts/master/hosts-ad" + }, + new + { + FilterListId = 340L, + Id = 477L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Lerist/Go-Hosts/master/hosts" + }, + new + { + FilterListId = 341L, + Id = 478L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/adblock_social_filters/social_filters_uB_AG.txt" + }, + new + { + FilterListId = 343L, + Id = 480L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/cookies_filters/cookies_uB_AG.txt" + }, + new + { + FilterListId = 345L, + Id = 482L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock_adguard.txt" + }, + new + { + FilterListId = 346L, + Id = 483L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-adblock-filters/adblock_test.txt" + }, + new + { + FilterListId = 347L, + Id = 484L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-pihole-filters/hostfile.txt" + }, + new + { + FilterListId = 348L, + Id = 485L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://vxvault.net/URL_List.php" + }, + new + { + FilterListId = 349L, + Id = 486L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/KADhosts/master/KADhosts_without_controversies.txt" + }, + new + { + FilterListId = 349L, + Id = 487L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/FiltersHeroes/KADhosts/master/KADhosts_without_controversies.txt" + }, + new + { + FilterListId = 349L, + Id = 488L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/FiltersHeroes/KADhosts/master/KADhosts_without_controversies.txt" + }, + new + { + FilterListId = 350L, + Id = 489L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/chromium/filters/16.txt" + }, + new + { + FilterListId = 352L, + Id = 490L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eladkarako/hosts/master/build/hosts_adblock.txt" + }, + new + { + FilterListId = 353L, + Id = 491L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eladkarako/hosts/master/build/hosts_adblock_anti_annoyances_block.txt" + }, + new + { + FilterListId = 354L, + Id = 492L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eladkarako/hosts/master/build/hosts_adblock_anti_annoyances_block_inline_script.txt" + }, + new + { + FilterListId = 355L, + Id = 493L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eladkarako/hosts/master/build/hosts_adblock_anti_annoyances_hide.txt" + }, + new + { + FilterListId = 356L, + Id = 494L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eladkarako/hosts/master/build/hosts_adblock_anti_annoyances_style_inject.txt" + }, + new + { + FilterListId = 357L, + Id = 495L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/list.txt" + }, + new + { + FilterListId = 358L, + Id = 496L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/list_optional.txt" + }, + new + { + FilterListId = 359L, + Id = 497L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/list_browser.txt" + }, + new + { + FilterListId = 360L, + Id = 498L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/hosts" + }, + new + { + FilterListId = 361L, + Id = 499L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/hosts_optional" + }, + new + { + FilterListId = 362L, + Id = 500L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/hosts_browser" + }, + new + { + FilterListId = 363L, + Id = 501L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/list_browser_UBO.txt" + }, + new + { + FilterListId = 367L, + Id = 502L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/uMatrix-Rules/uMatrix-Rules-Domain/master/rules.txt" + }, + new + { + FilterListId = 368L, + Id = 503L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/uMatrix-Rules/uMatrix-Rules-Site/master/rules.txt" + }, + new + { + FilterListId = 369L, + Id = 504L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tomasko126/easylistczechandslovak/master/filters_ublock.txt" + }, + new + { + FilterListId = 370L, + Id = 505L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easylistczechslovak+easylist.tpl" + }, + new + { + FilterListId = 371L, + Id = 506L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AFNIL-AntiFakeNewsInternationalList/AFNIL/master/AFNIL-ABP-uBO.txt" + }, + new + { + FilterListId = 372L, + Id = 507L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Hubird-au/Adversity/master/Adversity.txt" + }, + new + { + FilterListId = 373L, + Id = 508L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Hubird-au/Adversity/master/Antisocial.txt" + }, + new + { + FilterListId = 374L, + Id = 509L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Hubird-au/Adversity/master/Extreme-Measures.txt" + }, + new + { + FilterListId = 375L, + Id = 510L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/hl2guide/All-in-One-Customized-Adblock-List/master/aio.txt" + }, + new + { + FilterListId = 376L, + Id = 511L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/haykam821/Blocklists/master/mmo.txt" + }, + new + { + FilterListId = 377L, + Id = 512L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cb-software/CB-Malicious-Domains/master/block_lists/adblock_plus.txt" + }, + new + { + FilterListId = 378L, + Id = 513L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cb-software/CB-Malicious-Domains/master/block_lists/hosts" + }, + new + { + FilterListId = 379L, + Id = 514L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gist.githubusercontent.com/gorhill/ef1b62d606473c68d524/raw/f8181faac18cb5172c7c9bca8e5a3b22f0c925d0/gistfile1.txt" + }, + new + { + FilterListId = 380L, + Id = 515L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/toshiya44/myAssets/master/filters-exp.txt" + }, + new + { + FilterListId = 381L, + Id = 516L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://rickrolldb.com/ricklist.txt" + }, + new + { + FilterListId = 383L, + Id = 517L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://austinhuang.me/0131-block-list/list.txt" + }, + new + { + FilterListId = 385L, + Id = 518L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Username Hider for Compilation Creators.txt" + }, + new + { + FilterListId = 385L, + Id = 519L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Username Hider for Compilation Creators.txt" + }, + new + { + FilterListId = 388L, + Id = 520L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/DandelionSproutsNorskeFiltre.tpl" + }, + new + { + FilterListId = 388L, + Id = 521L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/DandelionSproutsNorskeFiltre.tpl" + }, + new + { + FilterListId = 390L, + Id = 522L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAntiAnnoyingSpecialSupplement/master/polish_rss_filters.txt" + }, + new + { + FilterListId = 391L, + Id = 523L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/IHateOverpromotedGames.txt" + }, + new + { + FilterListId = 391L, + Id = 524L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/IHateOverpromotedGames.txt" + }, + new + { + FilterListId = 392L, + Id = 525L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/BrowseWebsitesWithoutLoggingIn.txt" + }, + new + { + FilterListId = 392L, + Id = 526L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/BrowseWebsitesWithoutLoggingIn.txt" + }, + new + { + FilterListId = 393L, + Id = 527L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Dandelion Sprout-s Redirector Assistant List/DandelionSproutRedirectorList.json" + }, + new + { + FilterListId = 393L, + Id = 528L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Dandelion Sprout-s Redirector Assistant List/DandelionSproutRedirectorList.json" + }, + new + { + FilterListId = 395L, + Id = 529L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/raghavdua1995/DNSlock-PiHole-whitelist/master/whitelist.list" + }, + new + { + FilterListId = 396L, + Id = 530L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/NanoAdblocker/NanoFilters/master/NanoFilters/NanoBase.txt" + }, + new + { + FilterListId = 397L, + Id = 531L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/NanoAdblocker/NanoFilters/master/NanoFilters/NanoWhitelist.txt" + }, + new + { + FilterListId = 398L, + Id = 532L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/NanoAdblocker/NanoFilters/master/NanoFilters/NanoAnnoyance.txt" + }, + new + { + FilterListId = 399L, + Id = 533L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/lassekongo83/Frellwits-filter-lists/master/Frellwits-Swedish-Filter.txt" + }, + new + { + FilterListId = 399L, + Id = 534L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://repo.or.cz/Adblock-list-backups-Frellwits-filter-lists.git/blob_plain/refs/heads/master:/Frellwits-Swedish-Filter.txt" + }, + new + { + FilterListId = 400L, + Id = 535L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/notracking/hosts-blocklists/master/domains.txt" + }, + new + { + FilterListId = 401L, + Id = 536L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/notracking/hosts-blocklists/master/hostnames.txt" + }, + new + { + FilterListId = 403L, + Id = 537L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/lassekongo83/Frellwits-filter-lists/master/emoji-filter.txt" + }, + new + { + FilterListId = 403L, + Id = 538L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://repo.or.cz/Adblock-list-backups-Frellwits-filter-lists.git/blob_plain/refs/heads/master:/emoji-filter.txt" + }, + new + { + FilterListId = 405L, + Id = 539L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/annoyances.txt" + }, + new + { + FilterListId = 410L, + Id = 540L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/resource-abuse.txt" + }, + new + { + FilterListId = 412L, + Id = 541L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gist.githubusercontent.com/BBcan177/d7105c242f17f4498f81/raw/201968fa11b1f409d408a129a0774ffedb1560e2/MS-3" + }, + new + { + FilterListId = 413L, + Id = 542L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gist.githubusercontent.com/BBcan177/b6df57cef74e28d90acf1eec93d62d3b/raw/f0996cf5248657ada2adb396f3636be8716b99eb/MS-4" + }, + new + { + FilterListId = 414L, + Id = 543L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gist.githubusercontent.com/BBcan177/4a8bf37c131be4803cb2/raw/343ff780e15205b4dd0de37c86af34cfb26b2fbe/MS-2" + }, + new + { + FilterListId = 415L, + Id = 544L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gist.githubusercontent.com/BBcan177/bf29d47ea04391cb3eb0/raw/7290e0681bcd07415420b5c80a253652fd13f840/MS-1" + }, + new + { + FilterListId = 416L, + Id = 545L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gist.githubusercontent.com/BBcan177/2a9fc2548c3c5a5e2dc86e580b5795d2/raw/2f5c90ffb3bd02199ace1b16a0bd9f53b29f0879/EasyList_DE" + }, + new + { + FilterListId = 417L, + Id = 546L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/matomo-org/referrer-spam-blacklist/master/spammers.txt" + }, + new + { + FilterListId = 418L, + Id = 547L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/desbma/referer-spam-domains-blacklist/master/spammers.txt" + }, + new + { + FilterListId = 419L, + Id = 548L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.joewein.net/dl/bl/dom-bl-base.txt" + }, + new + { + FilterListId = 420L, + Id = 549L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.joewein.net/dl/bl/from-bl.txt" + }, + new + { + FilterListId = 421L, + Id = 550L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/Kurobeats/phishing_hosts/raw/master/hosts" + }, + new + { + FilterListId = 422L, + Id = 551L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ligyxy/Blocklist/master/BLOCKLIST" + }, + new + { + FilterListId = 424L, + Id = 552L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gist.githubusercontent.com/MOxFIVE/4730cac715ef406bd8eac7b29335be4a/raw/d21fa08e97963edde372d0d3e50703c783c9c32e/Personal%2520Blocklist.txt" + }, + new + { + FilterListId = 425L, + Id = 553L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nabble/semalt-blocker/master/domains/blocked" + }, + new + { + FilterListId = 426L, + Id = 554L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://osint.bambenekconsulting.com/feeds/c2-ipmasterlist.txt" + }, + new + { + FilterListId = 427L, + Id = 555L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://phishing.mailscanner.info/phishing.bad.sites.conf" + }, + new + { + FilterListId = 428L, + Id = 556L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.threatcrowd.org/feeds/domains.txt" + }, + new + { + FilterListId = 429L, + Id = 557L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/betterwebleon/international-list/master/filters.txt" + }, + new + { + FilterListId = 430L, + Id = 558L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/AdawayHosts" + }, + new + { + FilterListId = 430L, + Id = 559L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/AdawayHosts" + }, + new + { + FilterListId = 431L, + Id = 560L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Dandelion Sprout's Website Stretcher.txt" + }, + new + { + FilterListId = 431L, + Id = 561L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Dandelion Sprout%27s Website Stretcher.txt" + }, + new + { + FilterListId = 432L, + Id = 562L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-FіМ List.txt" + }, + new + { + FilterListId = 432L, + Id = 563L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-FіМ List.txt" + }, + new + { + FilterListId = 433L, + Id = 564L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-IMDB List.txt" + }, + new + { + FilterListId = 433L, + Id = 565L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-IMDB List.txt" + }, + new + { + FilterListId = 434L, + Id = 566L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/StopAutoplayOnYouTube.txt" + }, + new + { + FilterListId = 434L, + Id = 567L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/StopAutoplayOnYouTube.txt" + }, + new + { + FilterListId = 435L, + Id = 568L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/googlehosts/hosts/master/hosts-files/hosts" + }, + new + { + FilterListId = 435L, + Id = 569L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://git.qvq.network/googlehosts/hosts/raw/master/hosts-files/hosts" + }, + new + { + FilterListId = 436L, + Id = 570L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/lassekongo83/Frellwits-filter-lists/master/i-dont-want-your-app.txt" + }, + new + { + FilterListId = 436L, + Id = 571L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://repo.or.cz/Adblock-list-backups-Frellwits-filter-lists.git/blob_plain/refs/heads/master:/i-dont-want-your-app.txt" + }, + new + { + FilterListId = 437L, + Id = 572L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/easylistbrasil/easylistbrasil/filtro/easylistbrasil.txt" + }, + new + { + FilterListId = 438L, + Id = 573L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/SessionReplay.txt" + }, + new + { + FilterListId = 439L, + Id = 574L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/SmartTV.txt" + }, + new + { + FilterListId = 440L, + Id = 575L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/android-tracking.txt" + }, + new + { + FilterListId = 441L, + Id = 576L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/static/w3kbl.txt" + }, + new + { + FilterListId = 442L, + Id = 577L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/BillStearns.txt" + }, + new + { + FilterListId = 445L, + Id = 578L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/Easyprivacy.txt" + }, + new + { + FilterListId = 446L, + Id = 579L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/Prigent-Ads.txt" + }, + new + { + FilterListId = 447L, + Id = 580L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/quidsup/notrack-blocklists/raw/master/notrack-blocklist.txt" + }, + new + { + FilterListId = 448L, + Id = 581L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/quidsup/notrack-blocklists/raw/master/notrack-malware.txt" + }, + new + { + FilterListId = 449L, + Id = 582L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/hosts/spy.txt" + }, + new + { + FilterListId = 450L, + Id = 583L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/hosts/update.txt" + }, + new + { + FilterListId = 451L, + Id = 584L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/hosts/extra.txt" + }, + new + { + FilterListId = 465L, + Id = 585L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/Shalla-mal.txt" + }, + new + { + FilterListId = 465L, + Id = 586L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Shalla-Malicious.txt" + }, + new + { + FilterListId = 467L, + Id = 587L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kano1/I/master/badway.txt" + }, + new + { + FilterListId = 468L, + Id = 588L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kano1/I/master/adware.txt" + }, + new + { + FilterListId = 469L, + Id = 589L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kano1/Kano/master/Spyware.txt" + }, + new + { + FilterListId = 470L, + Id = 590L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/firehol_level1.netset" + }, + new + { + FilterListId = 471L, + Id = 591L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/firehol_level2.netset" + }, + new + { + FilterListId = 472L, + Id = 592L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/pinterest/all" + }, + new + { + FilterListId = 473L, + Id = 593L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/cloudflare/all" + }, + new + { + FilterListId = 474L, + Id = 594L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/facebook/all" + }, + new + { + FilterListId = 475L, + Id = 595L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/mozilla/all" + }, + new + { + FilterListId = 476L, + Id = 596L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/microsoft/all" + }, + new + { + FilterListId = 477L, + Id = 597L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/google/non_localized" + }, + new + { + FilterListId = 478L, + Id = 598L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jmdugan/blocklists/master/corporations/google/localized" + }, + new + { + FilterListId = 479L, + Id = 599L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistpolish.txt" + }, + new + { + FilterListId = 480L, + Id = 600L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/yecarrillo/adblock-colombia/master/adblock_co.txt" + }, + new + { + FilterListId = 481L, + Id = 601L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/spark/formats/hosts.txt" + }, + new + { + FilterListId = 482L, + Id = 602L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/bluGo/formats/hosts.txt" + }, + new + { + FilterListId = 482L, + Id = 603L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/bluGo/formats/hosts.txt" + }, + new + { + FilterListId = 483L, + Id = 604L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/blu/formats/hosts.txt" + }, + new + { + FilterListId = 484L, + Id = 605L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/basic/formats/hosts.txt" + }, + new + { + FilterListId = 485L, + Id = 606L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/porn/formats/hosts.txt" + }, + new + { + FilterListId = 486L, + Id = 607L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/ultimate/formats/hosts.txt" + }, + new + { + FilterListId = 487L, + Id = 608L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/unified/formats/hosts.txt" + }, + new + { + FilterListId = 490L, + Id = 609L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/CyanideBrother/anti-pr0n/master/hosts" + }, + new + { + FilterListId = 491L, + Id = 610L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/extensions/porn/clefspeare13/hosts" + }, + new + { + FilterListId = 492L, + Id = 611L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mhxion/pornaway/master/hosts/porn_sites.txt" + }, + new + { + FilterListId = 493L, + Id = 612L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mhxion/pornaway/master/hosts/porn_ads.txt" + }, + new + { + FilterListId = 494L, + Id = 613L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mitchellkrogza/Badd-Boyz-Hosts/master/hosts" + }, + new + { + FilterListId = 495L, + Id = 614L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/MetaMask/eth-phishing-detect/master/src/hosts.txt" + }, + new + { + FilterListId = 496L, + Id = 615L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/MrThreat/Confirmed-Phish/master/phish.txt" + }, + new + { + FilterListId = 504L, + Id = 616L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Adblock list templates/Adblock list template -Beginner-.txt" + }, + new + { + FilterListId = 504L, + Id = 617L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Adblock list templates/Adblock list template -Beginner-.txt" + }, + new + { + FilterListId = 505L, + Id = 618L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Adblock list templates/Adblock list template -Novice-.txt" + }, + new + { + FilterListId = 505L, + Id = 619L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Adblock list templates/Adblock list template -Novice-.txt" + }, + new + { + FilterListId = 506L, + Id = 620L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/exceptionrules-privacy-friendly.txt" + }, + new + { + FilterListId = 507L, + Id = 621L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easylist.tpl" + }, + new + { + FilterListId = 509L, + Id = 623L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/endolith/clickbait/master/clickbait.txt" + }, + new + { + FilterListId = 510L, + Id = 624L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/UnluckyLuke/BlockUnderRadarJunk/master/blockunderradarjunk-list.txt" + }, + new + { + FilterListId = 512L, + Id = 625L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/xd4rker/MinerBlock/master/assets/filters.txt" + }, + new + { + FilterListId = 513L, + Id = 626L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/hit3shjain/Andromeda-ublock-list/master/hosts.txt" + }, + new + { + FilterListId = 515L, + Id = 628L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://paulgb.github.io/BarbBlock/blacklists/ublock-origin.txt" + }, + new + { + FilterListId = 516L, + Id = 629L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://paulgb.github.io/BarbBlock/blacklists/domain-list.txt" + }, + new + { + FilterListId = 517L, + Id = 630L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://paulgb.github.io/BarbBlock/blacklists/adblock-plus.txt" + }, + new + { + FilterListId = 518L, + Id = 631L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.dshield.org/feeds/suspiciousdomains_Low.txt" + }, + new + { + FilterListId = 519L, + Id = 632L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.dshield.org/feeds/suspiciousdomains_Medium.txt" + }, + new + { + FilterListId = 519L, + Id = 633L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://isc.sans.edu/feeds/suspiciousdomains_Medium.txt" + }, + new + { + FilterListId = 520L, + Id = 634L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.dshield.org/feeds/suspiciousdomains_High.txt" + }, + new + { + FilterListId = 521L, + Id = 635L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://list.kwbt.de/kwbtlist.txt" + }, + new + { + FilterListId = 522L, + Id = 636L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://list.kwbt.de/kwbtlist.txt" + }, + new + { + FilterListId = 525L, + Id = 637L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/chadmayfield/my-pihole-blocklists/master/lists/pi_blocklist_porn_top1m.list" + }, + new + { + FilterListId = 525L, + Id = 638L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Chad-Mayfield-Porn-Blocklist-Light.txt" + }, + new + { + FilterListId = 526L, + Id = 639L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/chadmayfield/my-pihole-blocklists/master/lists/pi_blocklist_porn_all.list" + }, + new + { + FilterListId = 526L, + Id = 640L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Chad-Mayfield-Porn-Blocklist-Heavy.txt" + }, + new + { + FilterListId = 562L, + Id = 641L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/xinggsf/Adblock-Plus-Rule/master/ABP-FX.txt" + }, + new + { + FilterListId = 563L, + Id = 642L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/andromedarabbit/List-KR/master/filter.txt" + }, + new + { + FilterListId = 564L, + Id = 643L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://fanboy.co.nz/fanboy-problematic-sites.txt" + }, + new + { + FilterListId = 565L, + Id = 644L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://cdn.adblockcdn.com/filters/easylist_lite.txt" + }, + new + { + FilterListId = 566L, + Id = 645L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/abp-filters-anti-cv.txt" + }, + new + { + FilterListId = 569L, + Id = 646L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/chinese.txt" + }, + new + { + FilterListId = 570L, + Id = 647L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/czech.txt" + }, + new + { + FilterListId = 573L, + Id = 648L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/english.txt" + }, + new + { + FilterListId = 574L, + Id = 649L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/french.txt" + }, + new + { + FilterListId = 575L, + Id = 650L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/german.txt" + }, + new + { + FilterListId = 583L, + Id = 651L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/portuguese.txt" + }, + new + { + FilterListId = 585L, + Id = 652L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/russian.txt" + }, + new + { + FilterListId = 586L, + Id = 653L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/spanish.txt" + }, + new + { + FilterListId = 589L, + Id = 654L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Sinfonietta/hostfiles/master/gambling-hosts" + }, + new + { + FilterListId = 590L, + Id = 655L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Sinfonietta/hostfiles/master/pornography-hosts" + }, + new + { + FilterListId = 591L, + Id = 656L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Sinfonietta/hostfiles/master/snuff-hosts" + }, + new + { + FilterListId = 592L, + Id = 657L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Sinfonietta/hostfiles/master/social-hosts" + }, + new + { + FilterListId = 593L, + Id = 658L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/marktron/fakenews/master/fakenews" + }, + new + { + FilterListId = 595L, + Id = 659L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.github.developerdan.com/hosts/lists/ads-and-tracking-extended.txt" + }, + new + { + FilterListId = 596L, + Id = 660L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.github.developerdan.com/hosts/lists/tracking-aggressive-extended.txt" + }, + new + { + FilterListId = 598L, + Id = 661L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bigdargon/hostsVN/master/hosts" + }, + new + { + FilterListId = 599L, + Id = 662L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://abpvn.com/android/abpvn.txt" + }, + new + { + FilterListId = 600L, + Id = 663L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/abpvn/abpvn/master/filter/abpvn_noelemhide.txt" + }, + new + { + FilterListId = 601L, + Id = 664L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/ThaiAntiTokenSites/master/AntiPumpSites.txt" + }, + new + { + FilterListId = 601L, + Id = 665L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/ThaiAntiTokenSites/raw/master/AntiPumpSites.txt" + }, + new + { + FilterListId = 602L, + Id = 666L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/ThaiAntiTokenSites/master/AntiPumpSites_hosts.txt" + }, + new + { + FilterListId = 602L, + Id = 667L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/ThaiAntiTokenSites/raw/master/AntiPumpSites_hosts.txt" + }, + new + { + FilterListId = 603L, + Id = 668L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-Elsagate List.txt" + }, + new + { + FilterListId = 603L, + Id = 669L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-Elsagate List.txt" + }, + new + { + FilterListId = 604L, + Id = 670L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/stopforumspam_30d.ipset" + }, + new + { + FilterListId = 605L, + Id = 671L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/firehol_level3.netset" + }, + new + { + FilterListId = 606L, + Id = 672L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jerryn70/GoodbyeAds/master/Hosts/GoodbyeAds.txt" + }, + new + { + FilterListId = 607L, + Id = 673L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_newsletters.txt" + }, + new + { + FilterListId = 608L, + Id = 674L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_arrows.txt" + }, + new + { + FilterListId = 609L, + Id = 675L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_push.txt" + }, + new + { + FilterListId = 610L, + Id = 676L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_scrolling_videos.txt" + }, + new + { + FilterListId = 611L, + Id = 677L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_backgrounds_self-advertising.txt" + }, + new + { + FilterListId = 612L, + Id = 678L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_pop-ups.txt" + }, + new + { + FilterListId = 613L, + Id = 679L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_contact_feedback_widgets.txt" + }, + new + { + FilterListId = 614L, + Id = 680L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_tagged_internal_links.txt" + }, + new + { + FilterListId = 616L, + Id = 681L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/PolishAnnoyanceFilters/master/PAF_other_widgets.txt" + }, + new + { + FilterListId = 617L, + Id = 682L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=hosts&showintro=1&mimetype=plaintext" + }, + new + { + FilterListId = 617L, + Id = 683L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/StevenBlack/hosts/master/data/yoyo.org/hosts" + }, + new + { + FilterListId = 618L, + Id = 684L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://bitbucket.org/ethanr/dns-blacklists/raw/8575c9f96e5b4a1308f2f12394abd86d0927a4a0/bad_lists/Mandiant_APT1_Report_Appendix_D.txt" + }, + new + { + FilterListId = 618L, + Id = 685L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Mandiant-APT1-Report.txt" + }, + new + { + FilterListId = 619L, + Id = 686L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/HenningVanRaumle/pihole-ytadblock/master/ytadblock.txt" + }, + new + { + FilterListId = 625L, + Id = 687L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nathanaccidentally/SystemHostsBlocker/master/hosts" + }, + new + { + FilterListId = 626L, + Id = 688L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tyzbit/hosts/master/data/tyzbit/hosts" + }, + new + { + FilterListId = 628L, + Id = 689L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/TakoYachty/Gift-Card-Killer/master/Untrusted Hosts Blocker.txt" + }, + new + { + FilterListId = 630L, + Id = 690L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/AdguardDNS.txt" + }, + new + { + FilterListId = 631L, + Id = 691L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/Prigent-Phishing.txt" + }, + new + { + FilterListId = 631L, + Id = 692L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Prigent-Phishing.txt" + }, + new + { + FilterListId = 632L, + Id = 693L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/static/SamsungSmart.txt" + }, + new + { + FilterListId = 658L, + Id = 694L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/filters/generic_filters.txt" + }, + new + { + FilterListId = 659L, + Id = 695L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/filters/modal_filters.txt" + }, + new + { + FilterListId = 660L, + Id = 696L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/filters/newsletter_filters.txt" + }, + new + { + FilterListId = 661L, + Id = 697L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/filters/social_filters.txt" + }, + new + { + FilterListId = 663L, + Id = 698L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nmtrung/FMSF-2.0/master/fmsf_2.0.txt" + }, + new + { + FilterListId = 664L, + Id = 699L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/AdguardMobileAds.txt" + }, + new + { + FilterListId = 665L, + Id = 700L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/AdguardMobileSpyware.txt" + }, + new + { + FilterListId = 666L, + Id = 701L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/AdguardApps.txt" + }, + new + { + FilterListId = 667L, + Id = 702L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/AdguardDNS.txt" + }, + new + { + FilterListId = 668L, + Id = 703L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://tgc.cloud/downloads/iOSAds.txt" + }, + new + { + FilterListId = 669L, + Id = 704L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://tgc.cloud/downloads/hosts.txt" + }, + new + { + FilterListId = 670L, + Id = 705L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/LittleSnitchNorwegianList.lsrules" + }, + new + { + FilterListId = 670L, + Id = 706L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/LittleSnitchNorwegianList.lsrules" + }, + new + { + FilterListId = 671L, + Id = 707L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://obdev.at/resources/littlesnitch/blocklist-example.lsrules" + }, + new + { + FilterListId = 672L, + Id = 708L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=littlesnitch-rule-group-subscriptions;showintro=1&mimetype=plaintext" + }, + new + { + FilterListId = 673L, + Id = 709L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=msfilter&showintro=1&mimetype=plaintext" + }, + new + { + FilterListId = 674L, + Id = 710L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=nohtml&showintro=1&mimetype=plaintext" + }, + new + { + FilterListId = 675L, + Id = 711L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://pgl.yoyo.org/adservers/iplist.php?ipformat=plain&showintro=1&mimetype=plaintext" + }, + new + { + FilterListId = 676L, + Id = 712L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://pgl.yoyo.org/as/serverlist.php?hostformat=junkbuster;showintro=1&mimetype=plaintext" + }, + new + { + FilterListId = 677L, + Id = 713L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://pgl.yoyo.org/as/serverlist.php?hostformat=adblock;showintro=1&mimetype=plaintext" + }, + new + { + FilterListId = 678L, + Id = 714L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gist.githubusercontent.com/sx2008/2766874/raw/c12a305decef3332663d1e04efa80b881211cfac/user.action" + }, + new + { + FilterListId = 679L, + Id = 715L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/fdb/privoxy-config/master/block-trackers.action" + }, + new + { + FilterListId = 680L, + Id = 716L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/DandelionSproutsNorskeFiltreDomains.txt" + }, + new + { + FilterListId = 680L, + Id = 717L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/DandelionSproutsNorskeFiltreDomains.txt" + }, + new + { + FilterListId = 681L, + Id = 718L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.malwaredomainlist.com/hostslist/ip.txt" + }, + new + { + FilterListId = 682L, + Id = 719L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://malc0de.com/bl/IP_Blacklist.txt" + }, + new + { + FilterListId = 683L, + Id = 720L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://www.urlvir.com/export-ip-addresses/" + }, + new + { + FilterListId = 684L, + Id = 721L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://www.urlvir.com/export-hosts/" + }, + new + { + FilterListId = 686L, + Id = 724L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://cdn.adblockcdn.com/filters/adblock_custom.txt" + }, + new + { + FilterListId = 687L, + Id = 725L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://www.quero.at/download/adblock-hosts.zip" + }, + new + { + FilterListId = 689L, + Id = 726L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/xxcriticxx/.pl-host-file/master/hosts.txt" + }, + new + { + FilterListId = 690L, + Id = 727L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mitchellkrogza/Suspicious.Snooping.Sniffing.Hacking.IP.Addresses/master/ips.list" + }, + new + { + FilterListId = 691L, + Id = 728L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mitchellkrogza/Top-Attacking-IP-Addresses-Against-Wordpress-Sites/master/wordpress-attacking-ips.txt" + }, + new + { + FilterListId = 692L, + Id = 729L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mitchellkrogza/The-Big-List-of-Hacked-Malware-Web-Sites/master/hacked-domains.list" + }, + new + { + FilterListId = 693L, + Id = 730L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hosts.ubuntu101.co.za/hosts" + }, + new + { + FilterListId = 694L, + Id = 731L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hosts.ubuntu101.co.za/domains.list" + }, + new + { + FilterListId = 696L, + Id = 732L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/dan-pollock-someonewhocares-org.txt" + }, + new + { + FilterListId = 697L, + Id = 733L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/mvps-hosts-file.txt" + }, + new + { + FilterListId = 698L, + Id = 734L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/malware-domain-list.txt" + }, + new + { + FilterListId = 699L, + Id = 735L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/nocoin.txt" + }, + new + { + FilterListId = 700L, + Id = 736L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/easylist.txt" + }, + new + { + FilterListId = 703L, + Id = 737L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/KADhosts/master/KADomains.txt" + }, + new + { + FilterListId = 704L, + Id = 738L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/steven-blacks-ad-hoc-list.txt" + }, + new + { + FilterListId = 705L, + Id = 739L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/coinblocker.txt" + }, + new + { + FilterListId = 706L, + Id = 740L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/add-2o7net.txt" + }, + new + { + FilterListId = 707L, + Id = 741L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/add-dead.txt" + }, + new + { + FilterListId = 708L, + Id = 742L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/add-risk.txt" + }, + new + { + FilterListId = 709L, + Id = 743L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/add-spam.txt" + }, + new + { + FilterListId = 710L, + Id = 744L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/tyzbit.txt" + }, + new + { + FilterListId = 710L, + Id = 745L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Tyzbit.txt" + }, + new + { + FilterListId = 711L, + Id = 746L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/uncheckyads.txt" + }, + new + { + FilterListId = 712L, + Id = 747L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/austinheap/sophos-xg-block-lists/master/spotifyads.txt" + }, + new + { + FilterListId = 715L, + Id = 748L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/highsea/Hosts/master/host-include-appale/hosts" + }, + new + { + FilterListId = 717L, + Id = 750L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/superliaoyong/hosts/master/hosts" + }, + new + { + FilterListId = 718L, + Id = 751L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/popcorner/cernet-ipv6-hosts/hosts/hosts" + }, + new + { + FilterListId = 719L, + Id = 752L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://ads-for-open-source.readthedocs.io/en/latest/_static/lists/opensource-ads.txt" + }, + new + { + FilterListId = 720L, + Id = 753L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://nonio.pt/antinonio.txt" + }, + new + { + FilterListId = 721L, + Id = 754L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/brunomiguel/antinonio/master/antinonio.txt" + }, + new + { + FilterListId = 722L, + Id = 755L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gist.githubusercontent.com/balupton/6960605/raw/16bfeff88761b16296ed3ee15fbacf6840f1701a/filter-twitterdrama.txt" + }, + new + { + FilterListId = 723L, + Id = 756L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gist.githubusercontent.com/balupton/6960605/raw/16bfeff88761b16296ed3ee15fbacf6840f1701a/filter-feedlyads.txt" + }, + new + { + FilterListId = 724L, + Id = 757L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gist.githubusercontent.com/balupton/6960605/raw/16bfeff88761b16296ed3ee15fbacf6840f1701a/filter-facebookdrama.txt" + }, + new + { + FilterListId = 726L, + Id = 758L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/whtsky/abp-rules/master/rules.txt" + }, + new + { + FilterListId = 726L, + Id = 759L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://abp.tt.codes/rules.txt" + }, + new + { + FilterListId = 728L, + Id = 760L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/realodix/AdBlockID/master/output/adblockid.txt" + }, + new + { + FilterListId = 729L, + Id = 761L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/theel0ja/CrapBlock/master/crapblock-annoyances.txt" + }, + new + { + FilterListId = 729L, + Id = 762L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://crapblock.theel0ja.info/crapblock-annoyances.txt" + }, + new + { + FilterListId = 729L, + Id = 763L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/theel0ja/crapblock/raw/master/crapblock-annoyances.txt" + }, + new + { + FilterListId = 730L, + Id = 764L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/theel0ja/CrapBlock/master/block-googlefonts.txt" + }, + new + { + FilterListId = 730L, + Id = 765L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://crapblock.theel0ja.info/block-googlefonts.txt" + }, + new + { + FilterListId = 730L, + Id = 766L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/theel0ja/crapblock/raw/master/block-googlefonts.txt" + }, + new + { + FilterListId = 731L, + Id = 767L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/NeeEoo/AdBlockNeeEoo/master/List.txt" + }, + new + { + FilterListId = 734L, + Id = 769L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/imageboard/GelboLube.txt" + }, + new + { + FilterListId = 734L, + Id = 770L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/imageboard/GelboLube.txt" + }, + new + { + FilterListId = 735L, + Id = 771L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/specific/AntiAPKMirrorCountdown.txt" + }, + new + { + FilterListId = 735L, + Id = 772L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/specific/AntiAPKMirrorCountdown.txt" + }, + new + { + FilterListId = 736L, + Id = 773L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/OsborneSystems/Columbia/master/Columbia.txt" + }, + new + { + FilterListId = 743L, + Id = 774L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/akopachov/uBlock-AK-filter-rules/master/entertainment" + }, + new + { + FilterListId = 744L, + Id = 775L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Hunter-Github/the-best-stack-overflow/master/se_filters.txt" + }, + new + { + FilterListId = 746L, + Id = 776L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Hakame-kun/uBlock-Filters-Indonesia/master/uBlock Indo/ubindo.txt" + }, + new + { + FilterListId = 747L, + Id = 777L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nimasaj/uBOPa/master/uBOPa.txt" + }, + new + { + FilterListId = 747L, + Id = 778L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://mynext.pro/uBOPa.txt" + }, + new + { + FilterListId = 748L, + Id = 779L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.microsoft.com/cms/api/am/binary/RWilsQ" + }, + new + { + FilterListId = 749L, + Id = 780L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/malwaredomains_full.tpl" + }, + new + { + FilterListId = 750L, + Id = 781L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easy-tracking-protection.truste.com/easy.tpl" + }, + new + { + FilterListId = 751L, + Id = 782L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://jansal.net/tpl/ricklist.tpl" + }, + new + { + FilterListId = 752L, + Id = 783L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://jansal.net/tpl/popup-block.tpl" + }, + new + { + FilterListId = 753L, + Id = 784L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://jansal.net/tpl/obtrusive.tpl" + }, + new + { + FilterListId = 754L, + Id = 785L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://jansal.net/tpl/malpatrol.tpl" + }, + new + { + FilterListId = 755L, + Id = 786L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://jansal.net/tpl/m.tpl" + }, + new + { + FilterListId = 756L, + Id = 787L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://jansal.net/tpl/latvian-list.tpl" + }, + new + { + FilterListId = 757L, + Id = 788L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://jansal.net/tpl/facebook-connect-optout-adblockplusfilter.tpl" + }, + new + { + FilterListId = 758L, + Id = 789L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://jansal.net/tpl/adblock-persian.tpl" + }, + new + { + FilterListId = 759L, + Id = 790L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://jansal.net/tpl/IsraelList.tpl" + }, + new + { + FilterListId = 760L, + Id = 791L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://jansal.net/tpl/Adversity/Antisocial.tpl" + }, + new + { + FilterListId = 761L, + Id = 792L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://jansal.net/tpl/Adversity/Adversity.tpl" + }, + new + { + FilterListId = 762L, + Id = 793L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.fanboy.co.nz/adblock/ie/fanboy-noele.tpl" + }, + new + { + FilterListId = 763L, + Id = 794L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.fanboy.co.nz/adblock/ie/fanboy-tracking.tpl" + }, + new + { + FilterListId = 764L, + Id = 795L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://jansal.net/tpl/fanboy/enhancedstats-addon.tpl" + }, + new + { + FilterListId = 765L, + Id = 796L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://jansal.net/tpl/fanboy/fanboy-adult.tpl" + }, + new + { + FilterListId = 766L, + Id = 797L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/lilydjwg/abp-rules/master/list.txt" + }, + new + { + FilterListId = 767L, + Id = 798L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/OwlStudioCN/owl-abp-rules/master/owl-abp-rules.txt" + }, + new + { + FilterListId = 769L, + Id = 799L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Manu1400/i-don-t-care-about-newsletters/master/adp.txt" + }, + new + { + FilterListId = 770L, + Id = 800L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://adp.magnobiet.com/list.txt" + }, + new + { + FilterListId = 772L, + Id = 801L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kbinani/adblock-wikipedia/master/signed.txt" + }, + new + { + FilterListId = 773L, + Id = 802L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easylistgermany+easylist.tpl" + }, + new + { + FilterListId = 774L, + Id = 803L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/fanboy-annoyance.tpl" + }, + new + { + FilterListId = 775L, + Id = 804L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easylistlithuania+easylist.tpl" + }, + new + { + FilterListId = 776L, + Id = 805L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/bulgarian_list+easylist.tpl" + }, + new + { + FilterListId = 777L, + Id = 806L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/latvianlist+easylist.tpl" + }, + new + { + FilterListId = 778L, + Id = 807L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easyprivacy+easylist.tpl" + }, + new + { + FilterListId = 779L, + Id = 808L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easylistitaly+easylist.tpl" + }, + new + { + FilterListId = 780L, + Id = 809L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/israellist+easylist.tpl" + }, + new + { + FilterListId = 781L, + Id = 810L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easylistchina+easylist.tpl" + }, + new + { + FilterListId = 782L, + Id = 811L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easylistdutch+easylist.tpl" + }, + new + { + FilterListId = 783L, + Id = 812L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/rolist+easylist.tpl" + }, + new + { + FilterListId = 784L, + Id = 813L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/wiltteri+easylist.tpl" + }, + new + { + FilterListId = 785L, + Id = 814L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/fanboy-social.tpl" + }, + new + { + FilterListId = 786L, + Id = 815L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/liste_ar+liste_fr+easylist.tpl" + }, + new + { + FilterListId = 787L, + Id = 816L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/ruadlist+easylist.tpl" + }, + new + { + FilterListId = 788L, + Id = 817L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/Liste_AR.tpl" + }, + new + { + FilterListId = 789L, + Id = 818L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easylistdutch.tpl" + }, + new + { + FilterListId = 790L, + Id = 819L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easyprivacy_nointernational.tpl" + }, + new + { + FilterListId = 791L, + Id = 820L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/advblock.tpl" + }, + new + { + FilterListId = 792L, + Id = 821L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easylist_noadult.tpl" + }, + new + { + FilterListId = 793L, + Id = 822L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easylistspanish.tpl" + }, + new + { + FilterListId = 794L, + Id = 823L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easylistchina.tpl" + }, + new + { + FilterListId = 795L, + Id = 824L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/liste_fr.tpl" + }, + new + { + FilterListId = 796L, + Id = 825L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easylistgermany.tpl" + }, + new + { + FilterListId = 797L, + Id = 826L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/antiadblockfilters.tpl" + }, + new + { + FilterListId = 798L, + Id = 827L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/liste_fr+easylist.tpl" + }, + new + { + FilterListId = 799L, + Id = 828L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easylistitaly.tpl" + }, + new + { + FilterListId = 800L, + Id = 829L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easylistspanish+easylist.tpl" + }, + new + { + FilterListId = 801L, + Id = 830L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/ABP Macedonian List.txt" + }, + new + { + FilterListId = 802L, + Id = 831L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Liste DZ.txt" + }, + new + { + FilterListId = 803L, + Id = 832L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Snaevar87's Icelandic filter.txt" + }, + new + { + FilterListId = 804L, + Id = 833L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/TamilFriends List.txt" + }, + new + { + FilterListId = 805L, + Id = 834L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/advblock+cssfixes.txt" + }, + new + { + FilterListId = 806L, + Id = 835L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistportuguese.txt" + }, + new + { + FilterListId = 807L, + Id = 836L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/luigimannoni/m5s-ublock-filter/master/filter-list.txt" + }, + new + { + FilterListId = 808L, + Id = 837L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://ajnasz.hu/adblock/recent" + }, + new + { + FilterListId = 809L, + Id = 838L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.ergensin.nl/adblock/nlblock.txt" + }, + new + { + FilterListId = 809L, + Id = 839L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "http://www.verzijlbergh.com/adblock/nlblock.txt" + }, + new + { + FilterListId = 810L, + Id = 840L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/complete/domains.txt" + }, + new + { + FilterListId = 811L, + Id = 841L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/mini/hosts.txt" + }, + new + { + FilterListId = 812L, + Id = 842L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/mini/domains.txt" + }, + new + { + FilterListId = 813L, + Id = 843L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jwinnie/acceptable-ads/master/filters.txt" + }, + new + { + FilterListId = 814L, + Id = 844L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/gmbkslist.txt" + }, + new + { + FilterListId = 815L, + Id = 845L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AncientLibrary/Adblocking Open Filter JP" + }, + new + { + FilterListId = 816L, + Id = 846L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/I Don't Want to Download Your Browser.txt" + }, + new + { + FilterListId = 816L, + Id = 847L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/I Don't Want to Download Your Browser.txt" + }, + new + { + FilterListId = 817L, + Id = 848L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/lassekongo83/Frellwits-filter-lists/master/Frellwits-Swedish-Hosts-File.txt" + }, + new + { + FilterListId = 817L, + Id = 849L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://repo.or.cz/Adblock-list-backups-Frellwits-filter-lists.git/blob_plain/refs/heads/master:/Frellwits-Swedish-Hosts-File.txt" + }, + new + { + FilterListId = 818L, + Id = 850L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/indianlist.txt" + }, + new + { + FilterListId = 819L, + Id = 851L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/YouTubeEvenMorePureVideoExperience.txt" + }, + new + { + FilterListId = 819L, + Id = 852L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/YouTubeEvenMorePureVideoExperience.txt" + }, + new + { + FilterListId = 821L, + Id = 854L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/brave/adblock-lists/master/brave-unbreak.txt" + }, + new + { + FilterListId = 822L, + Id = 855L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/VeleSila/VELE-SILA-List/gh-pages/KaFanList.txt" + }, + new + { + FilterListId = 823L, + Id = 856L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/gasull/adblock-nsa/master/filters.txt" + }, + new + { + FilterListId = 824L, + Id = 857L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mistalaba/popover-blocklist/master/blocklist.txt" + }, + new + { + FilterListId = 825L, + Id = 858L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jasonbarone/membership-app-block-list/master/membership-app-block-list.txt" + }, + new + { + FilterListId = 826L, + Id = 859L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/w13d/adblockListABP-PiHole/master/Spotify.txt" + }, + new + { + FilterListId = 827L, + Id = 860L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/w13d/adblockListABP-PiHole/master/list.txt" + }, + new + { + FilterListId = 828L, + Id = 861L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/evenxzero/Raajje-AdList/master/filter.txt" + }, + new + { + FilterListId = 829L, + Id = 862L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/miyurusankalpa/adblock-list-sri-lanka/master/lkfilter.txt" + }, + new + { + FilterListId = 830L, + Id = 863L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/adblock.conf" + }, + new + { + FilterListId = 831L, + Id = 864L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/ads01.conf" + }, + new + { + FilterListId = 832L, + Id = 865L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/facebookblock.conf" + }, + new + { + FilterListId = 833L, + Id = 866L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/fastclick.conf" + }, + new + { + FilterListId = 834L, + Id = 867L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/google.conf" + }, + new + { + FilterListId = 835L, + Id = 868L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/acidwars/AdBlock-Lists/master/microsoftblock.conf" + }, + new + { + FilterListId = 836L, + Id = 869L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Recon/romanian-media-propaganda-adblock-list/master/ro-media-blocklist.txt" + }, + new + { + FilterListId = 837L, + Id = 870L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/duskwuff/syndicationblock/master/filters.txt" + }, + new + { + FilterListId = 839L, + Id = 872L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Manu1400/i-don-t-care-about-gotoup-btns/master/list-gotoup-btns.txt" + }, + new + { + FilterListId = 840L, + Id = 873L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/KCaglarCoskun/enur-filter-list/master/enur-filter-list.txt" + }, + new + { + FilterListId = 841L, + Id = 874L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/LinuxLowell/chat-annoyances/master/chat-annoyances.txt" + }, + new + { + FilterListId = 842L, + Id = 875L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=dnsmasq&showintro=1&mimetype=plaintext" + }, + new + { + FilterListId = 843L, + Id = 876L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/facebook/FacebookZuckestionKiller.txt" + }, + new + { + FilterListId = 843L, + Id = 877L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/facebook/FacebookZuckestionKiller.txt" + }, + new + { + FilterListId = 844L, + Id = 878L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/facebook/FacebookCommands.txt" + }, + new + { + FilterListId = 844L, + Id = 879L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/facebook/FacebookCommands.txt" + }, + new + { + FilterListId = 845L, + Id = 880L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/hosts/hosts_google_adservice_id.txt" + }, + new + { + FilterListId = 845L, + Id = 881L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/hosts/hosts_google_adservice_id.txt" + }, + new + { + FilterListId = 846L, + Id = 882L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/ThaiParanoidBlock/maximum/ThaiParanoid.txt" + }, + new + { + FilterListId = 846L, + Id = 883L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/ThaiParanoidBlock/raw/maximum/ThaiParanoid.txt" + }, + new + { + FilterListId = 847L, + Id = 884L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/sipp11/th_ad_filters/master/th_list.txt" + }, + new + { + FilterListId = 848L, + Id = 885L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/TwitchPureViewingExperience.txt" + }, + new + { + FilterListId = 848L, + Id = 886L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/TwitchPureViewingExperience.txt" + }, + new + { + FilterListId = 850L, + Id = 887L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAbusePorn.txt" + }, + new + { + FilterListId = 850L, + Id = 888L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAbusePorn.txt" + }, + new + { + FilterListId = 851L, + Id = 889L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/WikiaPureBrowsingExperience.txt" + }, + new + { + FilterListId = 851L, + Id = 890L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/WikiaPureBrowsingExperience.txt" + }, + new + { + FilterListId = 852L, + Id = 891L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/YouTubeYetEvenMorePureVideoExperience.txt" + }, + new + { + FilterListId = 852L, + Id = 892L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/YouTubeYetEvenMorePureVideoExperience.txt" + }, + new + { + FilterListId = 853L, + Id = 893L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/VeryThoroughWebsiteCleaner.txt" + }, + new + { + FilterListId = 853L, + Id = 894L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/VeryThoroughWebsiteCleaner.txt" + }, + new + { + FilterListId = 855L, + Id = 895L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/MeWe Pink Theme.txt" + }, + new + { + FilterListId = 855L, + Id = 896L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/MeWe Pink Theme.txt" + }, + new + { + FilterListId = 856L, + Id = 897L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Pro-LED List.txt" + }, + new + { + FilterListId = 856L, + Id = 898L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Pro-LED List.txt" + }, + new + { + FilterListId = 857L, + Id = 899L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Dandelion Sprout-s Redirector Assistant List/TorRedirectorList.json" + }, + new + { + FilterListId = 857L, + Id = 900L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Dandelion Sprout-s Redirector Assistant List/TorRedirectorList.json" + }, + new + { + FilterListId = 859L, + Id = 904L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-Futa List.txt" + }, + new + { + FilterListId = 859L, + Id = 905L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-Futa List.txt" + }, + new + { + FilterListId = 860L, + Id = 906L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://bitbucket.org/nicktabick/adblock-rules/raw/master/nt-adblock.txt" + }, + new + { + FilterListId = 860L, + Id = 907L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nicktabick/adblock-rules/master/nt-adblock.txt" + }, + new + { + FilterListId = 860L, + Id = 908L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/nicktabick/adblock-rules/raw/master/nt-adblock.txt" + }, + new + { + FilterListId = 861L, + Id = 909L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bogachenko/filterlist/master/filterlist.txt" + }, + new + { + FilterListId = 862L, + Id = 910L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/other/SurvivedTrackingLinkWarning.txt" + }, + new + { + FilterListId = 862L, + Id = 911L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/other/SurvivedTrackingLinkWarning.txt" + }, + new + { + FilterListId = 863L, + Id = 912L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-'Christmas carols' List.txt" + }, + new + { + FilterListId = 863L, + Id = 913L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-'Christmas carols' List.txt" + }, + new + { + FilterListId = 866L, + Id = 914L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/hosts/hosts_facebook0.txt" + }, + new + { + FilterListId = 866L, + Id = 915L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/hosts/hosts_facebook0.txt" + }, + new + { + FilterListId = 868L, + Id = 918L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/mochi_filter.txt" + }, + new + { + FilterListId = 869L, + Id = 919L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/mochi_filter_2gun.txt" + }, + new + { + FilterListId = 870L, + Id = 920L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/mochi_filter_amazon.txt" + }, + new + { + FilterListId = 871L, + Id = 921L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/mochi_filter_extended.txt" + }, + new + { + FilterListId = 872L, + Id = 922L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/negi_filter.txt" + }, + new + { + FilterListId = 873L, + Id = 923L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/negi_google_hplogo_block.txt" + }, + new + { + FilterListId = 874L, + Id = 924L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/negi_twitter_allow_save_multi_images.txt" + }, + new + { + FilterListId = 875L, + Id = 925L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/kame_filter.txt" + }, + new + { + FilterListId = 876L, + Id = 926L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/kotori_filter.txt" + }, + new + { + FilterListId = 877L, + Id = 927L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/kujira_filter.txt" + }, + new + { + FilterListId = 878L, + Id = 928L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/ichigo_filter.txt" + }, + new + { + FilterListId = 879L, + Id = 929L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/tamago_filter.txt" + }, + new + { + FilterListId = 881L, + Id = 930L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/youtube_wo_tonikaku_filter.txt" + }, + new + { + FilterListId = 882L, + Id = 931L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/eEIi0A5L/adblock_filter/master/all.txt" + }, + new + { + FilterListId = 884L, + Id = 932L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/finnish-easylist-addition/finnish-easylist-addition/master/Finland_adb.txt" + }, + new + { + FilterListId = 885L, + Id = 933L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Afghanistan.txt" + }, + new + { + FilterListId = 886L, + Id = 934L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Aland.txt" + }, + new + { + FilterListId = 887L, + Id = 935L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Albania.txt" + }, + new + { + FilterListId = 888L, + Id = 936L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Algeria.txt" + }, + new + { + FilterListId = 889L, + Id = 937L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/AmericanSamoa.txt" + }, + new + { + FilterListId = 890L, + Id = 938L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Andorra.txt" + }, + new + { + FilterListId = 891L, + Id = 939L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Angola.txt" + }, + new + { + FilterListId = 892L, + Id = 940L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Anguilla.txt" + }, + new + { + FilterListId = 893L, + Id = 941L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Antarctica.txt" + }, + new + { + FilterListId = 894L, + Id = 942L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/AntiguaAndBarbuda.txt" + }, + new + { + FilterListId = 895L, + Id = 943L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Argentina.txt" + }, + new + { + FilterListId = 896L, + Id = 944L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Armenia.txt" + }, + new + { + FilterListId = 897L, + Id = 945L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/AscensionIsland.txt" + }, + new + { + FilterListId = 898L, + Id = 946L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Australia.txt" + }, + new + { + FilterListId = 899L, + Id = 947L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Austria.txt" + }, + new + { + FilterListId = 900L, + Id = 948L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Azerbaijan.txt" + }, + new + { + FilterListId = 901L, + Id = 949L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bahamas.txt" + }, + new + { + FilterListId = 902L, + Id = 950L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bahrain.txt" + }, + new + { + FilterListId = 903L, + Id = 951L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bangladesh.txt" + }, + new + { + FilterListId = 904L, + Id = 952L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Belarus.txt" + }, + new + { + FilterListId = 905L, + Id = 953L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Belgium.txt" + }, + new + { + FilterListId = 906L, + Id = 954L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Belize.txt" + }, + new + { + FilterListId = 907L, + Id = 955L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bermuda.txt" + }, + new + { + FilterListId = 908L, + Id = 956L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bhutan.txt" + }, + new + { + FilterListId = 909L, + Id = 957L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bolivia.txt" + }, + new + { + FilterListId = 910L, + Id = 958L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bonaire.txt" + }, + new + { + FilterListId = 911L, + Id = 959L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/BosniaAndHerzegovina.txt" + }, + new + { + FilterListId = 912L, + Id = 960L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Botswana.txt" + }, + new + { + FilterListId = 913L, + Id = 961L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Brazil.txt" + }, + new + { + FilterListId = 914L, + Id = 962L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/BritishIndianOceanTerritory.txt" + }, + new + { + FilterListId = 915L, + Id = 963L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/BritishVirginIslands.txt" + }, + new + { + FilterListId = 916L, + Id = 964L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Bulgaria.txt" + }, + new + { + FilterListId = 917L, + Id = 965L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/BurkinaFaso.txt" + }, + new + { + FilterListId = 918L, + Id = 966L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Burundi.txt" + }, + new + { + FilterListId = 919L, + Id = 967L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Cambodia.txt" + }, + new + { + FilterListId = 920L, + Id = 968L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Cameroon.txt" + }, + new + { + FilterListId = 921L, + Id = 969L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Canada.txt" + }, + new + { + FilterListId = 922L, + Id = 970L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CapeVerde.txt" + }, + new + { + FilterListId = 923L, + Id = 971L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Catalonia.txt" + }, + new + { + FilterListId = 924L, + Id = 972L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CaymanIslands.txt" + }, + new + { + FilterListId = 925L, + Id = 973L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CentralAfricanRepublic.txt" + }, + new + { + FilterListId = 926L, + Id = 974L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Chile.txt" + }, + new + { + FilterListId = 927L, + Id = 975L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/ChinaPeoplesRepublicof.txt" + }, + new + { + FilterListId = 928L, + Id = 976L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/ChristmasIsland.txt" + }, + new + { + FilterListId = 929L, + Id = 977L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CocosKeelingIslands.txt" + }, + new + { + FilterListId = 930L, + Id = 978L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Colombia.txt" + }, + new + { + FilterListId = 931L, + Id = 979L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CongoKinshasa.txt" + }, + new + { + FilterListId = 932L, + Id = 980L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CookIslands.txt" + }, + new + { + FilterListId = 933L, + Id = 981L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CostaRica.txt" + }, + new + { + FilterListId = 934L, + Id = 982L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Croatia.txt" + }, + new + { + FilterListId = 935L, + Id = 983L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Cuba.txt" + }, + new + { + FilterListId = 936L, + Id = 984L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Cyprus.txt" + }, + new + { + FilterListId = 937L, + Id = 985L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/CzechRepublic.txt" + }, + new + { + FilterListId = 938L, + Id = 986L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Denmark.txt" + }, + new + { + FilterListId = 939L, + Id = 987L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Djibouti.txt" + }, + new + { + FilterListId = 940L, + Id = 988L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Dominica.txt" + }, + new + { + FilterListId = 941L, + Id = 989L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/DominicanRepublic.txt" + }, + new + { + FilterListId = 942L, + Id = 990L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Ecuador.txt" + }, + new + { + FilterListId = 943L, + Id = 991L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Egypt.txt" + }, + new + { + FilterListId = 944L, + Id = 992L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/ElSalvador.txt" + }, + new + { + FilterListId = 945L, + Id = 993L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/EquatorialGuinea.txt" + }, + new + { + FilterListId = 946L, + Id = 994L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Estonia.txt" + }, + new + { + FilterListId = 947L, + Id = 995L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/EuropeanUnion.txt" + }, + new + { + FilterListId = 948L, + Id = 996L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/FaeroeIslands.txt" + }, + new + { + FilterListId = 949L, + Id = 997L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/FederatedStatesOfMicronesia.txt" + }, + new + { + FilterListId = 950L, + Id = 998L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Fiji.txt" + }, + new + { + FilterListId = 951L, + Id = 999L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Finland.txt" + }, + new + { + FilterListId = 952L, + Id = 1000L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/France.txt" + }, + new + { + FilterListId = 953L, + Id = 1001L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/FrenchPolynesia.txt" + }, + new + { + FilterListId = 954L, + Id = 1002L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/FrenchSouthernAndAntarcticLands.txt" + }, + new + { + FilterListId = 955L, + Id = 1003L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/GaboneseRepublic.txt" + }, + new + { + FilterListId = 956L, + Id = 1004L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Gambia.txt" + }, + new + { + FilterListId = 957L, + Id = 1005L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/GazaStrip.txt" + }, + new + { + FilterListId = 958L, + Id = 1006L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Georgia.txt" + }, + new + { + FilterListId = 959L, + Id = 1007L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Germany.txt" + }, + new + { + FilterListId = 960L, + Id = 1008L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Ghana.txt" + }, + new + { + FilterListId = 961L, + Id = 1009L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Greece.txt" + }, + new + { + FilterListId = 962L, + Id = 1010L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Greenland.txt" + }, + new + { + FilterListId = 963L, + Id = 1011L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Grenada.txt" + }, + new + { + FilterListId = 964L, + Id = 1012L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guadeloupe.txt" + }, + new + { + FilterListId = 965L, + Id = 1013L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guam.txt" + }, + new + { + FilterListId = 966L, + Id = 1014L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guatemala.txt" + }, + new + { + FilterListId = 967L, + Id = 1015L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guernsey.txt" + }, + new + { + FilterListId = 968L, + Id = 1016L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guinea.txt" + }, + new + { + FilterListId = 969L, + Id = 1017L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Guyana.txt" + }, + new + { + FilterListId = 970L, + Id = 1018L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Haiti.txt" + }, + new + { + FilterListId = 971L, + Id = 1019L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/HeardIslandAndMcDonaldIslands.txt" + }, + new + { + FilterListId = 972L, + Id = 1020L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Honduras.txt" + }, + new + { + FilterListId = 973L, + Id = 1021L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/HongKong.txt" + }, + new + { + FilterListId = 974L, + Id = 1022L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Hungary.txt" + }, + new + { + FilterListId = 975L, + Id = 1023L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Iceland.txt" + }, + new + { + FilterListId = 976L, + Id = 1024L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/India.txt" + }, + new + { + FilterListId = 977L, + Id = 1025L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Indonesia.txt" + }, + new + { + FilterListId = 978L, + Id = 1026L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Iran.txt" + }, + new + { + FilterListId = 979L, + Id = 1027L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Iraq.txt" + }, + new + { + FilterListId = 980L, + Id = 1028L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Ireland.txt" + }, + new + { + FilterListId = 981L, + Id = 1029L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/IsleofMan.txt" + }, + new + { + FilterListId = 982L, + Id = 1030L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Israel.txt" + }, + new + { + FilterListId = 983L, + Id = 1031L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Italy.txt" + }, + new + { + FilterListId = 984L, + Id = 1032L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/IvoryCoast.txt" + }, + new + { + FilterListId = 985L, + Id = 1033L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Japan.txt" + }, + new + { + FilterListId = 986L, + Id = 1034L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Jersey.txt" + }, + new + { + FilterListId = 987L, + Id = 1035L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Jordan.txt" + }, + new + { + FilterListId = 988L, + Id = 1036L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Kazakhstan.txt" + }, + new + { + FilterListId = 989L, + Id = 1037L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Kenya.txt" + }, + new + { + FilterListId = 990L, + Id = 1038L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Kiribati.txt" + }, + new + { + FilterListId = 991L, + Id = 1039L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Kuwait.txt" + }, + new + { + FilterListId = 992L, + Id = 1040L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Kyrgyzstan.txt" + }, + new + { + FilterListId = 993L, + Id = 1041L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Laos.txt" + }, + new + { + FilterListId = 994L, + Id = 1042L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Latvia.txt" + }, + new + { + FilterListId = 995L, + Id = 1043L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Lebanon.txt" + }, + new + { + FilterListId = 996L, + Id = 1044L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Libya.txt" + }, + new + { + FilterListId = 997L, + Id = 1045L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Liechtenstein.txt" + }, + new + { + FilterListId = 998L, + Id = 1046L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Lithuania.txt" + }, + new + { + FilterListId = 999L, + Id = 1047L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Luxembourg.txt" + }, + new + { + FilterListId = 1000L, + Id = 1048L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Macau.txt" + }, + new + { + FilterListId = 1001L, + Id = 1049L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Macedonia.txt" + }, + new + { + FilterListId = 1002L, + Id = 1050L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Madagascar.txt" + }, + new + { + FilterListId = 1003L, + Id = 1051L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Malawi.txt" + }, + new + { + FilterListId = 1004L, + Id = 1052L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Malaysia.txt" + }, + new + { + FilterListId = 1005L, + Id = 1053L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mali.txt" + }, + new + { + FilterListId = 1006L, + Id = 1054L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Malta.txt" + }, + new + { + FilterListId = 1007L, + Id = 1055L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mauritania.txt" + }, + new + { + FilterListId = 1008L, + Id = 1056L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mauritius.txt" + }, + new + { + FilterListId = 1009L, + Id = 1057L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mayotte.txt" + }, + new + { + FilterListId = 1010L, + Id = 1058L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mexico.txt" + }, + new + { + FilterListId = 1011L, + Id = 1059L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Moldova.txt" + }, + new + { + FilterListId = 1012L, + Id = 1060L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mongolia.txt" + }, + new + { + FilterListId = 1013L, + Id = 1061L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Montenegro.txt" + }, + new + { + FilterListId = 1014L, + Id = 1062L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Montserrat.txt" + }, + new + { + FilterListId = 1015L, + Id = 1063L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Morocco.txt" + }, + new + { + FilterListId = 1016L, + Id = 1064L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Mozambique.txt" + }, + new + { + FilterListId = 1017L, + Id = 1065L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Namibia.txt" + }, + new + { + FilterListId = 1018L, + Id = 1066L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Nauru.txt" + }, + new + { + FilterListId = 1019L, + Id = 1067L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Nepal.txt" + }, + new + { + FilterListId = 1020L, + Id = 1068L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Netherlands.txt" + }, + new + { + FilterListId = 1021L, + Id = 1069L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/NewCaledonia.txt" + }, + new + { + FilterListId = 1022L, + Id = 1070L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/NewZealand.txt" + }, + new + { + FilterListId = 1023L, + Id = 1071L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Nicaragua.txt" + }, + new + { + FilterListId = 1024L, + Id = 1072L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Niger.txt" + }, + new + { + FilterListId = 1025L, + Id = 1073L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Nigeria.txt" + }, + new + { + FilterListId = 1026L, + Id = 1074L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Niue.txt" + }, + new + { + FilterListId = 1027L, + Id = 1075L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/NorfolkIsland.txt" + }, + new + { + FilterListId = 1028L, + Id = 1076L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/NorthernMarianaIslands.txt" + }, + new + { + FilterListId = 1029L, + Id = 1077L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Norway.txt" + }, + new + { + FilterListId = 1030L, + Id = 1078L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Oman.txt" + }, + new + { + FilterListId = 1031L, + Id = 1079L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Pakistan.txt" + }, + new + { + FilterListId = 1032L, + Id = 1080L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Palau.txt" + }, + new + { + FilterListId = 1033L, + Id = 1081L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Palestine.txt" + }, + new + { + FilterListId = 1034L, + Id = 1082L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Panama.txt" + }, + new + { + FilterListId = 1035L, + Id = 1083L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Paraguay.txt" + }, + new + { + FilterListId = 1036L, + Id = 1084L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Peru.txt" + }, + new + { + FilterListId = 1037L, + Id = 1085L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Philippines.txt" + }, + new + { + FilterListId = 1038L, + Id = 1086L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/PitcairnIslands.txt" + }, + new + { + FilterListId = 1039L, + Id = 1087L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Poland.txt" + }, + new + { + FilterListId = 1040L, + Id = 1088L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Portugal.txt" + }, + new + { + FilterListId = 1041L, + Id = 1089L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/PuertoRico.txt" + }, + new + { + FilterListId = 1042L, + Id = 1090L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Qatar.txt" + }, + new + { + FilterListId = 1043L, + Id = 1091L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Romania.txt" + }, + new + { + FilterListId = 1044L, + Id = 1092L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Russia.txt" + }, + new + { + FilterListId = 1045L, + Id = 1093L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Rwanda.txt" + }, + new + { + FilterListId = 1047L, + Id = 1094L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaintHelena.txt" + }, + new + { + FilterListId = 1048L, + Id = 1095L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaintLucia.txt" + }, + new + { + FilterListId = 1049L, + Id = 1096L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaintPierreAndMiquelon.txt" + }, + new + { + FilterListId = 1050L, + Id = 1097L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaintVincentAndGrenadines.txt" + }, + new + { + FilterListId = 1051L, + Id = 1098L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Samoa.txt" + }, + new + { + FilterListId = 1052L, + Id = 1099L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SanMarino.txt" + }, + new + { + FilterListId = 1053L, + Id = 1100L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaoTomeAndPrincipe.txt" + }, + new + { + FilterListId = 1054L, + Id = 1101L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SaudiArabia.txt" + }, + new + { + FilterListId = 1055L, + Id = 1102L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Senegal.txt" + }, + new + { + FilterListId = 1056L, + Id = 1103L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Serbia.txt" + }, + new + { + FilterListId = 1057L, + Id = 1104L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Seychelles.txt" + }, + new + { + FilterListId = 1058L, + Id = 1105L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SierraLeone.txt" + }, + new + { + FilterListId = 1059L, + Id = 1106L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Singapore.txt" + }, + new + { + FilterListId = 1060L, + Id = 1107L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SintMaarten.txt" + }, + new + { + FilterListId = 1061L, + Id = 1108L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Slovakia.txt" + }, + new + { + FilterListId = 1062L, + Id = 1109L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Slovenia.txt" + }, + new + { + FilterListId = 1063L, + Id = 1110L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Somalia.txt" + }, + new + { + FilterListId = 1064L, + Id = 1111L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SouthAfrica.txt" + }, + new + { + FilterListId = 1065L, + Id = 1112L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SouthGeorgiaAndSouthSandwichIslands.txt" + }, + new + { + FilterListId = 1066L, + Id = 1113L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SouthKorea.txt" + }, + new + { + FilterListId = 1067L, + Id = 1114L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Spain.txt" + }, + new + { + FilterListId = 1068L, + Id = 1115L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/SriLanka.txt" + }, + new + { + FilterListId = 1069L, + Id = 1116L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Sudan.txt" + }, + new + { + FilterListId = 1070L, + Id = 1117L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Suriname.txt" + }, + new + { + FilterListId = 1071L, + Id = 1118L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Sweden.txt" + }, + new + { + FilterListId = 1072L, + Id = 1119L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Switzerland.txt" + }, + new + { + FilterListId = 1073L, + Id = 1120L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Syria.txt" + }, + new + { + FilterListId = 1074L, + Id = 1121L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Taiwan.txt" + }, + new + { + FilterListId = 1075L, + Id = 1122L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tajikistan.txt" + }, + new + { + FilterListId = 1076L, + Id = 1123L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tanzania.txt" + }, + new + { + FilterListId = 1077L, + Id = 1124L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Thailand.txt" + }, + new + { + FilterListId = 1078L, + Id = 1125L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/TimorLeste.txt" + }, + new + { + FilterListId = 1079L, + Id = 1126L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Togo.txt" + }, + new + { + FilterListId = 1080L, + Id = 1127L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tokelau.txt" + }, + new + { + FilterListId = 1081L, + Id = 1128L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tonga.txt" + }, + new + { + FilterListId = 1082L, + Id = 1129L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/TrinidadAndTobago.txt" + }, + new + { + FilterListId = 1083L, + Id = 1130L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tunisia.txt" + }, + new + { + FilterListId = 1084L, + Id = 1131L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Turkey.txt" + }, + new + { + FilterListId = 1085L, + Id = 1132L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Turkmenistan.txt" + }, + new + { + FilterListId = 1086L, + Id = 1133L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/TurksAndCaicosIslands.txt" + }, + new + { + FilterListId = 1087L, + Id = 1134L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Tuvalu.txt" + }, + new + { + FilterListId = 1088L, + Id = 1135L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Uganda.txt" + }, + new + { + FilterListId = 1089L, + Id = 1136L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Ukraine.txt" + }, + new + { + FilterListId = 1090L, + Id = 1137L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/UnitedArabEmirates.txt" + }, + new + { + FilterListId = 1091L, + Id = 1138L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/UnitedKingdom.txt" + }, + new + { + FilterListId = 1092L, + Id = 1139L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/UnitedStatesofAmerica.txt" + }, + new + { + FilterListId = 1093L, + Id = 1140L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Uruguay.txt" + }, + new + { + FilterListId = 1094L, + Id = 1141L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Uzbekistan.txt" + }, + new + { + FilterListId = 1095L, + Id = 1142L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Vanuatu.txt" + }, + new + { + FilterListId = 1096L, + Id = 1143L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Venezuela.txt" + }, + new + { + FilterListId = 1097L, + Id = 1144L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Vietnam.txt" + }, + new + { + FilterListId = 1098L, + Id = 1145L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/WallisandFutuna.txt" + }, + new + { + FilterListId = 1099L, + Id = 1146L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/WesternSahara.txt" + }, + new + { + FilterListId = 1100L, + Id = 1147L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Zambia.txt" + }, + new + { + FilterListId = 1101L, + Id = 1148L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CountryCodesLists/Zimbabwe.txt" + }, + new + { + FilterListId = 1102L, + Id = 1149L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-Bulgarian-List.txt" + }, + new + { + FilterListId = 1103L, + Id = 1150L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-Clickbait-Blocklist.txt" + }, + new + { + FilterListId = 1104L, + Id = 1151L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-Japanese-3rd-Party-SNS-Filters.txt" + }, + new + { + FilterListId = 1105L, + Id = 1152L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-Japanese-Filters.txt" + }, + new + { + FilterListId = 1106L, + Id = 1153L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-Japanese-Paranoid-Filters.txt" + }, + new + { + FilterListId = 1107L, + Id = 1154L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABP-X-Files.txt" + }, + new + { + FilterListId = 1108L, + Id = 1155L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ABPindo.txt" + }, + new + { + FilterListId = 1109L, + Id = 1156L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/AakList.txt" + }, + new + { + FilterListId = 1110L, + Id = 1157L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/AdAway-Default-Blocklist.txt" + }, + new + { + FilterListId = 1111L, + Id = 1158L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-Filters-by-Gurudee.txt" + }, + new + { + FilterListId = 1112L, + Id = 1159L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-Iran.txt" + }, + new + { + FilterListId = 1113L, + Id = 1160L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-Korea.txt" + }, + new + { + FilterListId = 1114L, + Id = 1161L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-Persian.txt" + }, + new + { + FilterListId = 1115L, + Id = 1162L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-Polska.txt" + }, + new + { + FilterListId = 1116L, + Id = 1163L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-YouTube-Ads.txt" + }, + new + { + FilterListId = 1117L, + Id = 1164L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adblock-uBlock-Polish-Filters.txt" + }, + new + { + FilterListId = 1118L, + Id = 1165L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adguard-English-Filter.txt" + }, + new + { + FilterListId = 1119L, + Id = 1166L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Adware-Filters.txt" + }, + new + { + FilterListId = 1120L, + Id = 1167L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/AntiPubWeb.txt" + }, + new + { + FilterListId = 1121L, + Id = 1168L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Anudeep-Youtube.txt" + }, + new + { + FilterListId = 1122L, + Id = 1169L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Ayucat-Powerful.txt" + }, + new + { + FilterListId = 1123L, + Id = 1170L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/BLOGRAM-Analysis-Block-Filter-List-for-Japan.txt" + }, + new + { + FilterListId = 1124L, + Id = 1171L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/BLOGRAM-Basic-Filter-List-for-Japan.txt" + }, + new + { + FilterListId = 1126L, + Id = 1173L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Block-EU-Cookie-Shit-List.txt" + }, + new + { + FilterListId = 1127L, + Id = 1174L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Blockzilla.txt" + }, + new + { + FilterListId = 1128L, + Id = 1175L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/BreakingTheNews.txt" + }, + new + { + FilterListId = 1130L, + Id = 1176L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/CAMELEON-Hosts.txt" + }, + new + { + FilterListId = 1133L, + Id = 1177L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/CryptoWall-Ransomware-C2-Domain-blocklist.txt" + }, + new + { + FilterListId = 1135L, + Id = 1178L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/DNS-BH-Malware-Domains.txt" + }, + new + { + FilterListId = 1139L, + Id = 1179L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Disconnect-Malware-Filter.txt" + }, + new + { + FilterListId = 1140L, + Id = 1180L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Dshield-Suspicious-High.txt" + }, + new + { + FilterListId = 1141L, + Id = 1181L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Dshield-Suspicious-Low.txt" + }, + new + { + FilterListId = 1142L, + Id = 1182L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Dshield-Suspicious-Medium.txt" + }, + new + { + FilterListId = 1143L, + Id = 1183L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/EasyList-Czech-Slovak.txt" + }, + new + { + FilterListId = 1144L, + Id = 1184L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/EasyList-Dutch.txt" + }, + new + { + FilterListId = 1146L, + Id = 1185L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/EasyList-Italy.txt" + }, + new + { + FilterListId = 1148L, + Id = 1186L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/EasyList-Liste-FR.txt" + }, + new + { + FilterListId = 1149L, + Id = 1187L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/EasyList-Thailand.txt" + }, + new + { + FilterListId = 1151L, + Id = 1188L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/FadeMind-addSpam.txt" + }, + new + { + FilterListId = 1152L, + Id = 1189L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Fanboy-Annoyances-List.txt" + }, + new + { + FilterListId = 1153L, + Id = 1190L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Filtros-Nauscopicos.txt" + }, + new + { + FilterListId = 1154L, + Id = 1191L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Finnish-AntiSocial.txt" + }, + new + { + FilterListId = 1155L, + Id = 1192L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/GandJ-Hosts.txt" + }, + new + { + FilterListId = 1156L, + Id = 1193L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Greek-AdBlock-Filter.txt" + }, + new + { + FilterListId = 1157L, + Id = 1194L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Hant05080-Filters.txt" + }, + new + { + FilterListId = 1158L, + Id = 1195L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Henning-VanRaumle-Youtube.txt" + }, + new + { + FilterListId = 1159L, + Id = 1196L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Hufilter.txt" + }, + new + { + FilterListId = 1160L, + Id = 1197L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/HorusTeknoloji/TR-PhishingList/master/url-lists.txt" + }, + new + { + FilterListId = 1161L, + Id = 1198L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ImmortalMalwareDomains.txt" + }, + new + { + FilterListId = 1162L, + Id = 1199L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/JapaneseSiteAdblockFilterver2.txt" + }, + new + { + FilterListId = 1163L, + Id = 1200L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://phishing.army/download/phishing_army_blocklist_extended.txt" + }, + new + { + FilterListId = 1164L, + Id = 1201L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/HorusTeknoloji/TR-PhishingList/master/ip-lists.txt" + }, + new + { + FilterListId = 1165L, + Id = 1202L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/LatvianList.txt" + }, + new + { + FilterListId = 1166L, + Id = 1203L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Lead-Generator.txt" + }, + new + { + FilterListId = 1167L, + Id = 1204L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ListeAR.txt" + }, + new + { + FilterListId = 1168L, + Id = 1205L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Locky-Ransomware-C2-Domain-Blocklist.txt" + }, + new + { + FilterListId = 1169L, + Id = 1206L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Malware-Domains-Just-Domains.txt" + }, + new + { + FilterListId = 1172L, + Id = 1207L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Mat1th-DNS-add-block.txt" + }, + new + { + FilterListId = 1173L, + Id = 1208L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Mayvs-Private-Adblock-Filters.txt" + }, + new + { + FilterListId = 1174L, + Id = 1209L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Metaphoricgiraffe-Privacy-Filters.txt" + }, + new + { + FilterListId = 1175L, + Id = 1210L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Michael-Trimms-Hosts.txt" + }, + new + { + FilterListId = 1176L, + Id = 1211L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Mitchell-Krogs-Badd-Boyz-Hosts.txt" + }, + new + { + FilterListId = 1179L, + Id = 1212L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Notracking-hostnames.txt" + }, + new + { + FilterListId = 1180L, + Id = 1213L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/PLgeneral.txt" + }, + new + { + FilterListId = 1182L, + Id = 1214L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Piwik-Spam.txt" + }, + new + { + FilterListId = 1183L, + Id = 1215L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/PopupBlocker.txt" + }, + new + { + FilterListId = 1184L, + Id = 1216L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Prebake-Obtrusive.txt" + }, + new + { + FilterListId = 1185L, + Id = 1217L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Prigent-Malware.txt" + }, + new + { + FilterListId = 1187L, + Id = 1218L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Quidsup-Malicious.txt" + }, + new + { + FilterListId = 1189L, + Id = 1219L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ROad-Block.txt" + }, + new + { + FilterListId = 1190L, + Id = 1220L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/RU-AdList.txt" + }, + new + { + FilterListId = 1191L, + Id = 1221L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/RUAdListBitBlock.txt" + }, + new + { + FilterListId = 1192L, + Id = 1222L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/RUAdListCounters.txt" + }, + new + { + FilterListId = 1193L, + Id = 1223L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Ransomware-Domain-Blocklist.txt" + }, + new + { + FilterListId = 1194L, + Id = 1224L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/SVN-Slovenian.txt" + }, + new + { + FilterListId = 1196L, + Id = 1225L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/SatterlysAdblockPlusFilters.txt" + }, + new + { + FilterListId = 1197L, + Id = 1226L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Schacks-Adblock-Plus-Liste.txt" + }, + new + { + FilterListId = 1199L, + Id = 1227L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Spam-Assassin-Bill-Stearns.txt" + }, + new + { + FilterListId = 1202L, + Id = 1228L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Fakenews.txt" + }, + new + { + FilterListId = 1203L, + Id = 1229L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Gambling.txt" + }, + new + { + FilterListId = 1204L, + Id = 1230L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Hosts.txt" + }, + new + { + FilterListId = 1205L, + Id = 1231L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Porn.txt" + }, + new + { + FilterListId = 1206L, + Id = 1232L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Risky-Hosts.txt" + }, + new + { + FilterListId = 1207L, + Id = 1233L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Trackers.txt" + }, + new + { + FilterListId = 1209L, + Id = 1234L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Steven-Blacks-Unified-Hosts.txt" + }, + new + { + FilterListId = 1210L, + Id = 1235L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/TakoYachty-Gift-Card-Killer.txt" + }, + new + { + FilterListId = 1211L, + Id = 1236L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/TeslaCrypt-Ransomware-C2-Domain-Blocklist.txt" + }, + new + { + FilterListId = 1212L, + Id = 1237L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/TeslaCrypt-Ransomware-Payment-Sites-Domain-Blocklist.txt" + }, + new + { + FilterListId = 1213L, + Id = 1238L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/The-Hosts-File-Project.txt" + }, + new + { + FilterListId = 1214L, + Id = 1239L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Thoughtconverge-AdBlock-Filters.txt" + }, + new + { + FilterListId = 1215L, + Id = 1240L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Tofu-Filter.txt" + }, + new + { + FilterListId = 1216L, + Id = 1241L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/TorrentLocker-Ransomware-C2-Domain-Blocklist.txt" + }, + new + { + FilterListId = 1217L, + Id = 1242L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/TorrentLocker-Ransomware-Payment-Sites-Domain-Blocklist.txt" + }, + new + { + FilterListId = 1218L, + Id = 1243L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Turk-adlist.txt" + }, + new + { + FilterListId = 1220L, + Id = 1244L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Wiltteri.txt" + }, + new + { + FilterListId = 1221L, + Id = 1245L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/WindowsSpyBlocker7.txt" + }, + new + { + FilterListId = 1222L, + Id = 1246L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/WindowsSpyBlocker81.txt" + }, + new + { + FilterListId = 1223L, + Id = 1247L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/Yhonay-AntiPopAds.txt" + }, + new + { + FilterListId = 1224L, + Id = 1248L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/YousList.txt" + }, + new + { + FilterListId = 1225L, + Id = 1249L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/ZeuS-Domain-Blocklist-Bad-Domains.txt" + }, + new + { + FilterListId = 1226L, + Id = 1250L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/uAssetsFilters.txt" + }, + new + { + FilterListId = 1227L, + Id = 1251L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/uAssetsPrivacy.txt" + }, + new + { + FilterListId = 1228L, + Id = 1252L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/uAssetsUnbreak.txt" + }, + new + { + FilterListId = 1229L, + Id = 1253L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/uBOPersonalFilters.txt" + }, + new + { + FilterListId = 1230L, + Id = 1254L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/ParsedBlacklists/uBlockFiltersPlus.txt" + }, + new + { + FilterListId = 1243L, + Id = 1264L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CombinedBlacklists/CombinedBlackLists.txt" + }, + new + { + FilterListId = 1244L, + Id = 1265L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CombinedBlacklists/DeathbybandaidList.txt" + }, + new + { + FilterListId = 1245L, + Id = 1266L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deathbybandaid/piholeparser/master/Subscribable-Lists/CombinedWhitelists/CombinedWhiteLists.txt" + }, + new + { + FilterListId = 1247L, + Id = 1267L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-'Battle Royale' List.txt" + }, + new + { + FilterListId = 1247L, + Id = 1268L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-'Battle Royale' List.txt" + }, + new + { + FilterListId = 1278L, + Id = 1269L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://better.fyi/blockerList.txt" + }, + new + { + FilterListId = 1279L, + Id = 1270L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/olegwukr/polish-privacy-filters/master/adblock.txt" + }, + new + { + FilterListId = 1280L, + Id = 1271L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/olegwukr/polish-privacy-filters/master/anti-adblock.txt" + }, + new + { + FilterListId = 1281L, + Id = 1272L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/olegwukr/polish-privacy-filters/master/anti-adblock-suplement.txt" + }, + new + { + FilterListId = 1282L, + Id = 1273L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/koenrh/little-snitch-rules/master/apps.lsrules" + }, + new + { + FilterListId = 1283L, + Id = 1274L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AnXh3L0/blocklist/master/albanian-easylist-addition/Albania.txt" + }, + new + { + FilterListId = 1284L, + Id = 1275L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/finnish-easylist-addition/finnish-easylist-addition/master/annoyances/Finland_annoyances.txt" + }, + new + { + FilterListId = 1285L, + Id = 1276L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/theel0ja/uMatrix-rules/master/my-umatrix-rules.txt" + }, + new + { + FilterListId = 1286L, + Id = 1277L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/PoorPocketsMcNewHold/steamscamsites/master/steamscamsite.txt" + }, + new + { + FilterListId = 1288L, + Id = 1278L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/NanoAdblockerLab/NanoContrib/master/dist/placeholder-buster.txt" + }, + new + { + FilterListId = 1288L, + Id = 1279L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/NanoAdblockerLab/NanoContrib/master/dist/placeholder-buster.txt" + }, + new + { + FilterListId = 1289L, + Id = 1280L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/KnowYourMemePureBrowsingExperience.txt" + }, + new + { + FilterListId = 1289L, + Id = 1281L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/KnowYourMemePureBrowsingExperience.txt" + }, + new + { + FilterListId = 1290L, + Id = 1282L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Dandelion Sprout's Anti-Malware List.txt" + }, + new + { + FilterListId = 1290L, + Id = 1283L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Dandelion Sprout's Anti-Malware List.txt" + }, + new + { + FilterListId = 1291L, + Id = 1284L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/Twitter De-Politificator.txt" + }, + new + { + FilterListId = 1291L, + Id = 1285L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/Twitter De-Politificator.txt" + }, + new + { + FilterListId = 1292L, + Id = 1286L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Android Scum Class — Fake notification counters.txt" + }, + new + { + FilterListId = 1292L, + Id = 1287L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Android Scum Class — Fake notification counters.txt" + }, + new + { + FilterListId = 1293L, + Id = 1288L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Adblock list templates/Adblock list template -Hosts and uBlock Origin-.txt" + }, + new + { + FilterListId = 1293L, + Id = 1289L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Adblock list templates/Adblock list template -Hosts and uBlock Origin-.txt" + }, + new + { + FilterListId = 1294L, + Id = 1290L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://crapblock.theel0ja.info/even-cleaner-news-sites.txt" + }, + new + { + FilterListId = 1295L, + Id = 1291L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/intr0/iVOID.GitLab.io/raw/master/iVOID.hosts" + }, + new + { + FilterListId = 1295L, + Id = 1292L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://notabug.org/-intr0/iVOID/raw/master/iVOID.hosts" + }, + new + { + FilterListId = 1295L, + Id = 1293L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "http://w2caclgy62idhzyut23ucimqw5tsmfbl4b2iyjzpvngatast2fiqxbyd.onion/ivoid/iVOID.hosts" + }, + new + { + FilterListId = 1296L, + Id = 1294L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/intr0/DomainVoider/raw/master/DomainVoider" + }, + new + { + FilterListId = 1296L, + Id = 1295L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://notabug.org/-intr0/DomainVoider/raw/master/DomainVoider" + }, + new + { + FilterListId = 1296L, + Id = 1296L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "http://w2caclgy62idhzyut23ucimqw5tsmfbl4b2iyjzpvngatast2fiqxbyd.onion/domainvoider/DomainVoider.txt" + }, + new + { + FilterListId = 1297L, + Id = 1297L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/yourduskquibbles/webannoyances/master/filters/css_style_filters.txt" + }, + new + { + FilterListId = 1298L, + Id = 1298L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hosts.nfz.moe/full/hosts" + }, + new + { + FilterListId = 1299L, + Id = 1299L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hosts.nfz.moe/basic/hosts" + }, + new + { + FilterListId = 1299L, + Id = 1300L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/neoFelhz/neohosts/gh-pages/basic/hosts" + }, + new + { + FilterListId = 1300L, + Id = 1301L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.stopforumspam.com/downloads/toxic_domains_whole.txt" + }, + new + { + FilterListId = 1301L, + Id = 1302L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/hosts/test/hosts_facebook0.txt" + }, + new + { + FilterListId = 1301L, + Id = 1303L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/hosts/test/hosts_facebook0.txt" + }, + new + { + FilterListId = 1302L, + Id = 1304L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/hosts/hosts_leftover.txt" + }, + new + { + FilterListId = 1302L, + Id = 1305L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/hosts/hosts_leftover.txt" + }, + new + { + FilterListId = 1303L, + Id = 1306L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/other/MiscAnnoyance.txt" + }, + new + { + FilterListId = 1303L, + Id = 1307L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/other/MiscAnnoyance.txt" + }, + new + { + FilterListId = 1304L, + Id = 1308L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/filterlist/ubo-css/iHateCircles.txt" + }, + new + { + FilterListId = 1304L, + Id = 1309L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/filterlist/ubo-css/iHateCircles.txt" + }, + new + { + FilterListId = 1305L, + Id = 1310L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/adv/domains" + }, + new + { + FilterListId = 1306L, + Id = 1311L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/adv/urls" + }, + new + { + FilterListId = 1307L, + Id = 1312L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/aggressive/domains" + }, + new + { + FilterListId = 1308L, + Id = 1313L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/aggressive/urls" + }, + new + { + FilterListId = 1309L, + Id = 1314L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/alcohol/domains" + }, + new + { + FilterListId = 1310L, + Id = 1315L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/alcohol/urls" + }, + new + { + FilterListId = 1311L, + Id = 1316L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/anonvpn/domains" + }, + new + { + FilterListId = 1312L, + Id = 1317L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/anonvpn/urls" + }, + new + { + FilterListId = 1313L, + Id = 1318L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/bikes/domains" + }, + new + { + FilterListId = 1314L, + Id = 1319L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/bikes/urls" + }, + new + { + FilterListId = 1315L, + Id = 1320L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/boats/domains" + }, + new + { + FilterListId = 1316L, + Id = 1321L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/boats/urls" + }, + new + { + FilterListId = 1317L, + Id = 1322L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/cars/domains" + }, + new + { + FilterListId = 1318L, + Id = 1323L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/cars/urls" + }, + new + { + FilterListId = 1319L, + Id = 1324L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/planes/domains" + }, + new + { + FilterListId = 1320L, + Id = 1325L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/automobile/planes/urls" + }, + new + { + FilterListId = 1321L, + Id = 1326L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/chat/domains" + }, + new + { + FilterListId = 1322L, + Id = 1327L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/chat/urls" + }, + new + { + FilterListId = 1323L, + Id = 1328L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/costtraps/domains" + }, + new + { + FilterListId = 1324L, + Id = 1329L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/costtraps/urls" + }, + new + { + FilterListId = 1325L, + Id = 1330L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/dating/domains" + }, + new + { + FilterListId = 1326L, + Id = 1331L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/dating/urls" + }, + new + { + FilterListId = 1327L, + Id = 1332L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/downloads/domains" + }, + new + { + FilterListId = 1328L, + Id = 1333L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/downloads/urls" + }, + new + { + FilterListId = 1329L, + Id = 1334L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/drugs/domains" + }, + new + { + FilterListId = 1330L, + Id = 1335L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/drugs/urls" + }, + new + { + FilterListId = 1331L, + Id = 1336L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/dynamic/domains" + }, + new + { + FilterListId = 1332L, + Id = 1337L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/dynamic/urls" + }, + new + { + FilterListId = 1333L, + Id = 1338L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/education/schools/domains" + }, + new + { + FilterListId = 1334L, + Id = 1339L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/education/schools/urls" + }, + new + { + FilterListId = 1335L, + Id = 1340L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/banking/domains" + }, + new + { + FilterListId = 1336L, + Id = 1341L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/banking/urls" + }, + new + { + FilterListId = 1337L, + Id = 1342L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/insurance/domains" + }, + new + { + FilterListId = 1338L, + Id = 1343L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/insurance/urls" + }, + new + { + FilterListId = 1339L, + Id = 1344L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/moneylending/domains" + }, + new + { + FilterListId = 1340L, + Id = 1345L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/moneylending/urls" + }, + new + { + FilterListId = 1341L, + Id = 1346L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/other/domains" + }, + new + { + FilterListId = 1342L, + Id = 1347L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/other/urls" + }, + new + { + FilterListId = 1343L, + Id = 1348L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/realestate/domains" + }, + new + { + FilterListId = 1344L, + Id = 1349L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/realestate/urls" + }, + new + { + FilterListId = 1345L, + Id = 1350L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/trading/domains" + }, + new + { + FilterListId = 1346L, + Id = 1351L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/finance/trading/urls" + }, + new + { + FilterListId = 1347L, + Id = 1352L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/fortunetelling/domains" + }, + new + { + FilterListId = 1348L, + Id = 1353L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/fortunetelling/urls" + }, + new + { + FilterListId = 1349L, + Id = 1354L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/forum/domains" + }, + new + { + FilterListId = 1350L, + Id = 1355L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/forum/urls" + }, + new + { + FilterListId = 1351L, + Id = 1356L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/gamble/domains" + }, + new + { + FilterListId = 1352L, + Id = 1357L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/gamble/urls" + }, + new + { + FilterListId = 1353L, + Id = 1358L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/government/domains" + }, + new + { + FilterListId = 1354L, + Id = 1359L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/government/urls" + }, + new + { + FilterListId = 1355L, + Id = 1360L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hacking/domains" + }, + new + { + FilterListId = 1356L, + Id = 1361L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hacking/urls" + }, + new + { + FilterListId = 1357L, + Id = 1362L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/cooking/domains" + }, + new + { + FilterListId = 1358L, + Id = 1363L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/cooking/urls" + }, + new + { + FilterListId = 1359L, + Id = 1364L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/games-misc/domains" + }, + new + { + FilterListId = 1360L, + Id = 1365L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/games-misc/urls" + }, + new + { + FilterListId = 1361L, + Id = 1366L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/games-online/domains" + }, + new + { + FilterListId = 1362L, + Id = 1367L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/games-online/urls" + }, + new + { + FilterListId = 1363L, + Id = 1368L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/gardening/domains" + }, + new + { + FilterListId = 1364L, + Id = 1369L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/gardening/urls" + }, + new + { + FilterListId = 1365L, + Id = 1370L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/pets/domains" + }, + new + { + FilterListId = 1366L, + Id = 1371L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hobby/pets/urls" + }, + new + { + FilterListId = 1367L, + Id = 1372L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/homestyle/domains" + }, + new + { + FilterListId = 1368L, + Id = 1373L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/homestyle/urls" + }, + new + { + FilterListId = 1369L, + Id = 1374L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hospitals/domains" + }, + new + { + FilterListId = 1370L, + Id = 1375L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/hospitals/urls" + }, + new + { + FilterListId = 1371L, + Id = 1376L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/imagehosting/domains" + }, + new + { + FilterListId = 1372L, + Id = 1377L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/imagehosting/urls" + }, + new + { + FilterListId = 1373L, + Id = 1378L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/isp/domains" + }, + new + { + FilterListId = 1374L, + Id = 1379L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/isp/urls" + }, + new + { + FilterListId = 1375L, + Id = 1380L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/jobsearch/domains" + }, + new + { + FilterListId = 1376L, + Id = 1381L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/jobsearch/urls" + }, + new + { + FilterListId = 1377L, + Id = 1382L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/library/domains" + }, + new + { + FilterListId = 1378L, + Id = 1383L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/library/urls" + }, + new + { + FilterListId = 1379L, + Id = 1384L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/military/domains" + }, + new + { + FilterListId = 1380L, + Id = 1385L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/military/urls" + }, + new + { + FilterListId = 1381L, + Id = 1386L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/models/domains" + }, + new + { + FilterListId = 1382L, + Id = 1387L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/models/urls" + }, + new + { + FilterListId = 1383L, + Id = 1388L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/movies/domains" + }, + new + { + FilterListId = 1384L, + Id = 1389L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/movies/urls" + }, + new + { + FilterListId = 1385L, + Id = 1390L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/music/domains" + }, + new + { + FilterListId = 1386L, + Id = 1391L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/music/urls" + }, + new + { + FilterListId = 1387L, + Id = 1392L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/news/domains" + }, + new + { + FilterListId = 1388L, + Id = 1393L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/news/urls" + }, + new + { + FilterListId = 1389L, + Id = 1394L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/podcasts/domains" + }, + new + { + FilterListId = 1390L, + Id = 1395L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/podcasts/urls" + }, + new + { + FilterListId = 1391L, + Id = 1396L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/politics/domains" + }, + new + { + FilterListId = 1392L, + Id = 1397L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/politics/urls" + }, + new + { + FilterListId = 1393L, + Id = 1398L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/porn/domains" + }, + new + { + FilterListId = 1394L, + Id = 1399L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/porn/urls" + }, + new + { + FilterListId = 1395L, + Id = 1400L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/radiotv/domains" + }, + new + { + FilterListId = 1396L, + Id = 1401L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/radiotv/urls" + }, + new + { + FilterListId = 1397L, + Id = 1402L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/humor/domains" + }, + new + { + FilterListId = 1398L, + Id = 1403L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/humor/urls" + }, + new + { + FilterListId = 1399L, + Id = 1404L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/martialarts/domains" + }, + new + { + FilterListId = 1400L, + Id = 1405L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/martialarts/urls" + }, + new + { + FilterListId = 1401L, + Id = 1406L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/restaurants/domains" + }, + new + { + FilterListId = 1402L, + Id = 1407L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/restaurants/urls" + }, + new + { + FilterListId = 1403L, + Id = 1408L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/sports/domains" + }, + new + { + FilterListId = 1404L, + Id = 1409L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/sports/urls" + }, + new + { + FilterListId = 1405L, + Id = 1410L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/travel/domains" + }, + new + { + FilterListId = 1406L, + Id = 1411L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/travel/urls" + }, + new + { + FilterListId = 1407L, + Id = 1412L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/wellness/domains" + }, + new + { + FilterListId = 1408L, + Id = 1413L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/recreation/wellness/urls" + }, + new + { + FilterListId = 1409L, + Id = 1414L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/redirector/domains" + }, + new + { + FilterListId = 1410L, + Id = 1415L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/redirector/urls" + }, + new + { + FilterListId = 1411L, + Id = 1416L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/religion/domains" + }, + new + { + FilterListId = 1412L, + Id = 1417L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/religion/urls" + }, + new + { + FilterListId = 1413L, + Id = 1418L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/remotecontrol/domains" + }, + new + { + FilterListId = 1414L, + Id = 1419L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/remotecontrol/urls" + }, + new + { + FilterListId = 1415L, + Id = 1420L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/ringtones/domains" + }, + new + { + FilterListId = 1416L, + Id = 1421L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/ringtones/urls" + }, + new + { + FilterListId = 1417L, + Id = 1422L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/science/astronomy/domains" + }, + new + { + FilterListId = 1418L, + Id = 1423L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/science/astronomy/urls" + }, + new + { + FilterListId = 1419L, + Id = 1424L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/science/chemistry/domains" + }, + new + { + FilterListId = 1420L, + Id = 1425L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/science/chemistry/urls" + }, + new + { + FilterListId = 1421L, + Id = 1426L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/searchengines/domains" + }, + new + { + FilterListId = 1422L, + Id = 1427L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/searchengines/urls" + }, + new + { + FilterListId = 1423L, + Id = 1428L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/sex/education/domains" + }, + new + { + FilterListId = 1424L, + Id = 1429L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/sex/education/urls" + }, + new + { + FilterListId = 1425L, + Id = 1430L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/sex/lingerie/domains" + }, + new + { + FilterListId = 1426L, + Id = 1431L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/sex/lingerie/urls" + }, + new + { + FilterListId = 1427L, + Id = 1432L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/shopping/domains" + }, + new + { + FilterListId = 1428L, + Id = 1433L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/shopping/urls" + }, + new + { + FilterListId = 1429L, + Id = 1434L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/socialnet/domains" + }, + new + { + FilterListId = 1430L, + Id = 1435L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/socialnet/urls" + }, + new + { + FilterListId = 1431L, + Id = 1436L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/spyware/domains" + }, + new + { + FilterListId = 1432L, + Id = 1437L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/spyware/urls" + }, + new + { + FilterListId = 1433L, + Id = 1438L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/tracker/domains" + }, + new + { + FilterListId = 1434L, + Id = 1439L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/tracker/urls" + }, + new + { + FilterListId = 1435L, + Id = 1440L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/updatesites/domains" + }, + new + { + FilterListId = 1436L, + Id = 1441L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/updatesites/urls" + }, + new + { + FilterListId = 1437L, + Id = 1442L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/urlshortener/domains" + }, + new + { + FilterListId = 1438L, + Id = 1443L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/urlshortener/urls" + }, + new + { + FilterListId = 1439L, + Id = 1444L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/violence/domains" + }, + new + { + FilterListId = 1440L, + Id = 1445L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/violence/urls" + }, + new + { + FilterListId = 1441L, + Id = 1446L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/warez/domains" + }, + new + { + FilterListId = 1442L, + Id = 1447L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/warez/urls" + }, + new + { + FilterListId = 1443L, + Id = 1448L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/weapons/domains" + }, + new + { + FilterListId = 1444L, + Id = 1449L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/weapons/urls" + }, + new + { + FilterListId = 1445L, + Id = 1450L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/webmail/domains" + }, + new + { + FilterListId = 1446L, + Id = 1451L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/webmail/urls" + }, + new + { + FilterListId = 1447L, + Id = 1452L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/webphone/domains" + }, + new + { + FilterListId = 1448L, + Id = 1453L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/webphone/urls" + }, + new + { + FilterListId = 1449L, + Id = 1454L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/webradio/domains" + }, + new + { + FilterListId = 1450L, + Id = 1455L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/webradio/urls" + }, + new + { + FilterListId = 1451L, + Id = 1456L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/webtv/domains" + }, + new + { + FilterListId = 1452L, + Id = 1457L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cbuijs/shallalist/master/webtv/urls" + }, + new + { + FilterListId = 1454L, + Id = 1458L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AnnoyingBannersAndOverlays.txt" + }, + new + { + FilterListId = 1454L, + Id = 1459L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AnnoyingBannersAndOverlays.txt" + }, + new + { + FilterListId = 1455L, + Id = 1460L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AnnoyancesList" + }, + new + { + FilterListId = 1455L, + Id = 1461L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AnnoyancesList" + }, + new + { + FilterListId = 1456L, + Id = 1462L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/SocialShareList.txt" + }, + new + { + FilterListId = 1456L, + Id = 1463L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/SocialShareList.txt" + }, + new + { + FilterListId = 1457L, + Id = 1464L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/PoorPocketsMcNewHold/SteamScamSites/master/steamscamsitesashes" + }, + new + { + FilterListId = 1458L, + Id = 1465L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/anudeepND/blacklist/master/facebook.txt" + }, + new + { + FilterListId = 1459L, + Id = 1466L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/AntiAstrologyList.txt" + }, + new + { + FilterListId = 1459L, + Id = 1467L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/AntiAstrologyList.txt" + }, + new + { + FilterListId = 1460L, + Id = 1468L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/ListForOldPeople.txt" + }, + new + { + FilterListId = 1460L, + Id = 1469L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/ListForOldPeople.txt" + }, + new + { + FilterListId = 1461L, + Id = 1470L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAmazonListForTwitch.txt" + }, + new + { + FilterListId = 1461L, + Id = 1471L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAmazonListForTwitch.txt" + }, + new + { + FilterListId = 1463L, + Id = 1472L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/CitizenXVIL/Hosts/master/Optimized_hosts_list.txt" + }, + new + { + FilterListId = 1464L, + Id = 1473L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/CitizenXVIL/Hosts/master/mobile domains.txt" + }, + new + { + FilterListId = 1465L, + Id = 1474L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/CitizenXVIL/Hosts/master/Youtube hosts.txt" + }, + new + { + FilterListId = 1466L, + Id = 1475L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Zykreh/vortexhosts/master/vortex.txt" + }, + new + { + FilterListId = 1467L, + Id = 1476L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Zykreh/vortexhosts/master/vortex_energized.txt" + }, + new + { + FilterListId = 1468L, + Id = 1477L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Zykreh/vortexhosts/master/vortex_experimental.txt" + }, + new + { + FilterListId = 1469L, + Id = 1478L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Zykreh/vortexhosts/master/vortex_lite.txt" + }, + new + { + FilterListId = 1470L, + Id = 1479L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/xtreme/formats/hosts.txt" + }, + new + { + FilterListId = 1471L, + Id = 1480L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://getadhell.com/standard-package.txt" + }, + new + { + FilterListId = 1473L, + Id = 1481L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ookangzheng/blahdns/master/hosts/blacklist.txt" + }, + new + { + FilterListId = 1473L, + Id = 1482L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://oooo.b-cdn.net/blahdns/adsblock.txt" + }, + new + { + FilterListId = 1474L, + Id = 1483L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ookangzheng/blahdns/master/hosts/whitelist.txt" + }, + new + { + FilterListId = 1477L, + Id = 1486L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hblock.molinero.dev/hosts_rpz.txt" + }, + new + { + FilterListId = 1478L, + Id = 1487L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hblock.molinero.dev/hosts_unbound.conf" + }, + new + { + FilterListId = 1479L, + Id = 1488L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hblock.molinero.dev/hosts_dnsmasq.conf" + }, + new + { + FilterListId = 1480L, + Id = 1489L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://oooo.b-cdn.net/blahdns/rpz.txt" + }, + new + { + FilterListId = 1484L, + Id = 1492L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/torrent.txt" + }, + new + { + FilterListId = 1485L, + Id = 1493L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ngosang/trackerslist/master/trackers_all.txt" + }, + new + { + FilterListId = 1486L, + Id = 1494L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ngosang/trackerslist/master/blacklist.txt" + }, + new + { + FilterListId = 1487L, + Id = 1495L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/quedlin/blacklist/master/domains" + }, + new + { + FilterListId = 1490L, + Id = 1496L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mitchellkrogza/Phishing.Database/master/phishing-domains-ACTIVE.txt" + }, + new + { + FilterListId = 1492L, + Id = 1497L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mitchellkrogza/Ultimate.Hosts.Blacklist/master/hosts.deny/hosts0.deny" + }, + new + { + FilterListId = 1493L, + Id = 1498L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/greatis/Anti-WebMiner/master/blacklist.txt" + }, + new + { + FilterListId = 1494L, + Id = 1499L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.carl.net/spam/access.txt" + }, + new + { + FilterListId = 1495L, + Id = 1500L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tankmohit/UnifiedHosts/master/hosts.all" + }, + new + { + FilterListId = 1496L, + Id = 1501L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://www.taz.net.au/Mail/SpamDomains" + }, + new + { + FilterListId = 1497L, + Id = 1502L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tankmohit/UnifiedHosts/master/whitelist" + }, + new + { + FilterListId = 1498L, + Id = 1503L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mitchellkrogza/Stop.Google.Analytics.Ghost.Spam.HOWTO/master/output/domains/ACTIVE/list" + }, + new + { + FilterListId = 1499L, + Id = 1504L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mitchellkrogza/Stop.Google.Analytics.Ghost.Spam.HOWTO/master/output/domains/INACTIVE/list" + }, + new + { + FilterListId = 1500L, + Id = 1505L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://cybercrime-tracker.net/all.php" + }, + new + { + FilterListId = 1501L, + Id = 1506L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/joelotz/URL_Blacklist/master/blacklist.csv" + }, + new + { + FilterListId = 1502L, + Id = 1507L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/oznu/dns-zone-blacklist/master/bind/zones.blacklist" + }, + new + { + FilterListId = 1503L, + Id = 1508L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/oznu/dns-zone-blacklist/master/dnsmasq/dnsmasq.blacklist" + }, + new + { + FilterListId = 1504L, + Id = 1509L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/oznu/dns-zone-blacklist/master/unbound/unbound.blacklist" + }, + new + { + FilterListId = 1505L, + Id = 1510L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ReddestDream/reddestdream.github.io/master/Projects/MinimalHostsCB/etc/MinimalHostsBlocker/minimalhosts" + }, + new + { + FilterListId = 1506L, + Id = 1511L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ReddestDream/reddestdream.github.io/master/Projects/MinimalHosts/etc/MinimalHostsBlocker/minimalhosts" + }, + new + { + FilterListId = 1507L, + Id = 1512L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://osint.bambenekconsulting.com/feeds/dga-feed.txt" + }, + new + { + FilterListId = 1508L, + Id = 1513L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://joewein.net/dl/bl/dom-bl-base.txt" + }, + new + { + FilterListId = 1509L, + Id = 1514L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://joewein.net/dl/bl/dom-bl.txt" + }, + new + { + FilterListId = 1510L, + Id = 1515L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://joewein.net/dl/bl/from-bl.txt" + }, + new + { + FilterListId = 1511L, + Id = 1516L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mitchellkrogza/Fail2Ban.WebExploits/master/input-source/exploits.list" + }, + new + { + FilterListId = 1513L, + Id = 1518L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/oleksiig/Squid-BlackList/master/denied_ext.conf" + }, + new + { + FilterListId = 1517L, + Id = 1519L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mitchellkrogza/Ultimate.Hosts.Blacklist/master/ips/ips0.list" + }, + new + { + FilterListId = 1520L, + Id = 1520L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hosts.ubuntu101.co.za/superhosts.deny" + }, + new + { + FilterListId = 1523L, + Id = 1521L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/newhosts-final.hosts" + }, + new + { + FilterListId = 1524L, + Id = 1522L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/combined-final-win.dat" + }, + new + { + FilterListId = 1525L, + Id = 1523L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/combined-final.p2p" + }, + new + { + FilterListId = 1526L, + Id = 1524L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=unbound&showintro=1&mimetype=plaintext" + }, + new + { + FilterListId = 1527L, + Id = 1525L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=bindconfig&showintro=1&mimetype=plaintext" + }, + new + { + FilterListId = 1529L, + Id = 1527L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/koreanlist.txt" + }, + new + { + FilterListId = 1530L, + Id = 1528L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bcye/Hello-Goodbye/master/filterlist.txt" + }, + new + { + FilterListId = 1531L, + Id = 1529L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kano1/I/master/adware_Scrip.txt" + }, + new + { + FilterListId = 1532L, + Id = 1530L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kano1/Kano/master/Spyware_Scrip.txt" + }, + new + { + FilterListId = 1533L, + Id = 1531L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/legacy.txt" + }, + new + { + FilterListId = 1534L, + Id = 1532L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hostsfile.mine.nu/hosts.ips" + }, + new + { + FilterListId = 1535L, + Id = 1533L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/WordPressTranslatorAssistant.txt" + }, + new + { + FilterListId = 1535L, + Id = 1534L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/WordPressTranslatorAssistant.txt" + }, + new + { + FilterListId = 1536L, + Id = 1535L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/RooneyMcNibNug/pihole-stuff/master/SNAFU.txt" + }, + new + { + FilterListId = 1537L, + Id = 1536L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easyprivacy.tpl" + }, + new + { + FilterListId = 1538L, + Id = 1537L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylist_noelemhide.tpl" + }, + new + { + FilterListId = 1539L, + Id = 1538L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easytest.tpl" + }, + new + { + FilterListId = 1540L, + Id = 1539L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistpolish.tpl" + }, + new + { + FilterListId = 1541L, + Id = 1540L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/exceptionrules.tpl" + }, + new + { + FilterListId = 1543L, + Id = 1542L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/koreanlist.tpl" + }, + new + { + FilterListId = 1544L, + Id = 1543L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistportuguese.tpl" + }, + new + { + FilterListId = 1545L, + Id = 1544L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/wiltteri/subscriptions/master/wiltteri.tpl" + }, + new + { + FilterListId = 1546L, + Id = 1545L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/wiltteri/subscriptions/master/wiltteri-reborn.tpl" + }, + new + { + FilterListId = 1547L, + Id = 1546L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/indianlist.tpl" + }, + new + { + FilterListId = 1548L, + Id = 1547L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/easylistspanish+easylist.txt" + }, + new + { + FilterListId = 1549L, + Id = 1548L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-msie.adblockplus.org/wiltteri+easylist.txt" + }, + new + { + FilterListId = 1550L, + Id = 1549L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/WebsiteStretcherVertical.txt" + }, + new + { + FilterListId = 1550L, + Id = 1550L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/WebsiteStretcherVertical.txt" + }, + new + { + FilterListId = 1551L, + Id = 1551L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/WebsiteStretcher4K.txt" + }, + new + { + FilterListId = 1551L, + Id = 1552L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/WebsiteStretcher4K.txt" + }, + new + { + FilterListId = 1552L, + Id = 1553L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/RedditTrashRemovalService.txt" + }, + new + { + FilterListId = 1552L, + Id = 1554L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/RedditTrashRemovalService.txt" + }, + new + { + FilterListId = 1554L, + Id = 1555L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/AntiPrayerTimesList.txt" + }, + new + { + FilterListId = 1554L, + Id = 1556L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/AntiPrayerTimesList.txt" + }, + new + { + FilterListId = 1555L, + Id = 1557L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bebasid/bebasid/master/releases/hosts" + }, + new + { + FilterListId = 1556L, + Id = 1558L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ColumWalsh/unsullied/master/unsullied.txt" + }, + new + { + FilterListId = 1557L, + Id = 1559L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DataMaster-2501/DataMaster-Android-AdBlock-Hosts/master/hosts" + }, + new + { + FilterListId = 1558L, + Id = 1560L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bogachenko/fuckfuckadblock/master/fuckfuckadblock.txt" + }, + new + { + FilterListId = 1559L, + Id = 1561L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/BreakingTheNews/BreakingTheNews.github.io/master/hosts" + }, + new + { + FilterListId = 1560L, + Id = 1562L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ruvelro/Halt-and-Block-Mining/master/HBmining.bat" + }, + new + { + FilterListId = 1561L, + Id = 1563L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jkrejcha/AdmiraList/master/AdmiraList.txt" + }, + new + { + FilterListId = 1562L, + Id = 1564L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mtxadmin/ublock/master/it" + }, + new + { + FilterListId = 1564L, + Id = 1566L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiCelebBirthList" + }, + new + { + FilterListId = 1564L, + Id = 1567L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiCelebBirthList" + }, + new + { + FilterListId = 1566L, + Id = 1570L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/biroloter/Mobile-Ad-Hosts/master/hosts" + }, + new + { + FilterListId = 1567L, + Id = 1571L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/101_optimized.txt" + }, + new + { + FilterListId = 1568L, + Id = 1572L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/2_optimized.txt" + }, + new + { + FilterListId = 1569L, + Id = 1573L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/16_optimized.txt" + }, + new + { + FilterListId = 1570L, + Id = 1574L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/6_optimized.txt" + }, + new + { + FilterListId = 1573L, + Id = 1575L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/qwIvan/privoxy-adfilter/master/adfilter.action" + }, + new + { + FilterListId = 1574L, + Id = 1576L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mtxadmin/ublock/master/hosts.txt" + }, + new + { + FilterListId = 1575L, + Id = 1577L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/TwitchEvenMorePureViewingExperience.txt" + }, + new + { + FilterListId = 1575L, + Id = 1578L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/TwitchEvenMorePureViewingExperience.txt" + }, + new + { + FilterListId = 1576L, + Id = 1579L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-'Custom cursors' List.txt" + }, + new + { + FilterListId = 1576L, + Id = 1580L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-'Custom cursors' List.txt" + }, + new + { + FilterListId = 1577L, + Id = 1581L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/dhowe/uAssets/master/filters/adnauseam.txt" + }, + new + { + FilterListId = 1578L, + Id = 1582L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/fabianmoronzirfas/block-facebook/master/block-facebook.lsrules" + }, + new + { + FilterListId = 1579L, + Id = 1583L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/ExtremelyCondensedList.txt" + }, + new + { + FilterListId = 1579L, + Id = 1584L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/ExtremelyCondensedList.txt" + }, + new + { + FilterListId = 1581L, + Id = 1585L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersAdGuard.txt" + }, + new + { + FilterListId = 1581L, + Id = 1586L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersAdGuard.txt" + }, + new + { + FilterListId = 1582L, + Id = 1587L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersABP.txt" + }, + new + { + FilterListId = 1582L, + Id = 1588L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersABP.txt" + }, + new + { + FilterListId = 1583L, + Id = 1589L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersPrivoxy.action" + }, + new + { + FilterListId = 1583L, + Id = 1590L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersPrivoxy.action" + }, + new + { + FilterListId = 1584L, + Id = 1591L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersDnsmasq.conf" + }, + new + { + FilterListId = 1584L, + Id = 1592L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersDnsmasq.conf" + }, + new + { + FilterListId = 1585L, + Id = 1593L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersHostsDeny.deny" + }, + new + { + FilterListId = 1585L, + Id = 1594L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersHostsDeny.deny" + }, + new + { + FilterListId = 1586L, + Id = 1595L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareABP.txt" + }, + new + { + FilterListId = 1586L, + Id = 1596L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwareABP.txt" + }, + new + { + FilterListId = 1587L, + Id = 1597L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareAdGuard.txt" + }, + new + { + FilterListId = 1587L, + Id = 1598L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwareAdGuard.txt" + }, + new + { + FilterListId = 1588L, + Id = 1599L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareTPL.tpl" + }, + new + { + FilterListId = 1588L, + Id = 1600L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwareTPL.tpl" + }, + new + { + FilterListId = 1589L, + Id = 1601L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwarePrivoxy.action" + }, + new + { + FilterListId = 1589L, + Id = 1602L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwarePrivoxy.action" + }, + new + { + FilterListId = 1590L, + Id = 1603L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareHosts.txt" + }, + new + { + FilterListId = 1590L, + Id = 1604L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwareHosts.txt" + }, + new + { + FilterListId = 1591L, + Id = 1605L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-'Google Hangouts' List.txt" + }, + new + { + FilterListId = 1591L, + Id = 1606L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-'Google Hangouts' List.txt" + }, + new + { + FilterListId = 1592L, + Id = 1607L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/RickrollLinkIdentifier.txt" + }, + new + { + FilterListId = 1592L, + Id = 1608L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/RickrollLinkIdentifier.txt" + }, + new + { + FilterListId = 1593L, + Id = 1609L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersPrivacy.txt" + }, + new + { + FilterListId = 1593L, + Id = 1610L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersPrivacy.txt" + }, + new + { + FilterListId = 1594L, + Id = 1611L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://theantisocialengineer.com/AntiSocial_Blacklist_Community_V1.txt" + }, + new + { + FilterListId = 1595L, + Id = 1612L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://phishing.army/download/phishing_army_blocklist.txt" + }, + new + { + FilterListId = 1596L, + Id = 1613L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://dehakkelaar.nl/lists/cryptojacking_campaign.list.txt" + }, + new + { + FilterListId = 1597L, + Id = 1614L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://dbl.oisd.nl/" + }, + new + { + FilterListId = 1597L, + Id = 1615L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dbl.txt" + }, + new + { + FilterListId = 1597L, + Id = 1616L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dbl.txt" + }, + new + { + FilterListId = 1598L, + Id = 1617L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hosts.oisd.nl/" + }, + new + { + FilterListId = 1598L, + Id = 1618L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/hosts.txt" + }, + new + { + FilterListId = 1598L, + Id = 1619L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/hosts.txt" + }, + new + { + FilterListId = 1599L, + Id = 1620L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://dblmobile.oisd.nl/" + }, + new + { + FilterListId = 1599L, + Id = 1621L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dbl_light.txt" + }, + new + { + FilterListId = 1599L, + Id = 1622L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dbl_light.txt" + }, + new + { + FilterListId = 1600L, + Id = 1623L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hostsmobile.oisd.nl/" + }, + new + { + FilterListId = 1600L, + Id = 1624L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/hosts_light.txt" + }, + new + { + FilterListId = 1600L, + Id = 1625L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/hosts_light.txt" + }, + new + { + FilterListId = 1601L, + Id = 1626L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/joeylane/hosts/master/hosts" + }, + new + { + FilterListId = 1603L, + Id = 1627L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-online.txt" + }, + new + { + FilterListId = 1603L, + Id = 1628L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-online.txt" + }, + new + { + FilterListId = 1603L, + Id = 1629L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-online.txt" + }, + new + { + FilterListId = 1604L, + Id = 1630L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/DailyMotionSimplicity.txt" + }, + new + { + FilterListId = 1604L, + Id = 1631L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/DailyMotionSimplicity.txt" + }, + new + { + FilterListId = 1605L, + Id = 1632L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiPPGList.txt" + }, + new + { + FilterListId = 1605L, + Id = 1633L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiPPGList.txt" + }, + new + { + FilterListId = 1606L, + Id = 1634L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Anti-Skype List.txt" + }, + new + { + FilterListId = 1606L, + Id = 1635L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Anti-Skype List.txt" + }, + new + { + FilterListId = 1607L, + Id = 1636L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Laicure/HostsY_hosts/master/shithosts" + }, + new + { + FilterListId = 1608L, + Id = 1637L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_base/sb_unified_hosts_base.lsrules" + }, + new + { + FilterListId = 1609L, + Id = 1638L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-gambling-porn-social/sb_unified_hosts_fakenews-gambling-porn-social.lsrules" + }, + new + { + FilterListId = 1610L, + Id = 1639L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-gambling-porn/sb_unified_hosts_fakenews-gambling-porn.lsrules" + }, + new + { + FilterListId = 1611L, + Id = 1640L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-gambling-social/sb_unified_hosts_fakenews-gambling-social.lsrules" + }, + new + { + FilterListId = 1612L, + Id = 1641L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-gambling/sb_unified_hosts_fakenews-gambling.lsrules" + }, + new + { + FilterListId = 1613L, + Id = 1642L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-porn-social/sb_unified_hosts_fakenews-porn-social.lsrules" + }, + new + { + FilterListId = 1614L, + Id = 1643L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-porn/sb_unified_hosts_fakenews-porn.lsrules" + }, + new + { + FilterListId = 1615L, + Id = 1644L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews-social/sb_unified_hosts_fakenews-social.lsrules" + }, + new + { + FilterListId = 1616L, + Id = 1645L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_fakenews/sb_unified_hosts_fakenews.lsrules" + }, + new + { + FilterListId = 1617L, + Id = 1646L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_gambling-porn-social/sb_unified_hosts_gambling-porn-social.lsrules" + }, + new + { + FilterListId = 1618L, + Id = 1647L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_gambling-porn/sb_unified_hosts_gambling-porn.lsrules" + }, + new + { + FilterListId = 1619L, + Id = 1648L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_gambling-social/sb_unified_hosts_gambling-social.lsrules" + }, + new + { + FilterListId = 1620L, + Id = 1649L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_gambling/sb_unified_hosts_gambling.lsrules" + }, + new + { + FilterListId = 1621L, + Id = 1650L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_porn-social/sb_unified_hosts_porn-social.lsrules" + }, + new + { + FilterListId = 1622L, + Id = 1651L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_porn/sb_unified_hosts_porn.lsrules" + }, + new + { + FilterListId = 1623L, + Id = 1652L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/naveednajam/Little-Snitch---Rule-Groups/master/unified_hosts_social/sb_unified_hosts_social.lsrules" + }, + new + { + FilterListId = 1624L, + Id = 1653L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jostyee/littlesnitch-rules/master/blocklist.lsrules" + }, + new + { + FilterListId = 1625L, + Id = 1654L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jostyee/littlesnitch-rules/master/blocklist-china.lsrules" + }, + new + { + FilterListId = 1626L, + Id = 1655L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bdougherty/little-snitch-rules/master/rules/browsers.lsrules" + }, + new + { + FilterListId = 1627L, + Id = 1656L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ldt116/little-snitch-vietnamese-ad-block-rules/master/vietnamese-ad-block.lsrules" + }, + new + { + FilterListId = 1628L, + Id = 1657L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/balupton/littlesnitch-filters/master/blocklist.lsrules" + }, + new + { + FilterListId = 1629L, + Id = 1658L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/balupton/littlesnitch-filters/master/whitelist-cdn.lsrules" + }, + new + { + FilterListId = 1630L, + Id = 1659L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jaydorsey/little_snitch_rules/master/jaydorsey.lsrules" + }, + new + { + FilterListId = 1631L, + Id = 1660L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/newyork10023/Little_Snitch/master/Block_All_All.lsrules" + }, + new + { + FilterListId = 1632L, + Id = 1661L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Kr00lIX/little-snitch-rules/master/Tracking.lsrules" + }, + new + { + FilterListId = 1633L, + Id = 1662L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Kr00lIX/little-snitch-rules/master/SyncLimit.lsrules" + }, + new + { + FilterListId = 1634L, + Id = 1663L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/jamujr/lsrg/raw/master/trackers-top-500.lsrules" + }, + new + { + FilterListId = 1635L, + Id = 1664L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/Dandelion Sprout's Anti-Religion List.txt" + }, + new + { + FilterListId = 1635L, + Id = 1665L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/Dandelion Sprout's Anti-Religion List.txt" + }, + new + { + FilterListId = 1636L, + Id = 1666L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/AntiPreacherList.txt" + }, + new + { + FilterListId = 1636L, + Id = 1667L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/AntiPreacherList.txt" + }, + new + { + FilterListId = 1637L, + Id = 1668L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAwfulCommentsList.txt" + }, + new + { + FilterListId = 1637L, + Id = 1669L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAwfulCommentsList.txt" + }, + new + { + FilterListId = 1638L, + Id = 1670L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Hakame-kun/uBlock-Filters-Indonesia/master/Windows Host/hosts" + }, + new + { + FilterListId = 1639L, + Id = 1671L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.github.developerdan.com/hosts/lists/amp-hosts-extended.txt" + }, + new + { + FilterListId = 1640L, + Id = 1672L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kristerkari/umatrix-recipes/master/README.md" + }, + new + { + FilterListId = 1641L, + Id = 1673L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/L2G/umatrix-rules/master/my-umatrix-rules.txt" + }, + new + { + FilterListId = 1642L, + Id = 1674L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/ruleset/recipes_th.txt" + }, + new + { + FilterListId = 1642L, + Id = 1675L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/ruleset/recipes_th.txt" + }, + new + { + FilterListId = 1643L, + Id = 1676L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/kowith337/PersonalFilterListCollection/master/ruleset/recipes_custom.txt" + }, + new + { + FilterListId = 1643L, + Id = 1677L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/kowith337/PersonalFilterListCollection/raw/master/ruleset/recipes_custom.txt" + }, + new + { + FilterListId = 1644L, + Id = 1678L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/uMatrix/recipes" + }, + new + { + FilterListId = 1645L, + Id = 1679L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/Hosts/ads-tracking" + }, + new + { + FilterListId = 1646L, + Id = 1680L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/Hosts/ads-tracking-breaking" + }, + new + { + FilterListId = 1647L, + Id = 1681L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/Hosts/malware" + }, + new + { + FilterListId = 1648L, + Id = 1682L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/uBlock/list" + }, + new + { + FilterListId = 1649L, + Id = 1683L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/uBlock/facebook/groups-events" + }, + new + { + FilterListId = 1650L, + Id = 1684L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/migueldemoura/ublock-umatrix-rulesets/master/uBlock/facebook/messenger" + }, + new + { + FilterListId = 1651L, + Id = 1685L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/themagicteeth/umatrix-recipes/master/recipes.txt" + }, + new + { + FilterListId = 1652L, + Id = 1686L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/dfkt/umatrix-rules/master/my-umatrix-rules.txt" + }, + new + { + FilterListId = 1653L, + Id = 1687L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/david1davidson/uMatrixMasterList/master/ruleset.txt" + }, + new + { + FilterListId = 1656L, + Id = 1688L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/invasy/umatrix-ruleset/master/ruleset.txt" + }, + new + { + FilterListId = 1657L, + Id = 1689L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/stephengeorgewest/my-umatrix-rules/master/my-umatrix-rules.txt" + }, + new + { + FilterListId = 1658L, + Id = 1690L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tranhoangcore/uMatrix-Rules/master/my-umatrix-rules.txt" + }, + new + { + FilterListId = 1659L, + Id = 1691L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/dadav/umatrix-rules/master/my-rules.txt" + }, + new + { + FilterListId = 1660L, + Id = 1692L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bzsparks/uMatrix/master/my-umatrix-rules.txt" + }, + new + { + FilterListId = 1661L, + Id = 1693L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Strappazzon/teleme7ry/master/rules.txt" + }, + new + { + FilterListId = 1664L, + Id = 1696L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://urlhaus.abuse.ch/downloads/text/" + }, + new + { + FilterListId = 1665L, + Id = 1697L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://urlhaus.abuse.ch/downloads/rpz/" + }, + new + { + FilterListId = 1666L, + Id = 1698L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/CryptoFR/crypto-scams-fr/master/misc.txt" + }, + new + { + FilterListId = 1667L, + Id = 1699L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/CryptoFR/crypto-scams-fr/master/websites.txt" + }, + new + { + FilterListId = 1668L, + Id = 1700L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/brasstax/RHEL-StreetPass-Relay/master/spoof-attwifi/dnsmasq.conf" + }, + new + { + FilterListId = 1669L, + Id = 1701L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/farrokhi/adblock-iran/master/additional-trackers.txt" + }, + new + { + FilterListId = 1669L, + Id = 1702L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/farrokhi/adblock-iran/master/additional-trackers.txt" + }, + new + { + FilterListId = 1670L, + Id = 1703L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/yous/YousList/master/hosts.txt" + }, + new + { + FilterListId = 1671L, + Id = 1704L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tcptomato/ROad-Block/master/road-block-filters.txt" + }, + new + { + FilterListId = 1672L, + Id = 1705L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tcptomato/ROad-Block/master/road-kill-filters.txt" + }, + new + { + FilterListId = 1673L, + Id = 1706L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://github.com/nickspaargaren/no-google/raw/master/pihole-google.txt" + }, + new + { + FilterListId = 1673L, + Id = 1707L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/pihole-google.txt" + }, + new + { + FilterListId = 1674L, + Id = 1708L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/google-domains" + }, + new + { + FilterListId = 1674L, + Id = 1709L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/google-domains" + }, + new + { + FilterListId = 1675L, + Id = 1710L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/analyticsparsed" + }, + new + { + FilterListId = 1675L, + Id = 1711L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/analyticsparsed" + }, + new + { + FilterListId = 1676L, + Id = 1712L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/analytics.txt" + }, + new + { + FilterListId = 1676L, + Id = 1713L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/analytics.txt" + }, + new + { + FilterListId = 1677L, + Id = 1714L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/androidparsed" + }, + new + { + FilterListId = 1677L, + Id = 1715L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/androidparsed" + }, + new + { + FilterListId = 1678L, + Id = 1716L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/android.txt" + }, + new + { + FilterListId = 1678L, + Id = 1717L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/android.txt" + }, + new + { + FilterListId = 1679L, + Id = 1718L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/dnsparsed" + }, + new + { + FilterListId = 1679L, + Id = 1719L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/dnsparsed" + }, + new + { + FilterListId = 1680L, + Id = 1720L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/dns.txt" + }, + new + { + FilterListId = 1680L, + Id = 1721L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/dns.txt" + }, + new + { + FilterListId = 1681L, + Id = 1722L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/domainsparsed" + }, + new + { + FilterListId = 1681L, + Id = 1723L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/domainsparsed" + }, + new + { + FilterListId = 1682L, + Id = 1724L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/domains.txt" + }, + new + { + FilterListId = 1682L, + Id = 1725L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/domains.txt" + }, + new + { + FilterListId = 1683L, + Id = 1726L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/doubleclickparsed" + }, + new + { + FilterListId = 1683L, + Id = 1727L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/doubleclickparsed" + }, + new + { + FilterListId = 1684L, + Id = 1728L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/doubleclick.txt" + }, + new + { + FilterListId = 1684L, + Id = 1729L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/doubleclick.txt" + }, + new + { + FilterListId = 1685L, + Id = 1730L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/firebaseparsed" + }, + new + { + FilterListId = 1685L, + Id = 1731L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/firebaseparsed" + }, + new + { + FilterListId = 1686L, + Id = 1732L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/firebase.txt" + }, + new + { + FilterListId = 1686L, + Id = 1733L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/firebase.txt" + }, + new + { + FilterListId = 1687L, + Id = 1734L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/fontsparsed" + }, + new + { + FilterListId = 1687L, + Id = 1735L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/fontsparsed" + }, + new + { + FilterListId = 1688L, + Id = 1736L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/fonts.txt" + }, + new + { + FilterListId = 1688L, + Id = 1737L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/fonts.txt" + }, + new + { + FilterListId = 1689L, + Id = 1738L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/generalparsed" + }, + new + { + FilterListId = 1689L, + Id = 1739L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/generalparsed" + }, + new + { + FilterListId = 1690L, + Id = 1740L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/general.txt" + }, + new + { + FilterListId = 1690L, + Id = 1741L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/general.txt" + }, + new + { + FilterListId = 1691L, + Id = 1742L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/mailparsed" + }, + new + { + FilterListId = 1691L, + Id = 1743L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/mailparsed" + }, + new + { + FilterListId = 1692L, + Id = 1744L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/mail.txt" + }, + new + { + FilterListId = 1692L, + Id = 1745L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/mail.txt" + }, + new + { + FilterListId = 1693L, + Id = 1746L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/productsparsed" + }, + new + { + FilterListId = 1693L, + Id = 1747L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/productsparsed" + }, + new + { + FilterListId = 1694L, + Id = 1748L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/products.txt" + }, + new + { + FilterListId = 1694L, + Id = 1749L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/products.txt" + }, + new + { + FilterListId = 1695L, + Id = 1750L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/proxiesparsed" + }, + new + { + FilterListId = 1695L, + Id = 1751L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/proxiesparsed" + }, + new + { + FilterListId = 1696L, + Id = 1752L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/proxies.txt" + }, + new + { + FilterListId = 1696L, + Id = 1753L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/proxies.txt" + }, + new + { + FilterListId = 1697L, + Id = 1754L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/shortlinksparsed" + }, + new + { + FilterListId = 1697L, + Id = 1755L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/shortlinksparsed" + }, + new + { + FilterListId = 1698L, + Id = 1756L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/shortlinks.txt" + }, + new + { + FilterListId = 1698L, + Id = 1757L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/shortlinks.txt" + }, + new + { + FilterListId = 1699L, + Id = 1758L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/youtubeparsed" + }, + new + { + FilterListId = 1699L, + Id = 1759L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/youtubeparsed" + }, + new + { + FilterListId = 1700L, + Id = 1760L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nickspaargaren/no-google/master/categories/youtube.txt" + }, + new + { + FilterListId = 1700L, + Id = 1761L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://framagit.org/PoorPocketsMcNewHold/no-google/raw/master/categories/youtube.txt" + }, + new + { + FilterListId = 1701L, + Id = 1762L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://asc.hk/adplus.txt" + }, + new + { + FilterListId = 1702L, + Id = 1763L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://npc.0am.jp/hosts.php?dl=1" + }, + new + { + FilterListId = 1703L, + Id = 1764L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://in0de.synology.me/pwn.txt" + }, + new + { + FilterListId = 1704L, + Id = 1765L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://in0de.synology.me/own.txt" + }, + new + { + FilterListId = 1706L, + Id = 1766L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.gameindustry.eu/files/hosts.txt" + }, + new + { + FilterListId = 1707L, + Id = 1767L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tiuxo/hosts/master/ads" + }, + new + { + FilterListId = 1708L, + Id = 1768L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tiuxo/hosts/master/porn" + }, + new + { + FilterListId = 1709L, + Id = 1769L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tiuxo/hosts/master/social" + }, + new + { + FilterListId = 1710L, + Id = 1770L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.botvrij.eu/data/ioclist.hostname.raw" + }, + new + { + FilterListId = 1711L, + Id = 1771L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://zonefiles.io/f/compromised/domains/live/" + }, + new + { + FilterListId = 1712L, + Id = 1772L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/abc45628/hosts/master/hosts" + }, + new + { + FilterListId = 1713L, + Id = 1773L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jdlingyu/ad-wars/master/hosts" + }, + new + { + FilterListId = 1714L, + Id = 1774L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/XionKzn/PiHole-Lists/master/PiHole/Archive/Quad9.txt" + }, + new + { + FilterListId = 1715L, + Id = 1775L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/XionKzn/PiHole-Lists/master/PiHole/Archive/Yahoo_Ad_Servers.txt" + }, + new + { + FilterListId = 1716L, + Id = 1776L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/XionKzn/PiHole-Lists/master/PiHole/PiHole_HOSTS_Spyware_HOSTS.txt" + }, + new + { + FilterListId = 1717L, + Id = 1777L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/XionKzn/PiHole-Lists/master/PiHole/Archive/Cerber_Ransomware.txt" + }, + new + { + FilterListId = 1718L, + Id = 1778L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/XionKzn/PiHole-Lists/master/PiHole/Blocklist_HOSTS.txt" + }, + new + { + FilterListId = 1719L, + Id = 1779L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/KurzGedanke/kurzBlock/master/kurzBlock.txt" + }, + new + { + FilterListId = 1720L, + Id = 1780L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/VernonStow/Filterlist/master/Filterlist.txt" + }, + new + { + FilterListId = 1721L, + Id = 1781L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jakejarvis/ios-trackers/master/blocklist.txt" + }, + new + { + FilterListId = 1722L, + Id = 1782L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/hell-sh/Evil-Domains/master/evil-domains.txt" + }, + new + { + FilterListId = 1723L, + Id = 1783L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/pirat28/IHateTracker/master/iHateTracker.txt" + }, + new + { + FilterListId = 1724L, + Id = 1784L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/parseword/nolovia/master/skel/hosts-nolovia.txt" + }, + new + { + FilterListId = 1725L, + Id = 1785L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/parseword/nolovia/master/skel/hosts-government-malware.txt" + }, + new + { + FilterListId = 1727L, + Id = 1787L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/gwillem/magento-malware-scanner/master/rules/burner-domains.txt" + }, + new + { + FilterListId = 1728L, + Id = 1788L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/soteria-nou/domain-list/master/ads.txt" + }, + new + { + FilterListId = 1729L, + Id = 1789L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/soteria-nou/domain-list/master/affiliate.txt" + }, + new + { + FilterListId = 1730L, + Id = 1790L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/soteria-nou/domain-list/master/analytics.txt" + }, + new + { + FilterListId = 1731L, + Id = 1791L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/soteria-nou/domain-list/master/enrichments.txt" + }, + new + { + FilterListId = 1732L, + Id = 1792L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/soteria-nou/domain-list/master/fake.txt" + }, + new + { + FilterListId = 1733L, + Id = 1793L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/soteria-nou/domain-list/master/widgets.txt" + }, + new + { + FilterListId = 1734L, + Id = 1794L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/Pro/hosts.txt" + }, + new + { + FilterListId = 1735L, + Id = 1795L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/Pro/domains.txt" + }, + new + { + FilterListId = 1736L, + Id = 1796L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AdGuard Home Compilation List/AdGuardHomeCompilationList.txt" + }, + new + { + FilterListId = 1736L, + Id = 1797L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AdGuard Home Compilation List/AdGuardHomeCompilationList.txt" + }, + new + { + FilterListId = 1737L, + Id = 1798L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Imperial Units Remover.txt" + }, + new + { + FilterListId = 1737L, + Id = 1799L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Imperial Units Remover.txt" + }, + new + { + FilterListId = 1738L, + Id = 1800L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareAdGuardHome.txt" + }, + new + { + FilterListId = 1738L, + Id = 1801L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Alternate versions Anti-Malware List/AntiMalwareAdGuardHome.txt" + }, + new + { + FilterListId = 1739L, + Id = 1802L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://warui.intaa.net/adhosts/local_zone.conf.txt" + }, + new + { + FilterListId = 1740L, + Id = 1803L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/social/formats/hosts.txt" + }, + new + { + FilterListId = 1741L, + Id = 1804L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/porn-lite/formats/hosts.txt" + }, + new + { + FilterListId = 1742L, + Id = 1805L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/regional/formats/hosts.txt" + }, + new + { + FilterListId = 1743L, + Id = 1806L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/spark/formats/domains.txt" + }, + new + { + FilterListId = 1743L, + Id = 1807L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://blokada.org/mirror/v5/energized/spark/hosts.txt" + }, + new + { + FilterListId = 1744L, + Id = 1808L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/bluGo/formats/domains.txt" + }, + new + { + FilterListId = 1745L, + Id = 1809L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/blu/formats/domains.txt" + }, + new + { + FilterListId = 1745L, + Id = 1810L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://blokada.org/mirror/v5/energized/blu/hosts.txt" + }, + new + { + FilterListId = 1746L, + Id = 1811L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/basic/formats/domains.txt" + }, + new + { + FilterListId = 1746L, + Id = 1812L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://blokada.org/mirror/v5/energized/basic/hosts.txt" + }, + new + { + FilterListId = 1747L, + Id = 1813L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/porn/formats/domains.txt" + }, + new + { + FilterListId = 1748L, + Id = 1814L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/ultimate/formats/domains.txt" + }, + new + { + FilterListId = 1749L, + Id = 1815L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/unified/formats/domains.txt" + }, + new + { + FilterListId = 1750L, + Id = 1816L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/xtreme/formats/domains.txt" + }, + new + { + FilterListId = 1751L, + Id = 1817L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/social/formats/domains.txt" + }, + new + { + FilterListId = 1752L, + Id = 1818L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/porn-lite/formats/domains.txt" + }, + new + { + FilterListId = 1753L, + Id = 1819L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/regional/formats/domains.txt" + }, + new + { + FilterListId = 1753L, + Id = 1820L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://blokada.org/mirror/v5/energized/regional/hosts.txt" + }, + new + { + FilterListId = 1754L, + Id = 1821L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/spark/formats/filter" + }, + new + { + FilterListId = 1755L, + Id = 1822L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/bluGo/formats/filter" + }, + new + { + FilterListId = 1756L, + Id = 1823L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/blu/formats/filter" + }, + new + { + FilterListId = 1757L, + Id = 1824L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/basic/formats/filter" + }, + new + { + FilterListId = 1758L, + Id = 1825L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/porn/formats/filter" + }, + new + { + FilterListId = 1759L, + Id = 1826L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/ultimate/formats/filter" + }, + new + { + FilterListId = 1760L, + Id = 1827L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/unified/formats/filter" + }, + new + { + FilterListId = 1761L, + Id = 1828L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/xtreme/formats/filter" + }, + new + { + FilterListId = 1762L, + Id = 1829L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/social/formats/filter" + }, + new + { + FilterListId = 1763L, + Id = 1830L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/porn-lite/formats/filter" + }, + new + { + FilterListId = 1764L, + Id = 1831L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/regional/formats/filter" + }, + new + { + FilterListId = 1765L, + Id = 1832L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/spark/formats/dnsmasq.conf" + }, + new + { + FilterListId = 1766L, + Id = 1833L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/bluGo/formats/dnsmasq.conf" + }, + new + { + FilterListId = 1767L, + Id = 1834L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/blu/formats/dnsmasq.conf" + }, + new + { + FilterListId = 1768L, + Id = 1835L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/basic/formats/dnsmasq.conf" + }, + new + { + FilterListId = 1769L, + Id = 1836L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/porn/formats/dnsmasq.conf" + }, + new + { + FilterListId = 1770L, + Id = 1837L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/ultimate/formats/dnsmasq.conf" + }, + new + { + FilterListId = 1771L, + Id = 1838L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/unified/formats/dnsmasq.conf" + }, + new + { + FilterListId = 1772L, + Id = 1839L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/xtreme/formats/dnsmasq.conf" + }, + new + { + FilterListId = 1773L, + Id = 1840L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/social/formats/dnsmasq.conf" + }, + new + { + FilterListId = 1774L, + Id = 1841L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/porn-lite/formats/dnsmasq.conf" + }, + new + { + FilterListId = 1775L, + Id = 1842L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/regional/formats/dnsmasq.conf" + }, + new + { + FilterListId = 1776L, + Id = 1843L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/spark/formats/unbound.conf" + }, + new + { + FilterListId = 1777L, + Id = 1844L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/bluGo/formats/unbound.conf" + }, + new + { + FilterListId = 1778L, + Id = 1845L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/blu/formats/unbound.conf" + }, + new + { + FilterListId = 1779L, + Id = 1846L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/basic/formats/unbound.conf" + }, + new + { + FilterListId = 1780L, + Id = 1847L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/porn/formats/unbound.conf" + }, + new + { + FilterListId = 1781L, + Id = 1848L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/ultimate/formats/unbound.conf" + }, + new + { + FilterListId = 1782L, + Id = 1849L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/unified/formats/unbound.conf" + }, + new + { + FilterListId = 1783L, + Id = 1850L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/xtreme/formats/unbound.conf" + }, + new + { + FilterListId = 1784L, + Id = 1851L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/social/formats/unbound.conf" + }, + new + { + FilterListId = 1785L, + Id = 1852L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/porn-lite/formats/unbound.conf" + }, + new + { + FilterListId = 1786L, + Id = 1853L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/regional/formats/unbound.conf" + }, + new + { + FilterListId = 1787L, + Id = 1854L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/spark/formats/rpz.txt" + }, + new + { + FilterListId = 1788L, + Id = 1855L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/bluGo/formats/rpz.txt" + }, + new + { + FilterListId = 1789L, + Id = 1856L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/blu/formats/rpz.txt" + }, + new + { + FilterListId = 1790L, + Id = 1857L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/basic/formats/rpz.txt" + }, + new + { + FilterListId = 1791L, + Id = 1858L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/porn/formats/rpz.txt" + }, + new + { + FilterListId = 1792L, + Id = 1859L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/ultimate/formats/rpz.txt" + }, + new + { + FilterListId = 1793L, + Id = 1860L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/unified/formats/rpz.txt" + }, + new + { + FilterListId = 1794L, + Id = 1861L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/xtreme/formats/rpz.txt" + }, + new + { + FilterListId = 1795L, + Id = 1862L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/social/formats/rpz.txt" + }, + new + { + FilterListId = 1796L, + Id = 1863L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/porn-lite/formats/rpz.txt" + }, + new + { + FilterListId = 1797L, + Id = 1864L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/regional/formats/rpz.txt" + }, + new + { + FilterListId = 1798L, + Id = 1865L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/extensions/ips/formats/list.txt" + }, + new + { + FilterListId = 1799L, + Id = 1866L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/abp-filters/abp-filters-anti-cv/master/arabic.txt" + }, + new + { + FilterListId = 1800L, + Id = 1867L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://cdn.rixcloud.io/Quantumult/Rules/Default.conf" + }, + new + { + FilterListId = 1801L, + Id = 1868L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/lhie1/Rules/master/Auto/REJECT.conf" + }, + new + { + FilterListId = 1803L, + Id = 1870L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/scomper/surge-list/master/reject.list" + }, + new + { + FilterListId = 1806L, + Id = 1873L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://lists.blocklist.de/lists/all.txt" + }, + new + { + FilterListId = 1807L, + Id = 1874L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://danger.rulez.sk/projects/bruteforceblocker/blist.php" + }, + new + { + FilterListId = 1808L, + Id = 1875L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://rules.emergingthreats.net/blockrules/compromised-ips.txt" + }, + new + { + FilterListId = 1809L, + Id = 1876L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://rules.emergingthreats.net/fwrules/emerging-Block-IPs.txt" + }, + new + { + FilterListId = 1810L, + Id = 1877L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://blocklist.greensnow.co/greensnow.txt" + }, + new + { + FilterListId = 1811L, + Id = 1878L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.binarydefense.com/banlist.txt" + }, + new + { + FilterListId = 1813L, + Id = 1879L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://cinsscore.com/list/ci-badguys.txt" + }, + new + { + FilterListId = 1814L, + Id = 1880L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/TabloidRemover.txt" + }, + new + { + FilterListId = 1814L, + Id = 1881L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/TabloidRemover.txt" + }, + new + { + FilterListId = 1815L, + Id = 1882L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiPCPriceHiderList.txt" + }, + new + { + FilterListId = 1815L, + Id = 1883L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiPCPriceHiderList.txt" + }, + new + { + FilterListId = 1816L, + Id = 1884L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/KADhosts/master/KADhole.txt" + }, + new + { + FilterListId = 1817L, + Id = 1885L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-pihole-filters/hostfile_regex.txt" + }, + new + { + FilterListId = 1818L, + Id = 1886L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mmotti/pihole-regex/master/regex.list" + }, + new + { + FilterListId = 1819L, + Id = 1887L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.github.developerdan.com/hosts/lists/facebook-extended.txt" + }, + new + { + FilterListId = 1824L, + Id = 1890L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://myip.ms/files/blacklist/general/latest_blacklist.txt" + }, + new + { + FilterListId = 1825L, + Id = 1891L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://iplists.firehol.org/files/hphosts_pha.ipset" + }, + new + { + FilterListId = 1827L, + Id = 1892L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://iplists.firehol.org/files/hphosts_fsa.ipset" + }, + new + { + FilterListId = 1828L, + Id = 1893L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://iplists.firehol.org/files/hphosts_grm.ipset" + }, + new + { + FilterListId = 1829L, + Id = 1894L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://iplists.firehol.org/files/hphosts_exp.ipset" + }, + new + { + FilterListId = 1830L, + Id = 1895L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://iplists.firehol.org/files/hphosts_emd.ipset" + }, + new + { + FilterListId = 1831L, + Id = 1896L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://iplists.firehol.org/files/hphosts_ats.ipset" + }, + new + { + FilterListId = 1832L, + Id = 1897L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiPepeList.txt" + }, + new + { + FilterListId = 1832L, + Id = 1898L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiPepeList.txt" + }, + new + { + FilterListId = 1833L, + Id = 1899L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/hawkeye116477/FilterListsDarkMode/master/DarkFilterLists.txt" + }, + new + { + FilterListId = 1834L, + Id = 1900L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/caffeinewriter/DontPushMe/master/filterlist.txt" + }, + new + { + FilterListId = 1835L, + Id = 1901L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Nebula-Mechanica/Anti-AutoTranslation-List/master/anti-autotranslation-list.txt" + }, + new + { + FilterListId = 1835L, + Id = 1902L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitcdn.xyz/repo/Nebula-Mechanica/Anti-AutoTranslation-List/master/anti-autotranslation-list.txt" + }, + new + { + FilterListId = 1835L, + Id = 1903L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://rawcdn.githack.com/Nebula-Mechanica/Anti-AutoTranslation-List/master/anti-autotranslation-list.txt" + }, + new + { + FilterListId = 1836L, + Id = 1904L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Hosts" + }, + new + { + FilterListId = 1838L, + Id = 1905L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Anti/Anti Social" + }, + new + { + FilterListId = 1840L, + Id = 1907L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersAdGuardHome.txt" + }, + new + { + FilterListId = 1840L, + Id = 1908L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersAdGuardHome.txt" + }, + new + { + FilterListId = 1841L, + Id = 1909L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersPiHole.txt" + }, + new + { + FilterListId = 1841L, + Id = 1910L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersPiHole.txt" + }, + new + { + FilterListId = 1842L, + Id = 1911L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersSocks5.list" + }, + new + { + FilterListId = 1842L, + Id = 1912L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersSocks5.list" + }, + new + { + FilterListId = 1843L, + Id = 1913L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/secretsnow/Ad-Filters/master/Ad Filters.txt" + }, + new + { + FilterListId = 1844L, + Id = 1914L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/some-username-here1/motd-adblock/master/motd-adblock" + }, + new + { + FilterListId = 1845L, + Id = 1915L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/T4Tea/ADPMobileFilter/master/ADPMobileFilter.txt" + }, + new + { + FilterListId = 1846L, + Id = 1916L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/RandomAdversary/Macedonian-adBlock-Filters/master/Filters" + }, + new + { + FilterListId = 1847L, + Id = 1917L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/dorjmi/nothingblock/master/filter.txt" + }, + new + { + FilterListId = 1848L, + Id = 1918L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Crystal-RainSlide/AdditionalFiltersCN/master/CN.txt" + }, + new + { + FilterListId = 1849L, + Id = 1919L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jiayiming/jCleanList/master/jCleanList_all.txt" + }, + new + { + FilterListId = 1850L, + Id = 1920L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://n2o.io/projects/quarklist/dist/quarklist.txt" + }, + new + { + FilterListId = 1852L, + Id = 1921L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://adblock-thai.github.io/thai-ads-filter/subscription.txt" + }, + new + { + FilterListId = 1853L, + Id = 1922L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://adblock-thai.github.io/thai-ads-filter/annoyance.txt" + }, + new + { + FilterListId = 1854L, + Id = 1923L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/masterinspire/Master-AdRules/master/Master-AdRules.txt" + }, + new + { + FilterListId = 1856L, + Id = 1924L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/lutoma/nocomments/master/abp.txt" + }, + new + { + FilterListId = 1864L, + Id = 1932L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Ayesh/Adblock-Sinhala/master/filters.txt" + }, + new + { + FilterListId = 1865L, + Id = 1933L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/zonprox/adblock/master/abpadv.txt" + }, + new + { + FilterListId = 1866L, + Id = 1934L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/LanikSJ/ubo-filters/main/filters/combined-filters.txt" + }, + new + { + FilterListId = 1867L, + Id = 1935L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/LanikSJ/ubo-filters/main/filters/ubo-filters.txt" + }, + new + { + FilterListId = 1868L, + Id = 1936L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://mkb2091.github.io/blockconvert/output/adblock.txt" + }, + new + { + FilterListId = 1869L, + Id = 1937L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://mkb2091.github.io/blockconvert/output/hosts.txt" + }, + new + { + FilterListId = 1870L, + Id = 1938L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://mkb2091.github.io/blockconvert/output/domains.txt" + }, + new + { + FilterListId = 1871L, + Id = 1939L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://mkb2091.github.io/blockconvert/output/ip_blocklist.txt" + }, + new + { + FilterListId = 1872L, + Id = 1940L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://mkb2091.github.io/blockconvert/output/domains.rpz" + }, + new + { + FilterListId = 1873L, + Id = 1941L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://mkb2091.github.io/blockconvert/output/whitelist_domains.txt" + }, + new + { + FilterListId = 1876L, + Id = 1942L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersRPZ.txt" + }, + new + { + FilterListId = 1876L, + Id = 1943L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersRPZ.txt" + }, + new + { + FilterListId = 1877L, + Id = 1944L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersUnbound.conf" + }, + new + { + FilterListId = 1877L, + Id = 1945L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersUnbound.conf" + }, + new + { + FilterListId = 1878L, + Id = 1946L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersForMinerBlock.txt" + }, + new + { + FilterListId = 1878L, + Id = 1947L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersForMinerBlock.txt" + }, + new + { + FilterListId = 1880L, + Id = 1951L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-domains-online.txt" + }, + new + { + FilterListId = 1880L, + Id = 1952L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-domains-online.txt" + }, + new + { + FilterListId = 1880L, + Id = 1953L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-domains-online.txt" + }, + new + { + FilterListId = 1881L, + Id = 1954L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/angelics/pfbng/master/ads/ads-domain-list.txt" + }, + new + { + FilterListId = 1882L, + Id = 1955L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/blocktastic/pihole/master/blocktastic.txt" + }, + new + { + FilterListId = 1886L, + Id = 1956L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cchevy/macedonian-pi-hole-blocklist/master/hosts.txt" + }, + new + { + FilterListId = 1887L, + Id = 1957L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/chrisjudk/hosts/master/hosts" + }, + new + { + FilterListId = 1888L, + Id = 1958L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://agh.lite.dcod.ml/hosts.php" + }, + new + { + FilterListId = 1890L, + Id = 1959L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deletescape/noads/master/lists/add-switzerland.txt" + }, + new + { + FilterListId = 1891L, + Id = 1960L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deletescape/noads/master/lists/fo-scumware.txt" + }, + new + { + FilterListId = 1892L, + Id = 1961L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://lists.noads.online/lists/compilation.txt" + }, + new + { + FilterListId = 1893L, + Id = 1962L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deletescape/noads/master/lists/unbreak.txt" + }, + new + { + FilterListId = 1896L, + Id = 1965L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DRSDavidSoft/additional-hosts/master/domains/blacklist/adservers-and-trackers.txt" + }, + new + { + FilterListId = 1897L, + Id = 1966L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DRSDavidSoft/additional-hosts/master/domains/blacklist/unwanted-iranian.txt" + }, + new + { + FilterListId = 1898L, + Id = 1967L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/herrbischoff/trackers/master/trackers.txt" + }, + new + { + FilterListId = 1899L, + Id = 1968L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/javabean/dnsmasq-antispy/master/dnsmasq.ghostery_bugs.conf" + }, + new + { + FilterListId = 1900L, + Id = 1969L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/javabean/dnsmasq-antispy/master/dnsmasq.zz-extra-servers-manual.conf" + }, + new + { + FilterListId = 1901L, + Id = 1970L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiCartoonHipsterList.txt" + }, + new + { + FilterListId = 1901L, + Id = 1971L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiCartoonHipsterList.txt" + }, + new + { + FilterListId = 1902L, + Id = 1972L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/meinhimmel/hosts/master/hosts" + }, + new + { + FilterListId = 1903L, + Id = 1973L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/mhhakim/pihole-blocklist/master/custom-blocklist.txt" + }, + new + { + FilterListId = 1904L, + Id = 1974L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Phentora/AdguardPersonalList/master/blocklist.txt" + }, + new + { + FilterListId = 1906L, + Id = 1975L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Rhys-H/hosts-list/master/HostsList.txt" + }, + new + { + FilterListId = 1907L, + Id = 1976L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/smed79/blacklist/master/hosts.txt" + }, + new + { + FilterListId = 1908L, + Id = 1977L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/stamparm/maltrail/master/trails/static/suspicious/pua.txt" + }, + new + { + FilterListId = 1909L, + Id = 1978L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/svetlyobg/svet-custom-domains/master/ads-domains" + }, + new + { + FilterListId = 1910L, + Id = 1979L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/svetlyobg/svet-custom-domains/master/ads-IPs" + }, + new + { + FilterListId = 1911L, + Id = 1980L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tomzuu/blacklist-named/master/ad.sites.conf" + }, + new + { + FilterListId = 1912L, + Id = 1981L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tomzuu/blacklist-named/master/phishing.sites.conf" + }, + new + { + FilterListId = 1913L, + Id = 1982L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tomzuu/blacklist-named/master/pushing.sites.conf" + }, + new + { + FilterListId = 1914L, + Id = 1983L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/UnbendableStraw/samsungnosnooping/master/README.md" + }, + new + { + FilterListId = 1915L, + Id = 1984L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/unchartedsky/adguard-kr/master/adguard-kr.txt" + }, + new + { + FilterListId = 1916L, + Id = 1985L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/xlimit91/xlimit91-block-list/master/blacklist.txt" + }, + new + { + FilterListId = 1917L, + Id = 1986L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/xlimit91/xlimit91-block-list/master/regex.list" + }, + new + { + FilterListId = 1918L, + Id = 1987L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ZYX2019/host-block-list/master/Custom.txt" + }, + new + { + FilterListId = 1919L, + Id = 1988L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/zznidar/BAR/master/BAR-list" + }, + new + { + FilterListId = 1920L, + Id = 1989L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/zznidar/BAR/master/URLs_full" + }, + new + { + FilterListId = 1921L, + Id = 1990L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/infinitytec/blocklists/master/ads-and-trackers.txt" + }, + new + { + FilterListId = 1922L, + Id = 1991L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/infinitytec/blocklists/master/scams-and-phishing.txt" + }, + new + { + FilterListId = 1926L, + Id = 1995L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jackrabbit335/UsefulLinuxShellScripts/master/Hosts %26 sourcelist/blacklist.txt" + }, + new + { + FilterListId = 1927L, + Id = 1996L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Th3M3/blocklists/master/malware.list" + }, + new + { + FilterListId = 1928L, + Id = 1997L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Th3M3/blocklists/master/tracking%26ads.list" + }, + new + { + FilterListId = 1930L, + Id = 2000L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/GameConsoleAdblockList.txt" + }, + new + { + FilterListId = 1930L, + Id = 2001L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/GameConsoleAdblockList.txt" + }, + new + { + FilterListId = 1931L, + Id = 2002L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.thedumbterminal.co.uk/files/services/squidblockedsites/blocked.txt" + }, + new + { + FilterListId = 1932L, + Id = 2003L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://assets.windscribe.com/custom_blocklists/clickbait.txt" + }, + new + { + FilterListId = 1933L, + Id = 2004L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/dns-firewall/dns/matrix/matrix/raw/master/source/adware/domains.list" + }, + new + { + FilterListId = 1934L, + Id = 2005L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/dns-firewall/dns/matrix/matrix/raw/master/source/tracking/domains.list" + }, + new + { + FilterListId = 1937L, + Id = 2008L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://pastebin.com/raw/UP3s7pEB" + }, + new + { + FilterListId = 1938L, + Id = 2009L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/YanFung/Ads/master/Mobile" + }, + new + { + FilterListId = 1939L, + Id = 2010L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/yhonay/antipopads/master/hosts" + }, + new + { + FilterListId = 1940L, + Id = 2011L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://repo.andnixsh.com/adblocker/hosts" + }, + new + { + FilterListId = 1941L, + Id = 2012L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/huanz/surge-hosts/master/surge.conf" + }, + new + { + FilterListId = 1942L, + Id = 2013L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.bentasker.co.uk/adblock/autolist.txt" + }, + new + { + FilterListId = 1943L, + Id = 2014L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.bentasker.co.uk/adblock/adblock_compiled.txt" + }, + new + { + FilterListId = 1944L, + Id = 2015L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.bentasker.co.uk/adblock/blockeddomains.txt" + }, + new + { + FilterListId = 1945L, + Id = 2016L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/regex.list" + }, + new + { + FilterListId = 1946L, + Id = 2017L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://anonymousposter.gitlab.io/ublockorigin-rules/blockrules.txt" + }, + new + { + FilterListId = 1948L, + Id = 2019L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/fengyc/URLRedirector/master/tools/rules.json" + }, + new + { + FilterListId = 1949L, + Id = 2020L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/fengyc/URLRedirector/master/tools/rules_geekzu.json" + }, + new + { + FilterListId = 1950L, + Id = 2021L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://pgl.yoyo.org/adservers/serverlist.php?hostformat=rpz&showintro=1&mimetype=plaintext" + }, + new + { + FilterListId = 1951L, + Id = 2022L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AdGuardHomeDisallowedIPs.txt" + }, + new + { + FilterListId = 1951L, + Id = 2023L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AdGuardHomeDisallowedIPs.txt" + }, + new + { + FilterListId = 1952L, + Id = 2024L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/TwitterPureReadingExperience.txt" + }, + new + { + FilterListId = 1952L, + Id = 2025L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/TwitterPureReadingExperience.txt" + }, + new + { + FilterListId = 1953L, + Id = 2026L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/complete/adblock.txt" + }, + new + { + FilterListId = 1954L, + Id = 2027L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/mini/adblock.txt" + }, + new + { + FilterListId = 1955L, + Id = 2028L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/Pro/adblock.txt" + }, + new + { + FilterListId = 1956L, + Id = 2029L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/durablenapkin/scamblocklist/master/hosts.txt" + }, + new + { + FilterListId = 1957L, + Id = 2030L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yumire/kiss-filters/master/filters.txt" + }, + new + { + FilterListId = 1958L, + Id = 2031L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/Sorrow-San/9anime-adblock-filters/raw/master/9Anime filter list" + }, + new + { + FilterListId = 1959L, + Id = 2032L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/RiiConnect24/DNS-Server/master/dns_zones-hosts.txt" + }, + new + { + FilterListId = 1963L, + Id = 2036L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/Sorrow-San/9anime-adblock-filters/raw/master_with_banners/9Anime filter list" + }, + new + { + FilterListId = 1964L, + Id = 2037L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAdventureTimeList.txt" + }, + new + { + FilterListId = 1964L, + Id = 2038L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAdventureTimeList.txt" + }, + new + { + FilterListId = 1965L, + Id = 2039L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/HaveIBeenPwnedPasteRemover.txt" + }, + new + { + FilterListId = 1965L, + Id = 2040L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/HaveIBeenPwnedPasteRemover.txt" + }, + new + { + FilterListId = 1967L, + Id = 2043L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AdRemovalListForUnusualAds.txt" + }, + new + { + FilterListId = 1967L, + Id = 2044L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AdRemovalListForUnusualAds.txt" + }, + new + { + FilterListId = 1968L, + Id = 2045L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/AdguardFilters/master/AnnoyancesFilter/sections/remains.txt" + }, + new + { + FilterListId = 1969L, + Id = 2046L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/AdguardFilters/master/AnnoyancesFilter/sections/push-notifications.txt" + }, + new + { + FilterListId = 1970L, + Id = 2047L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/AdguardFilters/master/AnnoyancesFilter/sections/mobile-app.txt" + }, + new + { + FilterListId = 1971L, + Id = 2048L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/AdguardFilters/master/AnnoyancesFilter/sections/antiadblock.txt" + }, + new + { + FilterListId = 1972L, + Id = 2049L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AdGuard Home Compilation List/AdGuardHomeCompilationListIPs.txt" + }, + new + { + FilterListId = 1972L, + Id = 2050L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AdGuard Home Compilation List/AdGuardHomeCompilationListIPs.txt" + }, + new + { + FilterListId = 1973L, + Id = 2051L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/AntiAmazonListForTwitchDomains.txt" + }, + new + { + FilterListId = 1973L, + Id = 2052L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/AntiAmazonListForTwitchDomains.txt" + }, + new + { + FilterListId = 1974L, + Id = 2053L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/AntiAmazonListForTwitchHosts.txt" + }, + new + { + FilterListId = 1974L, + Id = 2054L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/AntiAmazonListForTwitchHosts.txt" + }, + new + { + FilterListId = 1975L, + Id = 2055L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/AntiF%25D1%2596%25D0%259C%2520ListDomains.txt" + }, + new + { + FilterListId = 1975L, + Id = 2056L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/AntiF%25D1%2596%25D0%259C%2520ListDomains.txt" + }, + new + { + FilterListId = 1976L, + Id = 2057L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiHivemindCartoonTrashingList.txt" + }, + new + { + FilterListId = 1976L, + Id = 2058L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiHivemindCartoonTrashingList.txt" + }, + new + { + FilterListId = 1977L, + Id = 2059L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/AntiHivemindCartoonTrashingListDomains.txt" + }, + new + { + FilterListId = 1977L, + Id = 2060L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/AntiHivemindCartoonTrashingListDomains.txt" + }, + new + { + FilterListId = 1978L, + Id = 2061L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/AntiStevenUniverseListDomains.txt" + }, + new + { + FilterListId = 1978L, + Id = 2062L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/AntiStevenUniverseListDomains.txt" + }, + new + { + FilterListId = 1979L, + Id = 2063L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/BrowseWebsitesWithoutLoggingInAGH.txt" + }, + new + { + FilterListId = 1979L, + Id = 2064L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/BrowseWebsitesWithoutLoggingInAGH.txt" + }, + new + { + FilterListId = 1980L, + Id = 2065L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/BrowseWebsitesWithoutLoggingInDomains.txt" + }, + new + { + FilterListId = 1980L, + Id = 2066L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/BrowseWebsitesWithoutLoggingInDomains.txt" + }, + new + { + FilterListId = 1981L, + Id = 2067L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/WikiaPureBrowsingExperienceDomains.txt" + }, + new + { + FilterListId = 1981L, + Id = 2068L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/WikiaPureBrowsingExperienceDomains.txt" + }, + new + { + FilterListId = 1983L, + Id = 2069L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiSubmissiveEroticaList.txt" + }, + new + { + FilterListId = 1983L, + Id = 2070L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiSubmissiveEroticaList.txt" + }, + new + { + FilterListId = 1984L, + Id = 2071L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/ImgurPureImageryExperience.txt" + }, + new + { + FilterListId = 1984L, + Id = 2072L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/ImgurPureImageryExperience.txt" + }, + new + { + FilterListId = 1985L, + Id = 2073L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://dns.adguard.com/dns-query" + }, + new + { + FilterListId = 1985L, + Id = 2074L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "tls://dns.adguard.com/" + }, + new + { + FilterListId = 1985L, + Id = 2075L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "176.103.130.130" + }, + new + { + FilterListId = 1986L, + Id = 2076L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://dns-family.adguard.com/dns-query" + }, + new + { + FilterListId = 1986L, + Id = 2077L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "tls://dns-family.adguard.com/" + }, + new + { + FilterListId = 1986L, + Id = 2078L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "176.103.130.132" + }, + new + { + FilterListId = 1987L, + Id = 2079L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/SayNoToRacismOnTwitch.txt" + }, + new + { + FilterListId = 1987L, + Id = 2080L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/SayNoToRacismOnTwitch.txt" + }, + new + { + FilterListId = 1988L, + Id = 2081L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/MeWeHappyTimeFunClub.txt" + }, + new + { + FilterListId = 1988L, + Id = 2082L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/MeWeHappyTimeFunClub.txt" + }, + new + { + FilterListId = 1989L, + Id = 2083L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/PokémonNoGOZone.txt" + }, + new + { + FilterListId = 1989L, + Id = 2084L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/PokémonNoGOZone.txt" + }, + new + { + FilterListId = 1990L, + Id = 2085L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/EmptyPaddingRemover.txt" + }, + new + { + FilterListId = 1990L, + Id = 2086L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/EmptyPaddingRemover.txt" + }, + new + { + FilterListId = 1991L, + Id = 2087L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/JapaneseTextSoftener.txt" + }, + new + { + FilterListId = 1991L, + Id = 2088L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/JapaneseTextSoftener.txt" + }, + new + { + FilterListId = 1992L, + Id = 2089L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://dsi.ut-capitole.fr/blacklists/download/sect.tar.gz" + }, + new + { + FilterListId = 1993L, + Id = 2090L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://dsi.ut-capitole.fr/blacklists/download/astrology.tar.gz" + }, + new + { + FilterListId = 1994L, + Id = 2091L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://dsi.ut-capitole.fr/blacklists/download/shortener.tar.gz" + }, + new + { + FilterListId = 1995L, + Id = 2092L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/assets/mirror/ut1-gambling.txt" + }, + new + { + FilterListId = 1996L, + Id = 2093L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Extensions/Anti Obfuscation" + }, + new + { + FilterListId = 1998L, + Id = 2095L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Anti/Anti Location Tracking" + }, + new + { + FilterListId = 2000L, + Id = 2096L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://someonewhocares.org/hosts/ipv6/hosts" + }, + new + { + FilterListId = 2001L, + Id = 2097L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/complete/dnsmasq.conf" + }, + new + { + FilterListId = 2002L, + Id = 2098L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/mini/dnsmasq.conf" + }, + new + { + FilterListId = 2003L, + Id = 2099L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/Pro/dnsmasq.conf" + }, + new + { + FilterListId = 2004L, + Id = 2100L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://www.accs-net.com/hosts/Downloads/hosts127001.zip" + }, + new + { + FilterListId = 2005L, + Id = 2101L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/assets/mirror/ut1-cryptojacking.txt" + }, + new + { + FilterListId = 2006L, + Id = 2102L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/assets/mirror/ut1-adult.txt" + }, + new + { + FilterListId = 2007L, + Id = 2103L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://block.energized.pro/assets/mirror/ut1-social-networks.txt" + }, + new + { + FilterListId = 2008L, + Id = 2104L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/ads.txt" + }, + new + { + FilterListId = 2009L, + Id = 2105L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/crypto.txt" + }, + new + { + FilterListId = 2010L, + Id = 2106L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/ransomware.txt" + }, + new + { + FilterListId = 2011L, + Id = 2107L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/piracy.txt" + }, + new + { + FilterListId = 2012L, + Id = 2108L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/tracking.txt" + }, + new + { + FilterListId = 2013L, + Id = 2109L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/scam.txt" + }, + new + { + FilterListId = 2014L, + Id = 2110L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/gambling.txt" + }, + new + { + FilterListId = 2017L, + Id = 2113L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/porn.txt" + }, + new + { + FilterListId = 2018L, + Id = 2114L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/redirect.txt" + }, + new + { + FilterListId = 2022L, + Id = 2115L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://ipverse.net/ipblocks/data/countries/cn.zone" + }, + new + { + FilterListId = 2023L, + Id = 2116L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://ipverse.net/ipblocks/data/countries/ru.zone" + }, + new + { + FilterListId = 2024L, + Id = 2117L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://ipverse.net/ipblocks/data/countries/ua.zone" + }, + new + { + FilterListId = 2025L, + Id = 2118L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://ipverse.net/ipblocks/data/countries/ro.zone" + }, + new + { + FilterListId = 2026L, + Id = 2119L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hblock.molinero.dev/hosts_domains.txt" + }, + new + { + FilterListId = 2027L, + Id = 2120L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hblock.molinero.dev/hosts_adblock.txt" + }, + new + { + FilterListId = 2028L, + Id = 2121L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/blocklistproject/Lists/master/malware.txt" + }, + new + { + FilterListId = 2029L, + Id = 2122L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://ipverse.net/ipblocks/data/countries/cn-ipv6.zone" + }, + new + { + FilterListId = 2030L, + Id = 2123L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://ipverse.net/ipblocks/data/countries/ru-ipv6.zone" + }, + new + { + FilterListId = 2031L, + Id = 2124L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://ipverse.net/ipblocks/data/countries/ua-ipv6.zone" + }, + new + { + FilterListId = 2034L, + Id = 2127L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/fanboy-notifications.txt" + }, + new + { + FilterListId = 2035L, + Id = 2128L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/fanboy-notifications.tpl" + }, + new + { + FilterListId = 2036L, + Id = 2129L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/notracking/hosts-blocklists/master/adblock/adblock.txt" + }, + new + { + FilterListId = 2038L, + Id = 2130L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/dnswarden/blocklist/master/blacklist-formats/hosts" + }, + new + { + FilterListId = 2039L, + Id = 2131L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/dnswarden/blocklist/master/blacklist-formats/hostnames" + }, + new + { + FilterListId = 2040L, + Id = 2132L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/dnswarden/blocklist/master/blacklist-formats/rpz" + }, + new + { + FilterListId = 2041L, + Id = 2133L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersHostsIPv6.txt" + }, + new + { + FilterListId = 2041L, + Id = 2134L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersHostsIPv6.txt" + }, + new + { + FilterListId = 2043L, + Id = 2137L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/privacy-protection-tools/anti-AD/master/anti-ad-easylist.txt" + }, + new + { + FilterListId = 2043L, + Id = 2138L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.jsdelivr.net/gh/privacy-protection-tools/anti-AD@master/anti-ad-easylist.txt" + }, + new + { + FilterListId = 2043L, + Id = 2139L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://anti-ad.net/easylist.txt" + }, + new + { + FilterListId = 2044L, + Id = 2140L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/privacy-protection-tools/anti-AD/master/anti-ad-domains.txt" + }, + new + { + FilterListId = 2044L, + Id = 2141L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.jsdelivr.net/gh/privacy-protection-tools/anti-AD@master/anti-ad-domains.txt" + }, + new + { + FilterListId = 2044L, + Id = 2142L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://anti-ad.net/domains.txt" + }, + new + { + FilterListId = 2045L, + Id = 2143L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/privacy-protection-tools/anti-AD/master/adblock-for-dnsmasq.conf" + }, + new + { + FilterListId = 2045L, + Id = 2144L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.jsdelivr.net/gh/privacy-protection-tools/anti-AD@master/adblock-for-dnsmasq.conf" + }, + new + { + FilterListId = 2045L, + Id = 2145L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://anti-ad.net/anti-ad-for-dnsmasq.conf" + }, + new + { + FilterListId = 2046L, + Id = 2146L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/privacy-protection-tools/anti-AD/master/anti-ad-surge.txt" + }, + new + { + FilterListId = 2046L, + Id = 2147L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.jsdelivr.net/gh/privacy-protection-tools/anti-AD@master/anti-ad-surge.txt" + }, + new + { + FilterListId = 2046L, + Id = 2148L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://anti-ad.net/surge.txt" + }, + new + { + FilterListId = 2047L, + Id = 2149L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/danielmiessler/SecLists/master/Discovery/Infrastructure/common-router-ips.txt" + }, + new + { + FilterListId = 2048L, + Id = 2150L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/danielmiessler/SecLists/master/IOCs/kaspersky-careto-domains.txt" + }, + new + { + FilterListId = 2049L, + Id = 2151L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/danielmiessler/SecLists/master/IOCs/kaspersky-careto-C2.txt" + }, + new + { + FilterListId = 2050L, + Id = 2152L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/danielmiessler/SecLists/master/Miscellaneous/dns-resolvers.txt" + }, + new + { + FilterListId = 2051L, + Id = 2153L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hostfiles.frogeye.fr/firstparty-trackers.txt" + }, + new + { + FilterListId = 2052L, + Id = 2154L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hostfiles.frogeye.fr/firstparty-trackers-hosts.txt" + }, + new + { + FilterListId = 2053L, + Id = 2155L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hostfiles.frogeye.fr/firstparty-only-trackers.txt" + }, + new + { + FilterListId = 2054L, + Id = 2156L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hostfiles.frogeye.fr/firstparty-only-trackers-hosts.txt" + }, + new + { + FilterListId = 2055L, + Id = 2157L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hostfiles.frogeye.fr/multiparty-only-trackers.txt" + }, + new + { + FilterListId = 2056L, + Id = 2158L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hostfiles.frogeye.fr/multiparty-only-trackers-hosts.txt" + }, + new + { + FilterListId = 2057L, + Id = 2159L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nextdns/cname-cloaking-blocklist/master/domains" + }, + new + { + FilterListId = 2058L, + Id = 2160L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nextdns/piracy-blocklists/master/torrent-websites" + }, + new + { + FilterListId = 2059L, + Id = 2161L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gist.githubusercontent.com/Marfjeh/97f2f049b41b3f09eabcc04004073ae3/raw/58fe3d12c4157b0bda1a2af313809597ea54bb08/torrent-trackers-host" + }, + new + { + FilterListId = 2060L, + Id = 2162L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Other Formats/Extra Format 1" + }, + new + { + FilterListId = 2061L, + Id = 2163L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Cybo1927/Hosts/master/Other Formats/Simplified Domains" + }, + new + { + FilterListId = 2062L, + Id = 2164L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deletescape/noads/master/lists/additional-rules.txt" + }, + new + { + FilterListId = 2063L, + Id = 2165L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://nixnet.services/hosts.txt" + }, + new + { + FilterListId = 2064L, + Id = 2166L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://adblock.any.dns.nixnet.xyz/dns-query" + }, + new + { + FilterListId = 2064L, + Id = 2167L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "tls://198.251.90.89:853/" + }, + new + { + FilterListId = 2064L, + Id = 2168L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "198.251.90.89" + }, + new + { + FilterListId = 2065L, + Id = 2169L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/troysjanda/MyBlockLists/master/yahoocomplete.txt" + }, + new + { + FilterListId = 2067L, + Id = 2170L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://ads-doh.securedns.eu/dns-query" + }, + new + { + FilterListId = 2067L, + Id = 2171L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "tls://ads-dot.securedns.eu/" + }, + new + { + FilterListId = 2067L, + Id = 2172L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "146.185.167.43:5443" + }, + new + { + FilterListId = 2068L, + Id = 2173L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.powershellgallery.com/packages/Manage-AdBlocksOnDNSServer/" + }, + new + { + FilterListId = 2069L, + Id = 2174L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "91.239.26.140" + }, + new + { + FilterListId = 2070L, + Id = 2175L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://dns.noads.online/dns-query" + }, + new + { + FilterListId = 2070L, + Id = 2176L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "tls://dns.noads.online:853/" + }, + new + { + FilterListId = 2070L, + Id = 2177L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "167.99.241.49" + }, + new + { + FilterListId = 2071L, + Id = 2178L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "46.101.91.123" + }, + new + { + FilterListId = 2072L, + Id = 2179L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://sebsauvage.net/hosts/hosts" + }, + new + { + FilterListId = 2073L, + Id = 2180L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://sebsauvage.net/hosts/hosts-adguard" + }, + new + { + FilterListId = 2074L, + Id = 2181L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://sebsauvage.net/hosts/raw" + }, + new + { + FilterListId = 2075L, + Id = 2182L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/SmartTV-AGH.txt" + }, + new + { + FilterListId = 2077L, + Id = 2184L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/durablenapkin/scamblocklist/master/adguard.txt" + }, + new + { + FilterListId = 2078L, + Id = 2185L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://ads-for-open-source.readthedocs.io/en/latest/_static/lists/readthedocs-ads.txt" + }, + new + { + FilterListId = 2079L, + Id = 2186L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/adguard/social-plus.txt" + }, + new + { + FilterListId = 2080L, + Id = 2187L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/adguard/tracking-plus.txt" + }, + new + { + FilterListId = 2081L, + Id = 2188L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/sabre-filters2.txt" + }, + new + { + FilterListId = 2082L, + Id = 2189L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/blog-parts.txt" + }, + new + { + FilterListId = 2083L, + Id = 2190L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/blog-parts-adult.txt" + }, + new + { + FilterListId = 2084L, + Id = 2191L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/medium_mode/anti-allowlist.txt" + }, + new + { + FilterListId = 2085L, + Id = 2192L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/medium_mode/dynamic-rules.txt" + }, + new + { + FilterListId = 2086L, + Id = 2193L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/medium_mode/static-rules.txt" + }, + new + { + FilterListId = 2087L, + Id = 2194L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/scafroglia93/blocklists/master/blocklists-main.txt" + }, + new + { + FilterListId = 2088L, + Id = 2195L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/medium_mode/dynamic-rules-mob.txt" + }, + new + { + FilterListId = 2089L, + Id = 2196L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/no_gen_cosm/phhider.txt" + }, + new + { + FilterListId = 2090L, + Id = 2197L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/no_gen_cosm/phhider-mob.txt" + }, + new + { + FilterListId = 2091L, + Id = 2198L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-filters.txt" + }, + new + { + FilterListId = 2092L, + Id = 2199L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-paranoid.txt" + }, + new + { + FilterListId = 2093L, + Id = 2200L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-social.txt" + }, + new + { + FilterListId = 2094L, + Id = 2201L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-annoyances.txt" + }, + new + { + FilterListId = 2099L, + Id = 2203L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "185.228.168.9" + }, + new + { + FilterListId = 2099L, + Id = 2204L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "185.228.169.9" + }, + new + { + FilterListId = 2099L, + Id = 2205L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "2a0d:2a00:1::2" + }, + new + { + FilterListId = 2100L, + Id = 2206L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Kees1958/WS3_annual_most_used_survey_blocklist/master/Top500" + }, + new + { + FilterListId = 2101L, + Id = 2207L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DavidTai780/AdGuard-Home-Private-Rules/master/hosts.txt" + }, + new + { + FilterListId = 2102L, + Id = 2208L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/loveqqzj/AdGuard/master/Mobile.txt" + }, + new + { + FilterListId = 2103L, + Id = 2209L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/crimsonphobia/etc/master/ips" + }, + new + { + FilterListId = 2104L, + Id = 2210L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/banbendalao/ADgk/master/ADgk.txt" + }, + new + { + FilterListId = 2104L, + Id = 2211L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.jsdelivr.net/gh/banbendalao/ADgk@latest/ADgk.txt" + }, + new + { + FilterListId = 2104L, + Id = 2212L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://banbendalao.coding.net/p/adgk/d/ADgk/git/raw/master/ADgk.txt" + }, + new + { + FilterListId = 2105L, + Id = 2213L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/banbendalao/ADgk/master/kill-baidu-ad.txt" + }, + new + { + FilterListId = 2105L, + Id = 2214L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.jsdelivr.net/gh/banbendalao/ADgk@latest/kill-baidu-ad.txt" + }, + new + { + FilterListId = 2105L, + Id = 2215L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://banbendalao.coding.net/p/adgk/d/ADgk/git/raw/master/kill-baidu-ad.txt" + }, + new + { + FilterListId = 2106L, + Id = 2216L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://dns.adgk.net:4433/dns-query" + }, + new + { + FilterListId = 2106L, + Id = 2217L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "tls://dns.adgk.net/" + }, + new + { + FilterListId = 2106L, + Id = 2218L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "47.98.48.196" + }, + new + { + FilterListId = 2107L, + Id = 2219L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "45.7.228.197" + }, + new + { + FilterListId = 2108L, + Id = 2220L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "198.91.86.63" + }, + new + { + FilterListId = 2109L, + Id = 2221L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitee.com/halflife/list/raw/master/ad.txt" + }, + new + { + FilterListId = 2109L, + Id = 2222L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/o0HalfLife0o/list/master/ad.txt" + }, + new + { + FilterListId = 2110L, + Id = 2223L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitee.com/anye1998/Adguard-List-of-personal-rules/raw/master/List-of-personal-rules.txt" + }, + new + { + FilterListId = 2111L, + Id = 2224L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/cjx82630/cjxlist/master/cjx-ublock.txt" + }, + new + { + FilterListId = 2111L, + Id = 2225L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitee.com/cjx82630/cjxlist/raw/master/cjx-ublock.txt" + }, + new + { + FilterListId = 2112L, + Id = 2226L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/GDPR 451 List.txt" + }, + new + { + FilterListId = 2112L, + Id = 2227L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/GDPR 451 List.txt" + }, + new + { + FilterListId = 2113L, + Id = 2228L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Other domains versions/TorRedirectorList-URLRedirector.json" + }, + new + { + FilterListId = 2113L, + Id = 2229L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Other domains versions/TorRedirectorList-URLRedirector.json" + }, + new + { + FilterListId = 2114L, + Id = 2230L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/MediaPlayerGradientRemover.txt" + }, + new + { + FilterListId = 2114L, + Id = 2231L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/MediaPlayerGradientRemover.txt" + }, + new + { + FilterListId = 2115L, + Id = 2232L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/indianlist+easylist.txt" + }, + new + { + FilterListId = 2117L, + Id = 2233L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/indianlist+easylist.tpl" + }, + new + { + FilterListId = 2118L, + Id = 2234L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/koreanlist+easylist.txt" + }, + new + { + FilterListId = 2119L, + Id = 2235L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/koreanlist+easylist.tpl" + }, + new + { + FilterListId = 2120L, + Id = 2236L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistportuguese+easylist.txt" + }, + new + { + FilterListId = 2121L, + Id = 2237L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistportuguese+easylist.tpl" + }, + new + { + FilterListId = 2122L, + Id = 2238L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/abpvn+easylist.txt" + }, + new + { + FilterListId = 2123L, + Id = 2239L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/abpvn+easylist.tpl" + }, + new + { + FilterListId = 2124L, + Id = 2240L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/abpindo+easylist.tpl" + }, + new + { + FilterListId = 2125L, + Id = 2241L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/abp-filters-anti-cv.tpl" + }, + new + { + FilterListId = 2126L, + Id = 2242L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/bitblock.tpl" + }, + new + { + FilterListId = 2127L, + Id = 2243L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/bitblockext.txt" + }, + new + { + FilterListId = 2128L, + Id = 2244L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/bitblockext.tpl" + }, + new + { + FilterListId = 2129L, + Id = 2245L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/antinuha.txt" + }, + new + { + FilterListId = 2130L, + Id = 2246L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/antinuha.tpl" + }, + new + { + FilterListId = 2131L, + Id = 2247L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/cntblock.tpl" + }, + new + { + FilterListId = 2132L, + Id = 2248L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/hdd1013/AdBlockListSubKr/master/filter.txt" + }, + new + { + FilterListId = 2133L, + Id = 2249L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/dagoll/filters-list/master/dagoll-filters-list.txt" + }, + new + { + FilterListId = 2134L, + Id = 2250L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/TheCardinalSystem/Cruncyroll-Filter-List/master/english.txt" + }, + new + { + FilterListId = 2135L, + Id = 2251L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/radokristof/HunFakeNewsAdblockList/master/hosts" + }, + new + { + FilterListId = 2136L, + Id = 2252L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/dagoll/filters-list/master/dynamic-filtering-rules.txt" + }, + new + { + FilterListId = 2137L, + Id = 2253L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Perflyst/PiHoleBlocklist/master/AmazonFireTV.txt" + }, + new + { + FilterListId = 2138L, + Id = 2254L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DariusIurca/RFNBL-Romanian-Fake-News-Block-List/master/RFNBL.txt" + }, + new + { + FilterListId = 2139L, + Id = 2255L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DariusIurca/ROADBLK-EXTRA/master/ROADBLK-EXTRA.txt" + }, + new + { + FilterListId = 2140L, + Id = 2256L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/dnscrypt/spy.txt" + }, + new + { + FilterListId = 2141L, + Id = 2257L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/dnscrypt/update.txt" + }, + new + { + FilterListId = 2142L, + Id = 2258L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/dnscrypt/extra.txt" + }, + new + { + FilterListId = 2143L, + Id = 2259L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/openwrt/spy/dnsmasq.conf" + }, + new + { + FilterListId = 2144L, + Id = 2260L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/openwrt/update/dnsmasq.conf" + }, + new + { + FilterListId = 2145L, + Id = 2261L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/openwrt/extra/dnsmasq.conf" + }, + new + { + FilterListId = 2146L, + Id = 2262L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/firewall/spy.txt" + }, + new + { + FilterListId = 2147L, + Id = 2263L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/firewall/update.txt" + }, + new + { + FilterListId = 2148L, + Id = 2264L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/firewall/extra.txt" + }, + new + { + FilterListId = 2149L, + Id = 2265L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistpolish+easylist.txt" + }, + new + { + FilterListId = 2150L, + Id = 2266L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistpolish+easylist.tpl" + }, + new + { + FilterListId = 2151L, + Id = 2267L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/newhosts-final-IPv6.hosts" + }, + new + { + FilterListId = 2152L, + Id = 2268L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/newhosts-final-Dual.hosts" + }, + new + { + FilterListId = 2153L, + Id = 2269L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tomzuu/blacklist-named/master/malwaredomainlist.conf" + }, + new + { + FilterListId = 2154L, + Id = 2270L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/tomzuu/blacklist-named/master/cedia_justdomains.conf" + }, + new + { + FilterListId = 2155L, + Id = 2271L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://abp.oisd.nl/" + }, + new + { + FilterListId = 2155L, + Id = 2272L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/abp.txt" + }, + new + { + FilterListId = 2155L, + Id = 2273L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/abp.txt" + }, + new + { + FilterListId = 2156L, + Id = 2274L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Special security lists/IDNHomographProtectionTotal.txt" + }, + new + { + FilterListId = 2156L, + Id = 2275L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Special security lists/IDNHomographProtectionTotal.txt" + }, + new + { + FilterListId = 2157L, + Id = 2276L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Special security lists/IDNHomographProtection-USLatinTLDsOnly.txt" + }, + new + { + FilterListId = 2157L, + Id = 2277L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Special security lists/IDNHomographProtection-USLatinTLDsOnly.txt" + }, + new + { + FilterListId = 2158L, + Id = 2278L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/EkstraBladetEroticContentRemover.txt" + }, + new + { + FilterListId = 2158L, + Id = 2279L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Sensitive lists/EkstraBladetEroticContentRemover.txt" + }, + new + { + FilterListId = 2159L, + Id = 2280L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://orca.pet/notonmyshift/domains.txt" + }, + new + { + FilterListId = 2160L, + Id = 2281L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://bl.isx.fr/raw" + }, + new + { + FilterListId = 2161L, + Id = 2282L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/hg1978/AdGuard-Home-Whitelist/master/whitelist.txt" + }, + new + { + FilterListId = 2162L, + Id = 2283L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/MassMove/AttackVectors/master/LocalJournals/fake-local-journals-list.txt" + }, + new + { + FilterListId = 2163L, + Id = 2284L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/UndertaleRemoverForSoundCloud.txt" + }, + new + { + FilterListId = 2163L, + Id = 2285L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/UndertaleRemoverForSoundCloud.txt" + }, + new + { + FilterListId = 2165L, + Id = 2289L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-dnsmasq-online.conf" + }, + new + { + FilterListId = 2165L, + Id = 2290L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-dnsmasq-online.conf" + }, + new + { + FilterListId = 2165L, + Id = 2291L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-dnsmasq-online.conf" + }, + new + { + FilterListId = 2167L, + Id = 2295L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-hosts-online.txt" + }, + new + { + FilterListId = 2167L, + Id = 2296L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-hosts-online.txt" + }, + new + { + FilterListId = 2167L, + Id = 2297L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-hosts-online.txt" + }, + new + { + FilterListId = 2169L, + Id = 2301L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-bind-online.conf" + }, + new + { + FilterListId = 2169L, + Id = 2302L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-bind-online.conf" + }, + new + { + FilterListId = 2169L, + Id = 2303L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-bind-online.conf" + }, + new + { + FilterListId = 2171L, + Id = 2307L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-unbound-online.conf" + }, + new + { + FilterListId = 2171L, + Id = 2308L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gl/curben/urlhaus-filter/master/urlhaus-filter-unbound-online.conf" + }, + new + { + FilterListId = 2171L, + Id = 2309L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://glcdn.githack.com/curben/urlhaus-filter/raw/master/urlhaus-filter-unbound-online.conf" + }, + new + { + FilterListId = 2172L, + Id = 2310L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/static/HPHosts/Hostsemd.txt" + }, + new + { + FilterListId = 2173L, + Id = 2311L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/static/HPHosts/Hostsexp.txt" + }, + new + { + FilterListId = 2174L, + Id = 2312L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/static/HPHosts/Hostsgrm.txt" + }, + new + { + FilterListId = 2175L, + Id = 2313L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/static/HPHosts/Hostsfsa.txt" + }, + new + { + FilterListId = 2176L, + Id = 2314L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/static/HPHosts/Hostsmmt.txt" + }, + new + { + FilterListId = 2177L, + Id = 2315L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://v.firebog.net/hosts/static/HPHosts/Hostspha.txt" + }, + new + { + FilterListId = 2179L, + Id = 2318L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://blocklist.palemoon.org/ABL/lunar-blocklist.txt" + }, + new + { + FilterListId = 2180L, + Id = 2319L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://mirai.security.gives/data/ip_list.txt" + }, + new + { + FilterListId = 2181L, + Id = 2320L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/stamparm/maltrail/master/trails/static/suspicious/crypto_mining.txt" + }, + new + { + FilterListId = 2182L, + Id = 2321L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/stamparm/maltrail/master/trails/static/suspicious/dynamic_domain.txt" + }, + new + { + FilterListId = 2183L, + Id = 2322L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/stamparm/maltrail/master/trails/static/suspicious/rogue_dns.txt" + }, + new + { + FilterListId = 2184L, + Id = 2323L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/stamparm/maltrail/master/trails/static/malicious/magentocore.txt" + }, + new + { + FilterListId = 2185L, + Id = 2324L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/1_optimized.txt" + }, + new + { + FilterListId = 2186L, + Id = 2325L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/4_optimized.txt" + }, + new + { + FilterListId = 2187L, + Id = 2326L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/113_optimized.txt" + }, + new + { + FilterListId = 2188L, + Id = 2327L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/104_optimized.txt" + }, + new + { + FilterListId = 2189L, + Id = 2328L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/115_optimized.txt" + }, + new + { + FilterListId = 2190L, + Id = 2329L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/118_optimized.txt" + }, + new + { + FilterListId = 2191L, + Id = 2330L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/14_optimized.txt" + }, + new + { + FilterListId = 2192L, + Id = 2331L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/122_optimized.txt" + }, + new + { + FilterListId = 2193L, + Id = 2332L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/123_optimized.txt" + }, + new + { + FilterListId = 2194L, + Id = 2333L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/213_optimized.txt" + }, + new + { + FilterListId = 2195L, + Id = 2334L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bambenek/block-doh/master/doh-hosts.txt" + }, + new + { + FilterListId = 2196L, + Id = 2335L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bambenek/block-doh/master/doh-ipv4.txt" + }, + new + { + FilterListId = 2197L, + Id = 2336L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bambenek/block-doh/master/doh-ipv6.txt" + }, + new + { + FilterListId = 2198L, + Id = 2337L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://azorult-tracker.net/api/list/domain?format=plain" + }, + new + { + FilterListId = 2199L, + Id = 2338L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/10.txt" + }, + new + { + FilterListId = 2200L, + Id = 2339L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/13.txt" + }, + new + { + FilterListId = 2201L, + Id = 2340L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/3.txt" + }, + new + { + FilterListId = 2202L, + Id = 2341L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/9.txt" + }, + new + { + FilterListId = 2203L, + Id = 2342L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/4.txt" + }, + new + { + FilterListId = 2204L, + Id = 2343L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/1.txt" + }, + new + { + FilterListId = 2205L, + Id = 2344L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/11.txt" + }, + new + { + FilterListId = 2206L, + Id = 2345L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/ios/filters/11.txt" + }, + new + { + FilterListId = 2207L, + Id = 2346L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/7.txt" + }, + new + { + FilterListId = 2208L, + Id = 2347L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/6.txt" + }, + new + { + FilterListId = 2209L, + Id = 2348L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/5.txt" + }, + new + { + FilterListId = 2210L, + Id = 2349L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/2.txt" + }, + new + { + FilterListId = 2211L, + Id = 2350L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/8.txt" + }, + new + { + FilterListId = 2212L, + Id = 2351L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/14.txt" + }, + new + { + FilterListId = 2213L, + Id = 2352L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/16.txt" + }, + new + { + FilterListId = 2214L, + Id = 2353L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/2_without_easylist.txt" + }, + new + { + FilterListId = 2215L, + Id = 2354L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/stamparm/aux/master/maltrail-malware-domains.txt" + }, + new + { + FilterListId = 2216L, + Id = 2355L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://infosharing.cybersaiyan.it/feeds/CS-PIHOLE" + }, + new + { + FilterListId = 2217L, + Id = 2356L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/stamparm/ipsum/master/levels/4.txt" + }, + new + { + FilterListId = 2218L, + Id = 2357L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/stamparm/ipsum/master/levels/5.txt" + }, + new + { + FilterListId = 2219L, + Id = 2358L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/stamparm/ipsum/master/levels/6.txt" + }, + new + { + FilterListId = 2220L, + Id = 2359L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAnthroCombatWaifuList.txt" + }, + new + { + FilterListId = 2220L, + Id = 2360L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAnthroCombatWaifuList.txt" + }, + new + { + FilterListId = 2230L, + Id = 2370L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/abpindo-minified.txt" + }, + new + { + FilterListId = 2231L, + Id = 2371L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/abpvn-minified.txt" + }, + new + { + FilterListId = 2232L, + Id = 2372L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/ruadlist-minified.txt" + }, + new + { + FilterListId = 2233L, + Id = 2373L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/bulgarian_list-minified.txt" + }, + new + { + FilterListId = 2234L, + Id = 2374L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylist-minified.txt" + }, + new + { + FilterListId = 2235L, + Id = 2375L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistchina-minified.txt" + }, + new + { + FilterListId = 2236L, + Id = 2376L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hg.adblockplus.org/customfilterlists/raw-file/default/easylistczechandslovak-minified.txt" + }, + new + { + FilterListId = 2237L, + Id = 2377L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistdutch-minified.txt" + }, + new + { + FilterListId = 2238L, + Id = 2378L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistgermany-minified.txt" + }, + new + { + FilterListId = 2239L, + Id = 2379L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistitaly-minified.txt" + }, + new + { + FilterListId = 2240L, + Id = 2380L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistlithuania-minified.txt" + }, + new + { + FilterListId = 2241L, + Id = 2381L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistpolish-minified.txt" + }, + new + { + FilterListId = 2242L, + Id = 2382L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistportuguese-minified.txt" + }, + new + { + FilterListId = 2243L, + Id = 2383L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistspanish-minified.txt" + }, + new + { + FilterListId = 2244L, + Id = 2384L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easyprivacy-minified.txt" + }, + new + { + FilterListId = 2245L, + Id = 2385L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/fanboy-social-minified.txt" + }, + new + { + FilterListId = 2246L, + Id = 2386L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/indianlist-minified.txt" + }, + new + { + FilterListId = 2247L, + Id = 2387L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/israellist-minified.txt" + }, + new + { + FilterListId = 2248L, + Id = 2388L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/latvianlist-minified.txt" + }, + new + { + FilterListId = 2250L, + Id = 2390L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/liste_fr-minified.txt" + }, + new + { + FilterListId = 2251L, + Id = 2391L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/rolist-minified.txt" + }, + new + { + FilterListId = 2252L, + Id = 2392L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistchina+easylistchina_compliance+easylist.txt" + }, + new + { + FilterListId = 2253L, + Id = 2393L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/abpindo-minified.tpl" + }, + new + { + FilterListId = 2254L, + Id = 2394L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/abpvn-minified.tpl" + }, + new + { + FilterListId = 2255L, + Id = 2395L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/ruadlist-minified.tpl" + }, + new + { + FilterListId = 2256L, + Id = 2396L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/bulgarian_list-minified.tpl" + }, + new + { + FilterListId = 2257L, + Id = 2397L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylist-minified.tpl" + }, + new + { + FilterListId = 2258L, + Id = 2398L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistchina-minified.tpl" + }, + new + { + FilterListId = 2260L, + Id = 2400L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistdutch-minified.tpl" + }, + new + { + FilterListId = 2261L, + Id = 2401L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistgermany-minified.tpl" + }, + new + { + FilterListId = 2262L, + Id = 2402L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistitaly-minified.tpl" + }, + new + { + FilterListId = 2263L, + Id = 2403L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistlithuania-minified.tpl" + }, + new + { + FilterListId = 2264L, + Id = 2404L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistpolish-minified.tpl" + }, + new + { + FilterListId = 2265L, + Id = 2405L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistportuguese-minified.tpl" + }, + new + { + FilterListId = 2266L, + Id = 2406L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistspanish-minified.tpl" + }, + new + { + FilterListId = 2267L, + Id = 2407L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easyprivacy-minified.tpl" + }, + new + { + FilterListId = 2268L, + Id = 2408L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/fanboy-social-minified.tpl" + }, + new + { + FilterListId = 2269L, + Id = 2409L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/indianlist-minified.tpl" + }, + new + { + FilterListId = 2270L, + Id = 2410L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/israellist-minified.tpl" + }, + new + { + FilterListId = 2271L, + Id = 2411L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/latvianlist-minified.tpl" + }, + new + { + FilterListId = 2272L, + Id = 2412L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/liste_ar-minified.tpl" + }, + new + { + FilterListId = 2273L, + Id = 2413L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/liste_fr-minified.tpl" + }, + new + { + FilterListId = 2274L, + Id = 2414L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/rolist-minified.tpl" + }, + new + { + FilterListId = 2275L, + Id = 2415L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/easylistchina+easylistchina_compliance+easylist.tpl" + }, + new + { + FilterListId = 2276L, + Id = 2416L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://sub.adtchrome.com/adt-chinalist-easylist.txt" + }, + new + { + FilterListId = 2277L, + Id = 2417L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/TakoYachty/Gift-Card-Killer/master/Mega Untrusted Hosts Blocker.txt" + }, + new + { + FilterListId = 2278L, + Id = 2418L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/stonecrusher/filterlists-pihole/master/watchlist-internet-ph.txt" + }, + new + { + FilterListId = 2279L, + Id = 2419L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://badmojr.github.io/1Hosts/complete/wildcards.txt" + }, + new + { + FilterListId = 2279L, + Id = 2420L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/complete/wildcards.txt" + }, + new + { + FilterListId = 2280L, + Id = 2421L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://badmojr.github.io/1Hosts/mini/wildcards.txt" + }, + new + { + FilterListId = 2280L, + Id = 2422L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/mini/wildcards.txt" + }, + new + { + FilterListId = 2281L, + Id = 2423L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://badmojr.github.io/1Hosts/Pro/wildcards.txt" + }, + new + { + FilterListId = 2281L, + Id = 2424L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/badmojr/1Hosts/master/Pro/wildcards.txt" + }, + new + { + FilterListId = 2283L, + Id = 2426L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jerryn70/GoodbyeAds/master/Formats/GoodbyeAds-AdBlock-Filter.txt" + }, + new + { + FilterListId = 2284L, + Id = 2427L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jerryn70/GoodbyeAds/master/Hosts/GoodbyeAds-Ultra.txt" + }, + new + { + FilterListId = 2285L, + Id = 2428L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jerryn70/GoodbyeAds/master/Formats/GoodbyeAds-Ultra-AdBlock-Filter.txt" + }, + new + { + FilterListId = 2286L, + Id = 2429L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersABP-Inclusion.txt" + }, + new + { + FilterListId = 2286L, + Id = 2430L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersABP-Inclusion.txt" + }, + new + { + FilterListId = 2287L, + Id = 2431L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiRacismList.txt" + }, + new + { + FilterListId = 2287L, + Id = 2432L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiRacismList.txt" + }, + new + { + FilterListId = 2288L, + Id = 2433L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/gwarser/filter-lists/master/lan-block.txt" + }, + new + { + FilterListId = 2289L, + Id = 2434L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/realodix/AdBlockID-Adult/master/AdBlockID_Adult.txt" + }, + new + { + FilterListId = 2290L, + Id = 2435L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/llacb47/miscfilters/master/antipaywall.txt" + }, + new + { + FilterListId = 2291L, + Id = 2436L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/llacb47/mischosts/master/blacklist" + }, + new + { + FilterListId = 2292L, + Id = 2437L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/master/accelerated-domains.china.conf" + }, + new + { + FilterListId = 2293L, + Id = 2438L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/intr0/zuckerblock/-/raw/master/uBlockOrigin-noMoreGiphy.txt" + }, + new + { + FilterListId = 2294L, + Id = 2439L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gitlab.com/intr0/zuckerblock/-/raw/master/AdGuard-noMoreGiphy.txt" + }, + new + { + FilterListId = 2295L, + Id = 2440L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/hl2guide/DNS-Sinkhole-Lists-A2/master/typosquatting_blocklist.txt" + }, + new + { + FilterListId = 2297L, + Id = 2442L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/BlackJack8/iOSAdblockList/master/Hosts.txt" + }, + new + { + FilterListId = 2298L, + Id = 2443L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/PebbleOG/pihole-regex/master/regex.list" + }, + new + { + FilterListId = 2299L, + Id = 2444L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/anthony-wang/PiHoleBlocklist/master/regex.list" + }, + new + { + FilterListId = 2300L, + Id = 2445L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/anthony-wang/PiHoleBlocklist/master/hosts1.txt" + }, + new + { + FilterListId = 2301L, + Id = 2446L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/revolveruk30/pihole_regex/master/regex.list" + }, + new + { + FilterListId = 2302L, + Id = 2447L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/d43m0nhLInt3r/socialblocklists/master/Skype/skypeblocklist.txt" + }, + new + { + FilterListId = 2302L, + Id = 2448L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/evpne/socialblocklists/master/Skype/skypeblocklist.txt" + }, + new + { + FilterListId = 2303L, + Id = 2449L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/stamparm/blackbook/master/blackbook.txt" + }, + new + { + FilterListId = 2304L, + Id = 2450L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://blocklist.cyberthreatcoalition.org/vetted/domain.txt" + }, + new + { + FilterListId = 2305L, + Id = 2451L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/sophoslabs/covid-iocs/master/malicious_domains.txt" + }, + new + { + FilterListId = 2306L, + Id = 2452L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/sophoslabs/covid-iocs/master/malware_domains.txt" + }, + new + { + FilterListId = 2307L, + Id = 2453L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://managedsentinel.com/downloads/covid19_domains.txt" + }, + new + { + FilterListId = 2308L, + Id = 2454L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://managedsentinel.com/downloads/covid19_ipaddresses.txt" + }, + new + { + FilterListId = 2309L, + Id = 2455L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://rescure.fruxlabs.com/rescure_domain_blacklist.txt" + }, + new + { + FilterListId = 2310L, + Id = 2456L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://rescure.fruxlabs.com/rescure_blacklist.txt" + }, + new + { + FilterListId = 2311L, + Id = 2457L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://rescure.fruxlabs.com/covid.txt" + }, + new + { + FilterListId = 2311L, + Id = 2458L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://kriskintel.com/feeds/ktip_covid_domains.txt" + }, + new + { + FilterListId = 2313L, + Id = 2460L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://kriskintel.com/feeds/ktip_malicious_domains.txt" + }, + new + { + FilterListId = 2314L, + Id = 2461L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://kriskintel.com/feeds/ktip_malicious_Ips.txt" + }, + new + { + FilterListId = 2315L, + Id = 2462L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/NoFormatting/optimized-win.hosts" + }, + new + { + FilterListId = 2316L, + Id = 2463L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/NoFormatting/optimized-win-Dual.hosts" + }, + new + { + FilterListId = 2317L, + Id = 2464L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/bongochong/CombinedPrivacyBlockLists/master/NoFormatting/combined-flat.cidr" + }, + new + { + FilterListId = 2318L, + Id = 2465L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://managedsentinel.com/downloads/covid19_url.txt" + }, + new + { + FilterListId = 2319L, + Id = 2466L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://ftpihole.s3.eu-west-2.amazonaws.com/blocklists/smartphone-ads-tracking.txt" + }, + new + { + FilterListId = 2319L, + Id = 2467L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ftpmorph/ftpihole/master/blocklists/smartphone-ads-tracking.txt" + }, + new + { + FilterListId = 2320L, + Id = 2468L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://ftpihole.s3.eu-west-2.amazonaws.com/blocklists/xiaomi-ads-tracking.txt" + }, + new + { + FilterListId = 2320L, + Id = 2469L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ftpmorph/ftpihole/master/blocklists/xiaomi-ads-tracking.txt" + }, + new + { + FilterListId = 2321L, + Id = 2470L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/chromium/filters/224.txt" + }, + new + { + FilterListId = 2322L, + Id = 2471L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/extension/ublock/filters/224.txt" + }, + new + { + FilterListId = 2323L, + Id = 2472L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/phishing-filter.txt" + }, + new + { + FilterListId = 2323L, + Id = 2473L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gl/curben/phishing-filter/master/dist/phishing-filter.txt" + }, + new + { + FilterListId = 2323L, + Id = 2474L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter.txt" + }, + new + { + FilterListId = 2324L, + Id = 2475L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/phishing-filter-domains.txt" + }, + new + { + FilterListId = 2324L, + Id = 2476L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gl/curben/phishing-filter/master/phishing-filter-domains.txt" + }, + new + { + FilterListId = 2324L, + Id = 2477L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter-domains.txt" + }, + new + { + FilterListId = 2325L, + Id = 2478L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/phishing-filter-dnsmasq.conf" + }, + new + { + FilterListId = 2325L, + Id = 2479L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gl/curben/phishing-filter/master/dist/phishing-filter-dnsmasq.conf" + }, + new + { + FilterListId = 2325L, + Id = 2480L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter-dnsmasq.conf" + }, + new + { + FilterListId = 2326L, + Id = 2481L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/phishing-filter-hosts.txt" + }, + new + { + FilterListId = 2326L, + Id = 2482L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gl/curben/phishing-filter/master/dist/phishing-filter-hosts.txt" + }, + new + { + FilterListId = 2326L, + Id = 2483L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter-hosts.txt" + }, + new + { + FilterListId = 2327L, + Id = 2484L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/phishing-filter-bind.conf" + }, + new + { + FilterListId = 2327L, + Id = 2485L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gl/curben/phishing-filter/master/dist/phishing-filter-bind.conf" + }, + new + { + FilterListId = 2327L, + Id = 2486L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter-bind.conf" + }, + new + { + FilterListId = 2328L, + Id = 2487L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/phishing-filter-unbound.conf" + }, + new + { + FilterListId = 2328L, + Id = 2488L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gl/curben/phishing-filter/master/dist/phishing-filter-unbound.conf" + }, + new + { + FilterListId = 2328L, + Id = 2489L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://glcdn.githack.com/curben/phishing-filter/raw/master/dist/phishing-filter-unbound.conf" + }, + new + { + FilterListId = 2329L, + Id = 2490L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/infinitytec/blocklists/master/adfilters.txt" + }, + new + { + FilterListId = 2330L, + Id = 2491L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://github.com/infinitytec/blocklists/raw/master/annoyances.txt" + }, + new + { + FilterListId = 2331L, + Id = 2492L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://github.com/infinitytec/blocklists/raw/master/medicalpseudoscience.txt" + }, + new + { + FilterListId = 2332L, + Id = 2493L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/Anifltrs.txt" + }, + new + { + FilterListId = 2333L, + Id = 2494L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/MAL-Sync UI.txt" + }, + new + { + FilterListId = 2334L, + Id = 2495L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/Anifiltrs Main/Anifiltrs extra-main.txt" + }, + new + { + FilterListId = 2335L, + Id = 2496L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/Anifiltrs Main/Anifiltrs main.txt" + }, + new + { + FilterListId = 2336L, + Id = 2497L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/Anifiltrs — skeletonise.txt" + }, + new + { + FilterListId = 2337L, + Id = 2498L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Karmesinrot/Anifiltrs/master/Anifiltrs — skeletonise extra.txt" + }, + new + { + FilterListId = 2338L, + Id = 2499L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/L33Tech/uLists/master/Lists/L33TAIO.uBl" + }, + new + { + FilterListId = 2339L, + Id = 2500L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/L33Tech/uLists/master/Forks/StopModReposts.uBl" + }, + new + { + FilterListId = 2340L, + Id = 2501L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/privacy-protection-tools/anti-AD/master/anti-ad-smartdns.conf" + }, + new + { + FilterListId = 2340L, + Id = 2502L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.jsdelivr.net/gh/privacy-protection-tools/anti-AD@master/anti-ad-smartdns.conf" + }, + new + { + FilterListId = 2340L, + Id = 2503L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://anti-ad.net/anti-ad-for-smartdns.conf" + }, + new + { + FilterListId = 2341L, + Id = 2504L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "66.66.23.98" + }, + new + { + FilterListId = 2342L, + Id = 2505L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/AdGuardSDNSFilter/master/Filters/rules.txt" + }, + new + { + FilterListId = 2343L, + Id = 2506L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/AdGuardSDNSFilter/master/Filters/exceptions.txt" + }, + new + { + FilterListId = 2344L, + Id = 2507L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.eff.org/files/effdntlist.txt" + }, + new + { + FilterListId = 2345L, + Id = 2508L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/filter" + }, + new + { + FilterListId = 2346L, + Id = 2509L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/domains.txt" + }, + new + { + FilterListId = 2347L, + Id = 2510L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/dnsmasq.conf" + }, + new + { + FilterListId = 2348L, + Id = 2511L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/dnsmasq-ipv6.conf" + }, + new + { + FilterListId = 2349L, + Id = 2512L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/unbound.conf" + }, + new + { + FilterListId = 2350L, + Id = 2513L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/rpz.txt" + }, + new + { + FilterListId = 2351L, + Id = 2514L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/EnergizedProtection/unblock/master/basic/formats/pdnsf.txt" + }, + new + { + FilterListId = 2352L, + Id = 2515L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.smartadblock.co.uk/filters/sabfilter.txt" + }, + new + { + FilterListId = 2353L, + Id = 2516L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jdlingyu/ad-wars/master/sha_ad_hosts" + }, + new + { + FilterListId = 2354L, + Id = 2517L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Ultimate-Hosts-Blacklist/whitelist/master/domains.list" + }, + new + { + FilterListId = 2355L, + Id = 2518L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/notracking/hosts-blocklists-scripts/master/hostnames.whitelist.txt" + }, + new + { + FilterListId = 2356L, + Id = 2519L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdBlock" + }, + new + { + FilterListId = 2357L, + Id = 2520L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdBlockLite" + }, + new + { + FilterListId = 2358L, + Id = 2521L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdList" + }, + new + { + FilterListId = 2359L, + Id = 2522L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdListLite" + }, + new + { + FilterListId = 2360L, + Id = 2523L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdBlock-dnsmasq" + }, + new + { + FilterListId = 2361L, + Id = 2524L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdBlockLite-dnsmasq" + }, + new + { + FilterListId = 2362L, + Id = 2525L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Licolnlee/AdBlockList/master/AdAllowlist" + }, + new + { + FilterListId = 2363L, + Id = 2526L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/examplecode/ad-rules-for-xbrowser/master/core-rule-cn.txt" + }, + new + { + FilterListId = 2364L, + Id = 2527L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ilpl/ad-hosts/master/hosts" + }, + new + { + FilterListId = 2366L, + Id = 2529L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/FalukorvList.txt" + }, + new + { + FilterListId = 2366L, + Id = 2530L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/FalukorvList.txt" + }, + new + { + FilterListId = 2367L, + Id = 2531L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://blokada.org/blocklists/ddgtrackerradar/standard/hosts.txt" + }, + new + { + FilterListId = 2368L, + Id = 2532L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Loyalsoldier/v2ray-rules-dat/release/reject-list.txt" + }, + new + { + FilterListId = 2369L, + Id = 2533L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiKpopSpammersTwitter.txt" + }, + new + { + FilterListId = 2369L, + Id = 2534L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiKpopSpammersTwitter.txt" + }, + new + { + FilterListId = 2370L, + Id = 2535L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Goooler/1024_hosts/master/hosts" + }, + new + { + FilterListId = 2371L, + Id = 2536L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/adbyby/xwhyc-rules/master/lazy.txt" + }, + new + { + FilterListId = 2372L, + Id = 2537L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/privacy-protection-tools/dead-horse/master/anti-ad-white-list.txt" + }, + new + { + FilterListId = 2373L, + Id = 2538L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAdoptablesList.txt" + }, + new + { + FilterListId = 2373L, + Id = 2539L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiAdoptablesList.txt" + }, + new + { + FilterListId = 2374L, + Id = 2540L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianCashbackAssistantReborn.txt" + }, + new + { + FilterListId = 2374L, + Id = 2541L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianCashbackAssistantReborn.txt" + }, + new + { + FilterListId = 2375L, + Id = 2542L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiNonNewsList.txt" + }, + new + { + FilterListId = 2375L, + Id = 2543L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiNonNewsList.txt" + }, + new + { + FilterListId = 2376L, + Id = 2544L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiBadCapitalismList.txt" + }, + new + { + FilterListId = 2376L, + Id = 2545L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiBadCapitalismList.txt" + }, + new + { + FilterListId = 2377L, + Id = 2546L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/dandelion_sprouts_nordic_filters+easylist.txt" + }, + new + { + FilterListId = 2378L, + Id = 2547L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/dandelion_sprouts_nordic_filters+easylist.tpl" + }, + new + { + FilterListId = 2379L, + Id = 2548L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://doh1.blahdns.com/dns-query" + }, + new + { + FilterListId = 2379L, + Id = 2549L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "tls://95.216.212.177:853/" + }, + new + { + FilterListId = 2379L, + Id = 2550L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "95.216.212.177" + }, + new + { + FilterListId = 2380L, + Id = 2551L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/googlehosts/hosts/master/hosts-files/surge.conf" + }, + new + { + FilterListId = 2380L, + Id = 2552L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://git.qvq.network/googlehosts/hosts/raw/master/hosts-files/surge.conf" + }, + new + { + FilterListId = 2381L, + Id = 2553L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/googlehosts/hosts/master/hosts-files/dnsmasq.conf" + }, + new + { + FilterListId = 2381L, + Id = 2554L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://git.qvq.network/googlehosts/hosts/raw/master/hosts-files/dnsmasq.conf" + }, + new + { + FilterListId = 2382L, + Id = 2555L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/abp_light.txt" + }, + new + { + FilterListId = 2382L, + Id = 2556L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/abp_light.txt" + }, + new + { + FilterListId = 2383L, + Id = 2557L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dblw.txt" + }, + new + { + FilterListId = 2383L, + Id = 2558L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dblw.txt" + }, + new + { + FilterListId = 2384L, + Id = 2559L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dblw_light.txt" + }, + new + { + FilterListId = 2384L, + Id = 2560L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dblw_light.txt" + }, + new + { + FilterListId = 2385L, + Id = 2561L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dnsmasq.txt" + }, + new + { + FilterListId = 2385L, + Id = 2562L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dnsmasq.txt" + }, + new + { + FilterListId = 2386L, + Id = 2563L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ookangzheng/dbl-oisd-nl/master/dnsmasq_light.txt" + }, + new + { + FilterListId = 2386L, + Id = 2564L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ookangzheng/dbl-oisd-nl/raw/master/dnsmasq_light.txt" + }, + new + { + FilterListId = 2387L, + Id = 2565L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/ryanbr/fanboy-adblock/master/fanboy-anticomments.txt" + }, + new + { + FilterListId = 2388L, + Id = 2566L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://blacklists.ntop.org/blacklist-hostnames.txt" + }, + new + { + FilterListId = 2389L, + Id = 2567L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://blacklists.ntop.org/adblocker-hostnames.txt" + }, + new + { + FilterListId = 2392L, + Id = 2570L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/hufilter/hufilter/master/hufilter-dns.txt" + }, + new + { + FilterListId = 2393L, + Id = 2571L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://security.cloudflare-dns.com/dns-query" + }, + new + { + FilterListId = 2393L, + Id = 2572L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "1.1.1.2" + }, + new + { + FilterListId = 2393L, + Id = 2573L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "1.0.0.2" + }, + new + { + FilterListId = 2394L, + Id = 2574L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://family.cloudflare-dns.com/dns-query" + }, + new + { + FilterListId = 2394L, + Id = 2575L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "1.1.1.3" + }, + new + { + FilterListId = 2394L, + Id = 2576L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "1.0.0.3" + }, + new + { + FilterListId = 2395L, + Id = 2577L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "156.154.70.2" + }, + new + { + FilterListId = 2395L, + Id = 2578L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "156.154.71.2" + }, + new + { + FilterListId = 2395L, + Id = 2579L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "2610:a1:1018::2" + }, + new + { + FilterListId = 198L, + Id = 2580L, + Primariness = (short)4, + SegmentNumber = (short)0, + Url = "https://gitlab.com/ABPindo/indonesianadblockrules/raw/master/subscriptions/abpindo.txt" + }, + new + { + FilterListId = 2396L, + Id = 2581L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/banks.txt" + }, + new + { + FilterListId = 2397L, + Id = 2582L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/sensitive.txt" + }, + new + { + FilterListId = 2398L, + Id = 2583L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/issues.txt" + }, + new + { + FilterListId = 2399L, + Id = 2584L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/windows.txt" + }, + new + { + FilterListId = 2400L, + Id = 2585L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/mac.txt" + }, + new + { + FilterListId = 2401L, + Id = 2586L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/android.txt" + }, + new + { + FilterListId = 2402L, + Id = 2587L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/HttpsExclusions/master/exclusions/firefox.txt" + }, + new + { + FilterListId = 2403L, + Id = 2588L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFiltersDomainsAllowlist.txt" + }, + new + { + FilterListId = 2403L, + Id = 2589L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/NorwegianExperimentalList alternate versions/NordicFiltersDomainsAllowlist.txt" + }, + new + { + FilterListId = 2404L, + Id = 2590L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiPorkMeatOnRestaurantMenusList.txt" + }, + new + { + FilterListId = 2404L, + Id = 2591L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/AntiPorkMeatOnRestaurantMenusList.txt" + }, + new + { + FilterListId = 2406L, + Id = 2592L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Special security lists/DummyList.txt" + }, + new + { + FilterListId = 2406L, + Id = 2593L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/Special security lists/DummyList.txt" + }, + new + { + FilterListId = 2405L, + Id = 2594L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/Swedish-List-for-Adblock-Plus/main/Swedish List for Adblock Plus.txt" + }, + new + { + FilterListId = 214L, + Id = 2595L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/antiadblockfilters.txt" + }, + new + { + FilterListId = 566L, + Id = 2596L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://easylist-downloads.adblockplus.org/abp-filters-anti-cv.txt" + }, + new + { + FilterListId = 2407L, + Id = 2597L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hg.adblockplus.org/antiadblockfilters/raw-file/tip/antiadblockfilters/antiadblock_english.txt" + }, + new + { + FilterListId = 2408L, + Id = 2598L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hg.adblockplus.org/antiadblockfilters/raw-file/tip/antiadblockfilters/antiadblock_french.txt" + }, + new + { + FilterListId = 2409L, + Id = 2599L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://hg.adblockplus.org/antiadblockfilters/raw-file/tip/antiadblockfilters/antiadblock_russian.txt" + }, + new + { + FilterListId = 2410L, + Id = 2600L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiSnowMarketingList.txt" + }, + new + { + FilterListId = 2411L, + Id = 2601L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/pexcn/daily/gh-pages/adlist/adlist.txt" + }, + new + { + FilterListId = 2412L, + Id = 2602L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/pexcn/daily/gh-pages/adblock/adblock.conf" + }, + new + { + FilterListId = 2413L, + Id = 2603L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/pexcn/daily/gh-pages/shadowrocket/gfwlist.conf" + }, + new + { + FilterListId = 2414L, + Id = 2604L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/pexcn/daily/gh-pages/shadowrocket/whitelist.conf" + }, + new + { + FilterListId = 2415L, + Id = 2605L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/pexcn/daily/gh-pages/trackerlist/trackerlist.txt" + }, + new + { + FilterListId = 2416L, + Id = 2606L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/pexcn/daily/gh-pages/ublacklist/ublacklist.txt" + }, + new + { + FilterListId = 2417L, + Id = 2607L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/pexcn/daily/gh-pages/chnroute/chnroute.txt" + }, + new + { + FilterListId = 2418L, + Id = 2608L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/pexcn/daily/gh-pages/chnroute/chnroute-v6.txt" + }, + new + { + FilterListId = 2419L, + Id = 2609L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-agh-online.txt" + }, + new + { + FilterListId = 2420L, + Id = 2610L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-ag-online.txt" + }, + new + { + FilterListId = 2421L, + Id = 2611L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-vivaldi-online.txt" + }, + new + { + FilterListId = 2422L, + Id = 2612L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/phishing-filter-agh.txt" + }, + new + { + FilterListId = 2423L, + Id = 2613L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/phishing-filter-ag.txt" + }, + new + { + FilterListId = 2424L, + Id = 2614L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/phishing-filter-vivaldi.txt" + }, + new + { + FilterListId = 1985L, + Id = 2615L, + Primariness = (short)4, + SegmentNumber = (short)0, + Url = "176.103.130.131" + }, + new + { + FilterListId = 1985L, + Id = 2616L, + Primariness = (short)5, + SegmentNumber = (short)0, + Url = "2a00:5a60::ad1:0ff" + }, + new + { + FilterListId = 1985L, + Id = 2617L, + Primariness = (short)6, + SegmentNumber = (short)0, + Url = "2a00:5a60::ad2:0ff" + }, + new + { + FilterListId = 1986L, + Id = 2618L, + Primariness = (short)4, + SegmentNumber = (short)0, + Url = "176.103.130.134" + }, + new + { + FilterListId = 1986L, + Id = 2619L, + Primariness = (short)5, + SegmentNumber = (short)0, + Url = "2a00:5a60::bad1:0ff" + }, + new + { + FilterListId = 1986L, + Id = 2620L, + Primariness = (short)6, + SegmentNumber = (short)0, + Url = "2a00:5a60::bad2:0ff" + }, + new + { + FilterListId = 2425L, + Id = 2621L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AdGuard Home Compilation List/AdGuardHomeCompilationList-Notifications.txt" + }, + new + { + FilterListId = 2425L, + Id = 2622L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/AdGuard Home Compilation List/AdGuardHomeCompilationList-Notifications.txt" + }, + new + { + FilterListId = 2427L, + Id = 2623L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/AdGuardSDNSFilter/master/Filters/exclusions.txt" + }, + new + { + FilterListId = 2428L, + Id = 2624L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiGachaAndKnockoffGamesList.txt" + }, + new + { + FilterListId = 2428L, + Id = 2625L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/AntiGachaAndKnockoffGamesList.txt" + }, + new + { + FilterListId = 2426L, + Id = 2626L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/rimu/no-qanon/master/etc_hosts.txt" + }, + new + { + FilterListId = 2429L, + Id = 2627L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/rimu/no-qanon/master/etc_hosts.txt.ipv6" + }, + new + { + FilterListId = 2430L, + Id = 2628L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.team-cymru.org/Services/Bogons/bogon-bn-agg.txt" + }, + new + { + FilterListId = 2431L, + Id = 2629L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.team-cymru.org/Services/Bogons/fullbogons-ipv4.txt" + }, + new + { + FilterListId = 2432L, + Id = 2630L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.team-cymru.org/Services/Bogons/fullbogons-ipv6.txt" + }, + new + { + FilterListId = 2433L, + Id = 2631L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/NorwegianExperimentalList alternate versions/NordicFilters-uMatrixSupplement.txt" + }, + new + { + FilterListId = 2433L, + Id = 2632L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/NorwegianExperimentalList alternate versions/NordicFilters-uMatrixSupplement.txt" + }, + new + { + FilterListId = 2434L, + Id = 2633L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/LegitimateURLShortener.txt" + }, + new + { + FilterListId = 2434L, + Id = 2634L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/LegitimateURLShortener.txt" + }, + new + { + FilterListId = 2435L, + Id = 2635L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/SerboCroatianList.txt" + }, + new + { + FilterListId = 2435L, + Id = 2636L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/SerboCroatianList.txt" + }, + new + { + FilterListId = 2436L, + Id = 2637L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/AntiWeebBoobGamesList.txt" + }, + new + { + FilterListId = 2436L, + Id = 2638L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/Sensitive lists/AntiWeebBoobGamesList.txt" + }, + new + { + FilterListId = 2437L, + Id = 2639L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-online.tpl" + }, + new + { + FilterListId = 2438L, + Id = 2640L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/phishing-filter.tpl" + }, + new + { + FilterListId = 2439L, + Id = 2641L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://github.com/arapurayil/aBL/raw/master/lists/general/filter_list.txt" + }, + new + { + FilterListId = 2440L, + Id = 2642L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/arapurayil/aBL/master/lists/social/filter_list.txt" + }, + new + { + FilterListId = 2441L, + Id = 2643L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/arapurayil/aBL/master/lists/porn_gambling_snuff/filter_list.txt" + }, + new + { + FilterListId = 2442L, + Id = 2644L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/arapurayil/aBL/master/lists/regional/filter_list.txt" + }, + new + { + FilterListId = 2443L, + Id = 2645L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Special security lists/AntiFaviconList.txt" + }, + new + { + FilterListId = 2443L, + Id = 2646L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/Special security lists/AntiFaviconList.txt" + }, + new + { + FilterListId = 2444L, + Id = 2647L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/AntiMalwareDomains.txt" + }, + new + { + FilterListId = 2444L, + Id = 2648L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/Alternate versions Anti-Malware List/AntiMalwareDomains.txt" + }, + new + { + FilterListId = 2445L, + Id = 2649L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/acnapyx/paywall-remover/master/paywall-remover-list.txt" + }, + new + { + FilterListId = 2446L, + Id = 2650L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://dns.hostux.net/ads" + }, + new + { + FilterListId = 2447L, + Id = 2651L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/arman68/noappleads/main/adguard-blocklist.txt" + }, + new + { + FilterListId = 2448L, + Id = 2652L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/vavavr00m/lists/main/hosts/googletranslate" + }, + new + { + FilterListId = 2449L, + Id = 2653L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/vavavr00m/lists/main/hosts/phorm" + }, + new + { + FilterListId = 2450L, + Id = 2654L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jmhenrique/adblock/master/etc/adblock_hosts" + }, + new + { + FilterListId = 2452L, + Id = 2656L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jbunner/adblock/master/a-roblox.txt" + }, + new + { + FilterListId = 2453L, + Id = 2657L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jbunner/adblock/master/a-msteams.txt" + }, + new + { + FilterListId = 2454L, + Id = 2658L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jbunner/adblock/master/a-scratch.txt" + }, + new + { + FilterListId = 2455L, + Id = 2659L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://dandelionsprout.asuscomm.com:2501/dns-query" + }, + new + { + FilterListId = 2455L, + Id = 2660L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "tls://dandelionsprout.asuscomm.com:853/" + }, + new + { + FilterListId = 2456L, + Id = 2661L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/pafnuty/onlineConsultantBlocker/master/online-consultant.txt" + }, + new + { + FilterListId = 2457L, + Id = 2662L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/catsxp/adblock-lists/master/catsxp-unbreak.txt" + }, + new + { + FilterListId = 2458L, + Id = 2663L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/RedDragonWebDesign/block-everything/master/block-everything.txt" + }, + new + { + FilterListId = 2459L, + Id = 2664L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/cname-trackers/master/combined_disguised_trackers.txt" + }, + new + { + FilterListId = 2460L, + Id = 2665L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/cname-trackers/master/combined_disguised_trackers_justdomains.txt" + }, + new + { + FilterListId = 2461L, + Id = 2666L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/cname-trackers/master/combined_original_trackers.txt" + }, + new + { + FilterListId = 2462L, + Id = 2667L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/WhyIsEvery4thYearAlwaysBad/anti-cancer-filter-lists/master/anti_trash_youtube.txt" + }, + new + { + FilterListId = 2463L, + Id = 2668L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/WhyIsEvery4thYearAlwaysBad/anti-cancer-filter-lists/master/anti_trash_new_reddit.txt" + }, + new + { + FilterListId = 2464L, + Id = 2669L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/WhyIsEvery4thYearAlwaysBad/anti-cancer-filter-lists/master/anti_trash_old_reddit.txt" + }, + new + { + FilterListId = 2465L, + Id = 2670L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/WhyIsEvery4thYearAlwaysBad/anti-cancer-filter-lists/master/anti_scam_internet.txt" + }, + new + { + FilterListId = 2466L, + Id = 2671L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filter.futa.gg/filter.txt" + }, + new + { + FilterListId = 2466L, + Id = 2672L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://filter.futa.app/filter.txt" + }, + new + { + FilterListId = 2467L, + Id = 2673L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filter.futa.gg/hosts.txt" + }, + new + { + FilterListId = 2467L, + Id = 2674L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://filter.futa.app/hosts.txt" + }, + new + { + FilterListId = 2468L, + Id = 2675L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filter.futa.gg/nofarm_hosts.txt" + }, + new + { + FilterListId = 2468L, + Id = 2676L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://filter.futa.app/nofarm_hosts.txt" + }, + new + { + FilterListId = 2469L, + Id = 2677L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FutaGuard/FutaFilter/master/removeparam.txt" + }, + new + { + FilterListId = 2470L, + Id = 2678L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/twcau/AdblockRules/master/MurdochList" + }, + new + { + FilterListId = 2471L, + Id = 2679L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/BPower0036/AdBlockFilters/main/easydutch.txt" + }, + new + { + FilterListId = 2472L, + Id = 2680L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-rpz-online.conf" + }, + new + { + FilterListId = 2473L, + Id = 2681L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/phishing-filter-rpz.conf" + }, + new + { + FilterListId = 2096L, + Id = 2683L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/blogroll.txt" + }, + new + { + FilterListId = 2475L, + Id = 2684L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/hirorpt/filters/main/fix.txt" + }, + new + { + FilterListId = 2476L, + Id = 2685L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/pup-filter.txt" + }, + new + { + FilterListId = 2477L, + Id = 2686L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/pup-filter-domains.txt" + }, + new + { + FilterListId = 2478L, + Id = 2687L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/pup-filter-dnsmasq.conf" + }, + new + { + FilterListId = 2479L, + Id = 2688L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/pup-filter-hosts.txt" + }, + new + { + FilterListId = 2480L, + Id = 2689L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/pup-filter-bind.conf" + }, + new + { + FilterListId = 2481L, + Id = 2690L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/pup-filter-unbound.conf" + }, + new + { + FilterListId = 2482L, + Id = 2691L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/pup-filter-agh.txt" + }, + new + { + FilterListId = 2483L, + Id = 2692L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/pup-filter-ag.txt" + }, + new + { + FilterListId = 2484L, + Id = 2693L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/pup-filter-vivaldi.txt" + }, + new + { + FilterListId = 2485L, + Id = 2694L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/pup-filter.tpl" + }, + new + { + FilterListId = 2486L, + Id = 2695L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/pup-filter-rpz.conf" + }, + new + { + FilterListId = 2487L, + Id = 2696L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/pup-filter-snort2.rules" + }, + new + { + FilterListId = 2488L, + Id = 2697L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/pup-filter-snort3.rules" + }, + new + { + FilterListId = 2489L, + Id = 2698L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/pup-filter-suricata.conf" + }, + new + { + FilterListId = 2490L, + Id = 2699L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-snort2-online.rules" + }, + new + { + FilterListId = 2491L, + Id = 2700L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-snort3-online.rules" + }, + new + { + FilterListId = 2492L, + Id = 2701L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-suricata-online.rules" + }, + new + { + FilterListId = 2493L, + Id = 2702L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/phishing-filter-snort2.rules" + }, + new + { + FilterListId = 2494L, + Id = 2703L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/phishing-filter-snort3.rules" + }, + new + { + FilterListId = 2495L, + Id = 2704L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/phishing-filter-suricata.rules" + }, + new + { + FilterListId = 2496L, + Id = 2705L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/troysjanda/MyBlockLists/master/UBOXPI" + }, + new + { + FilterListId = 2097L, + Id = 2706L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/japanese/jp-annoyances-plus.txt" + }, + new + { + FilterListId = 2098L, + Id = 2707L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Yuki2718/adblock/master/adguard/anti-antiadb.txt" + }, + new + { + FilterListId = 2497L, + Id = 2708L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://filters.adtidy.org/windows/filters/17.txt" + }, + new + { + FilterListId = 2498L, + Id = 2709L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://www.joinhoney.com/whitelist/honey-smart-shopping.txt" + }, + new + { + FilterListId = 2499L, + Id = 2710L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/furkun/Anti-IP-Grabber-Hosts/main/hosts" + }, + new + { + FilterListId = 2500L, + Id = 2711L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Cinnamon-Unltd/Anti-Kpop-Spammers-Filterlist-for-Twitter/main/AntiKPopSpammersFilterlistTwitter.txt" + }, + new + { + FilterListId = 2501L, + Id = 2712L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/clarketm/proxy-list/master/proxy-list-raw.txt" + }, + new + { + FilterListId = 2502L, + Id = 2713L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/no-cmyk/Search-Engine-Spam-Domains-Blocklist/master/blocklist.txt" + }, + new + { + FilterListId = 2503L, + Id = 2714L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/SecOps-Institute/Tor-IP-Addresses/master/tor-nodes.lst" + }, + new + { + FilterListId = 2504L, + Id = 2715L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/SecOps-Institute/Tor-IP-Addresses/master/tor-exit-nodes.lst" + }, + new + { + FilterListId = 2505L, + Id = 2716L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/SecOps-Institute/SpamhausIPLists/master/drop.txt" + }, + new + { + FilterListId = 2506L, + Id = 2717L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/SecOps-Institute/SpamhausIPLists/master/drop_ipv6.txt" + }, + new + { + FilterListId = 2507L, + Id = 2718L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/SecOps-Institute/SpamhausIPLists/master/edrop.txt" + }, + new + { + FilterListId = 2508L, + Id = 2719L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://ipverse.net/ipblocks/data/countries/nl.zone" + }, + new + { + FilterListId = 2509L, + Id = 2720L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "http://ipverse.net/ipblocks/data/countries/nl-ipv6.zone" + }, + new + { + FilterListId = 2510L, + Id = 2721L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/autinerd/anti-axelspringer-hosts/master/ios-adguard.txt" + }, + new + { + FilterListId = 2511L, + Id = 2722L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/autinerd/anti-axelspringer-hosts/master/axelspringer-hosts" + }, + new + { + FilterListId = 2512L, + Id = 2723L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/LegitimateURLShortener-AffiliateTagAllowlist.txt" + }, + new + { + FilterListId = 2512L, + Id = 2724L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/raw/master/LegitimateURLShortener-AffiliateTagAllowlist.txt" + }, + new + { + FilterListId = 2513L, + Id = 2725L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DRSDavidSoft/additional-hosts/master/domains/blacklist/fake-domains.txt" + }, + new + { + FilterListId = 2514L, + Id = 2726L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-dnscrypt-blocked-names-online.txt" + }, + new + { + FilterListId = 2515L, + Id = 2727L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/urlhaus-filter-dnscrypt-blocked-ips-online.txt" + }, + new + { + FilterListId = 2516L, + Id = 2728L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/phishing-filter-dnscrypt-blocked-names.txt" + }, + new + { + FilterListId = 2517L, + Id = 2729L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/phishing-filter-dnscrypt-blocked-ips.txt" + }, + new + { + FilterListId = 2518L, + Id = 2730L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://curben.gitlab.io/malware-filter/pup-filter-dnscrypt-blocked-names.txt" + }, + new + { + FilterListId = 2519L, + Id = 2731L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/JohnyP36/Personal-List/main/Personal List (uBo).txt" + }, + new + { + FilterListId = 2471L, + Id = 2732L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/BPower0036/AdBlockFilters/-/raw/main/easydutch.txt" + }, + new + { + FilterListId = 2520L, + Id = 2733L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/BPower0036/AdBlockFilters/main/dynamic rules" + }, + new + { + FilterListId = 2521L, + Id = 2734L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/BPower0036/AdBlockFilters/main/my filters" + }, + new + { + FilterListId = 2522L, + Id = 2735L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://git.bubblev.org/bubblev/bubble-filter-lists/raw/branch/master/ads_and_trackers1.txt" + }, + new + { + FilterListId = 2523L, + Id = 2736L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://git.bubblev.org/bubblev/bubble-filter-lists/raw/branch/master/sites_us_news.txt" + }, + new + { + FilterListId = 2524L, + Id = 2737L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/jamiemansfield/minecraft-hosts/master/lists/tracking.txt" + }, + new + { + FilterListId = 2525L, + Id = 2738L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://orca.pet/notonmyshift/hosts.txt" + }, + new + { + FilterListId = 2526L, + Id = 2739L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://orca.pet/notonmyshift/abp.txt" + }, + new + { + FilterListId = 2527L, + Id = 2740L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://gist.githubusercontent.com/opus-x/3e673a9d5db2a214df05929a4eee6a57/raw" + }, + new + { + FilterListId = 2528L, + Id = 2741L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/dibdot/DoH-IP-blocklists/master/doh-domains.txt" + }, + new + { + FilterListId = 2529L, + Id = 2742L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AmnestyTech/investigations/master/2021-07-18_nso/domains.txt" + }, + new + { + FilterListId = 2530L, + Id = 2743L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://wp.owenthe.dev/fortnite.txt" + }, + new + { + FilterListId = 2531L, + Id = 2744L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://wp.owenthe.dev/redshell.txt" + }, + new + { + FilterListId = 2532L, + Id = 2745L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/allendema/noplaylist/main/NoPlayList.txt" + }, + new + { + FilterListId = 2533L, + Id = 2746L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiOwlHouseList.txt" + }, + new + { + FilterListId = 2533L, + Id = 2747L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/AntiOwlHouseList.txt" + }, + new + { + FilterListId = 2534L, + Id = 2748L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate versions Anti-Malware List/Dandelion Sprout's and other adblocker lists' IPs.ipset" + }, + new + { + FilterListId = 2534L, + Id = 2749L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/Alternate versions Anti-Malware List/Dandelion Sprout's and other adblocker lists' IPs.ipset" + }, + new + { + FilterListId = 301L, + Id = 2750L, + Primariness = (short)4, + SegmentNumber = (short)0, + Url = "https://downloads.vivaldi.com/easylist/easylist-current.txt" + }, + new + { + FilterListId = 2535L, + Id = 2751L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/hadig/Focus-for-Youtube/master/focus4yt.txt" + }, + new + { + FilterListId = 2537L, + Id = 2752L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/iam-py-test/my_filters_001/main/antimalware.txt" + }, + new + { + FilterListId = 2538L, + Id = 2753L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/iam-py-test/my_filters_001/main/Alternative list formats/antimalware_hosts.txt" + }, + new + { + FilterListId = 2536L, + Id = 2754L, + Primariness = (short)0, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Arctic-Circle-System/Sketchy-Extension-and-Search-List/main/list.txt" + }, + new + { + FilterListId = 2434L, + Id = 2755L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://iam-py-test.github.io/mirrors/LegitimateURLShortener.txt" + }, + new + { + FilterListId = 2537L, + Id = 2756L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://iam-py-test.github.io/my_filters_001/antimalware.txt" + }, + new + { + FilterListId = 2538L, + Id = 2757L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://iam-py-test.github.io/my_filters_001/Alternative list formats/antimalware_hosts.txt" + }, + new + { + FilterListId = 2539L, + Id = 2758L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://ammnt.app/filter.txt" + }, + new + { + FilterListId = 2540L, + Id = 2759L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AmmoniteFilter/TrilobiteFilter/main/filter.txt" + }, + new + { + FilterListId = 2541L, + Id = 2760L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/iam-py-test/my_filters_001/main/Alternative list formats/antimalware_domains.txt" + }, + new + { + FilterListId = 2541L, + Id = 2761L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://iam-py-test.github.io/my_filters_001/Alternative list formats/antimalware_domains.txt" + }, + new + { + FilterListId = 2542L, + Id = 2762L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/AdguardTeam/AdguardFilters/master/AnnoyancesFilter/sections/subscriptions.txt" + }, + new + { + FilterListId = 2543L, + Id = 2763L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://pfblockerlists.smallbusinesstech.net/hackerlist.txt" + }, + new + { + FilterListId = 2544L, + Id = 2764L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://pfblockerlists.smallbusinesstech.net/spamlist.txt" + }, + new + { + FilterListId = 2545L, + Id = 2765L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/nextdns/metadata/master/privacy/affiliate-tracking-domains" + }, + new + { + FilterListId = 2546L, + Id = 2766L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/deep-bhatt/huawei-block-list/master/huawei-block-host.txt" + }, + new + { + FilterListId = 2547L, + Id = 2767L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/wesbos/burner-email-providers/master/emails.txt" + }, + new + { + FilterListId = 2548L, + Id = 2768L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://kriskintel.com/feeds/ktip_ransomware_feeds.txt" + }, + new + { + FilterListId = 2549L, + Id = 2769L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/brijrajparmar27/host-sources/master/Porn/hosts" + }, + new + { + FilterListId = 2550L, + Id = 2770L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Zelo72/adguard/main/whitelist.referral.adguard" + }, + new + { + FilterListId = 2551L, + Id = 2771L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://github.com/stamparm/maltrail/blob/master/trails/static/suspicious/i2p.txt" + }, + new + { + FilterListId = 2552L, + Id = 2772L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://github.com/stamparm/maltrail/blob/master/trails/static/suspicious/ipinfo.txt" + }, + new + { + FilterListId = 2553L, + Id = 2773L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://github.com/stamparm/maltrail/blob/master/trails/static/suspicious/parking_site.txt" + }, + new + { + FilterListId = 2554L, + Id = 2774L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/DeadServerGamePingList.txt" + }, + new + { + FilterListId = 2554L, + Id = 2775L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/DeadServerGamePingList.txt" + }, + new + { + FilterListId = 2555L, + Id = 2776L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Sensitive lists/TabloidRemover-MastodonCategoryForImports.csv" + }, + new + { + FilterListId = 2555L, + Id = 2777L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/Sensitive lists/TabloidRemover-MastodonCategoryForImports.csv" + }, + new + { + FilterListId = 2556L, + Id = 2778L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/DandelionSprout/adfilt/master/ClearURLs for uBo/clear_urls_uboified.txt" + }, + new + { + FilterListId = 2556L, + Id = 2779L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/DandelionSprout/adfilt/-/raw/master/ClearURLs for uBo/clear_urls_uboified.txt" + }, + new + { + FilterListId = 2557L, + Id = 2780L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/scafroglia93/blocklists/master/blocklists-malware-traffic.txt" + }, + new + { + FilterListId = 2558L, + Id = 2781L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/Knuschberkeks/Knuschberblock/main/Knuschberblock.txt" + }, + new + { + FilterListId = 2559L, + Id = 2782L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/huzunluartemis/TurkishAdblockList/main/src/HostsList.txt" + }, + new + { + FilterListId = 2560L, + Id = 2783L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/huzunluartemis/TurkishAdblockList/main/src/ElementalList.txt" + }, + new + { + FilterListId = 2561L, + Id = 2784L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/huzunluartemis/TurkishAdblockList/main/src/BadIpList.txt" + }, + new + { + FilterListId = 2562L, + Id = 2785L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/furkun/AndroidSecurityHosts/main/hosts" + }, + new + { + FilterListId = 2563L, + Id = 2786L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/furkun/AndroidSecurityHosts/main/domains.txt" + }, + new + { + FilterListId = 2556L, + Id = 2787L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://codeberg.org/rusty-snake/firefox-config/src/branch/main/assets/uBlockOrigin:queryprune.txt" + }, + new + { + FilterListId = 2564L, + Id = 2788L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/PCCassets/main/plCDB.txt" + }, + new + { + FilterListId = 2564L, + Id = 2789L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.jsdelivr.net/gh/FiltersHeroes/PCCassets@main/plCDB.txt" + }, + new + { + FilterListId = 2564L, + Id = 2790L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://combinatronics.io/FiltersHeroes/PCCassets/main/plCDB.txt" + }, + new + { + FilterListId = 2564L, + Id = 2791L, + Primariness = (short)4, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gh/FiltersHeroes/PCCassets/main/plCDB.txt" + }, + new + { + FilterListId = 2564L, + Id = 2792L, + Primariness = (short)5, + SegmentNumber = (short)0, + Url = "https://filtersheroes.gitlab.io/AssetsMirror/plCDB.txt" + }, + new + { + FilterListId = 2565L, + Id = 2793L, + Primariness = (short)1, + SegmentNumber = (short)0, + Url = "https://raw.githubusercontent.com/FiltersHeroes/PCCassets/main/euCDB.txt" + }, + new + { + FilterListId = 2565L, + Id = 2794L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://cdn.jsdelivr.net/gh/FiltersHeroes/PCCassets@main/euCDB.txt" + }, + new + { + FilterListId = 2565L, + Id = 2795L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://combinatronics.io/FiltersHeroes/PCCassets/main/euCDB.txt" + }, + new + { + FilterListId = 2565L, + Id = 2796L, + Primariness = (short)4, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gh/FiltersHeroes/PCCassets/main/euCDB.txt" + }, + new + { + FilterListId = 2565L, + Id = 2797L, + Primariness = (short)5, + SegmentNumber = (short)0, + Url = "https://filtersheroes.gitlab.io/AssetsMirror/euCDB.txt" + }, + new + { + FilterListId = 2471L, + Id = 2798L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://combinatronics.io/BPower0036/AdBlockFilters/main/easydutch.txt" + }, + new + { + FilterListId = 2471L, + Id = 2799L, + Primariness = (short)4, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gh/BPower0036/AdBlockFilters/main/easydutch.txt" + }, + new + { + FilterListId = 2471L, + Id = 2800L, + Primariness = (short)5, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gl/BPower0036/AdBlockFilters/main/easydutch.txt" + }, + new + { + FilterListId = 2471L, + Id = 2801L, + Primariness = (short)6, + SegmentNumber = (short)0, + Url = "https://cdn.jsdelivr.net/gh/BPower0036/AdBlockFilters@main/easydutch.txt" + }, + new + { + FilterListId = 2520L, + Id = 2802L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/BPower0036/AdBlockFilters/-/raw/main/dynamic rules" + }, + new + { + FilterListId = 2520L, + Id = 2803L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://combinatronics.io/BPower0036/AdBlockfilters/main/dynamic rules" + }, + new + { + FilterListId = 2520L, + Id = 2804L, + Primariness = (short)4, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gh/BPower0036/AdBlockfilters/main/dynamic rules" + }, + new + { + FilterListId = 2520L, + Id = 2805L, + Primariness = (short)5, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gl/BPower0036/AdBlockFilters/main/dynamic rules" + }, + new + { + FilterListId = 2520L, + Id = 2806L, + Primariness = (short)6, + SegmentNumber = (short)0, + Url = "https://cdn.jsdelivr.net/gh/BPower0036/AdBlockfilters@main/dynamic rules" + }, + new + { + FilterListId = 2521L, + Id = 2807L, + Primariness = (short)2, + SegmentNumber = (short)0, + Url = "https://gitlab.com/BPower0036/AdBlockFilters/-/raw/main/my filters" + }, + new + { + FilterListId = 2521L, + Id = 2808L, + Primariness = (short)3, + SegmentNumber = (short)0, + Url = "https://combinatronics.io/BPower0036/AdBlockfilters/main/my filters" + }, + new + { + FilterListId = 2521L, + Id = 2809L, + Primariness = (short)4, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gh/BPower0036/AdBlockfilters/main/my filters" + }, + new + { + FilterListId = 2521L, + Id = 2810L, + Primariness = (short)5, + SegmentNumber = (short)0, + Url = "https://cdn.statically.io/gl/BPower0036/AdBlockFilters/main/my filters" + }, + new + { + FilterListId = 2521L, + Id = 2811L, + Primariness = (short)6, + SegmentNumber = (short)0, + Url = "https://cdn.jsdelivr.net/gh/BPower0036/AdBlockfilters@main/my filters" + }); + }); + b.Navigation("License"); + + b.Navigation("ViewUrls"); }); modelBuilder.Entity("FilterLists.Directory.Infrastructure.Persistence.Queries.Entities.FilterListLanguage", b => @@ -87582,18 +87590,6 @@ protected override void BuildModel(ModelBuilder modelBuilder) b.Navigation("Tag"); }); - modelBuilder.Entity("FilterLists.Directory.Infrastructure.Persistence.Queries.Entities.FilterListViewUrl", b => - { - b.HasOne("FilterLists.Directory.Infrastructure.Persistence.Queries.Entities.FilterList", "FilterList") - .WithMany("ViewUrls") - .HasForeignKey("FilterListId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired() - .HasConstraintName("fk_filter_list_view_urls_filter_lists_filter_list_id"); - - b.Navigation("FilterList"); - }); - modelBuilder.Entity("FilterLists.Directory.Infrastructure.Persistence.Queries.Entities.Fork", b => { b.HasOne("FilterLists.Directory.Infrastructure.Persistence.Queries.Entities.FilterList", "ForkFilterList") @@ -87680,8 +87676,6 @@ protected override void BuildModel(ModelBuilder modelBuilder) b.Navigation("IncludesFilterLists"); b.Navigation("UpstreamFilterLists"); - - b.Navigation("ViewUrls"); }); modelBuilder.Entity("FilterLists.Directory.Infrastructure.Persistence.Queries.Entities.Language", b => diff --git a/services/Directory/FilterLists.Directory.Infrastructure/Persistence/Commands/EntityTypeConfigurations/FilterListTypeConfiguration.cs b/services/Directory/FilterLists.Directory.Infrastructure/Persistence/Commands/EntityTypeConfigurations/FilterListTypeConfiguration.cs index 12d462588..6419730e1 100644 --- a/services/Directory/FilterLists.Directory.Infrastructure/Persistence/Commands/EntityTypeConfigurations/FilterListTypeConfiguration.cs +++ b/services/Directory/FilterLists.Directory.Infrastructure/Persistence/Commands/EntityTypeConfigurations/FilterListTypeConfiguration.cs @@ -47,6 +47,23 @@ public virtual void Configure(EntityTypeBuilder builder) e.Property(nameof(FilterListTag.TagId)); e.HasKey(nameof(FilterListTag.FilterListId), nameof(FilterListTag.TagId)); }); + builder.OwnsMany( + f => f.ViewUrls, + b => + { + b.ToTable($"{nr.RewriteName(nameof(FilterListViewUrl))}s"); + b.Property(u => u.SegmentNumber) + .HasDefaultValue(1); + b.Property(u => u.Primariness) + .HasDefaultValue(1); + b.HasIndex( + nameof(FilterListViewUrl.FilterListId), + nameof(FilterListViewUrl.SegmentNumber), + nameof(FilterListViewUrl.Primariness)) + .IsUnique(); + }); + builder.Navigation(f => f.ViewUrls) + .AutoInclude(); builder.HasMany(f => f.Maintainers) .WithMany(m => m.FilterLists) .UsingEntity( @@ -102,7 +119,5 @@ public virtual void Configure(EntityTypeBuilder builder) .HasForeignKey(nameof(Change.FilterListId)); builder.Navigation(f => f.Changes) .AutoInclude(); - builder.Navigation(f => f.ViewUrls) - .AutoInclude(); } } diff --git a/services/Directory/FilterLists.Directory.Infrastructure/Persistence/Commands/EntityTypeConfigurations/FilterListViewUrlTypeConfiguration.cs b/services/Directory/FilterLists.Directory.Infrastructure/Persistence/Commands/EntityTypeConfigurations/FilterListViewUrlTypeConfiguration.cs deleted file mode 100644 index 25a6aa921..000000000 --- a/services/Directory/FilterLists.Directory.Infrastructure/Persistence/Commands/EntityTypeConfigurations/FilterListViewUrlTypeConfiguration.cs +++ /dev/null @@ -1,18 +0,0 @@ -using System.Globalization; -using EFCore.NamingConventions.Internal; -using FilterLists.Directory.Domain.Aggregates.FilterLists; -using Microsoft.EntityFrameworkCore; -using Microsoft.EntityFrameworkCore.Metadata.Builders; - -namespace FilterLists.Directory.Infrastructure.Persistence.Commands.EntityTypeConfigurations; - -internal class FilterListViewUrlTypeConfiguration : IEntityTypeConfiguration -{ - public virtual void Configure(EntityTypeBuilder builder) - { - // TODO: register and resolve INameRewriter - var nr = new SnakeCaseNameRewriter(CultureInfo.InvariantCulture); - - builder.ToTable($"{nr.RewriteName(nameof(Queries.Entities.FilterListViewUrl))}s"); - } -} diff --git a/services/Directory/FilterLists.Directory.Infrastructure/Persistence/Queries/Entities/FilterList.cs b/services/Directory/FilterLists.Directory.Infrastructure/Persistence/Queries/Entities/FilterList.cs index 45f317bfd..808f6361f 100644 --- a/services/Directory/FilterLists.Directory.Infrastructure/Persistence/Queries/Entities/FilterList.cs +++ b/services/Directory/FilterLists.Directory.Infrastructure/Persistence/Queries/Entities/FilterList.cs @@ -1,4 +1,6 @@ -using Microsoft.EntityFrameworkCore; +using System.Globalization; +using EFCore.NamingConventions.Internal; +using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata.Builders; namespace FilterLists.Directory.Infrastructure.Persistence.Queries.Entities; @@ -36,6 +38,9 @@ internal class FilterListTypeConfiguration : EntityRequiringApprovalTypeConfigur { public override void Configure(EntityTypeBuilder builder) { + // TODO: register and resolve INameRewriter + var nr = new SnakeCaseNameRewriter(CultureInfo.InvariantCulture); + builder.HasIndex(f => f.Name) .IsUnique(); builder.Property(f => f.LicenseId) @@ -43,6 +48,19 @@ public override void Configure(EntityTypeBuilder builder) builder.HasOne(f => f.License) .WithMany(l => l.FilterLists) .OnDelete(DeleteBehavior.Restrict); + builder.OwnsMany( + f => f.ViewUrls, + b => + { + b.ToTable($"{nr.RewriteName(nameof(FilterListViewUrl))}s"); + b.Property(u => u.SegmentNumber) + .HasDefaultValue(1); + b.Property(u => u.Primariness) + .HasDefaultValue(1); + b.HasIndex(u => new { u.FilterListId, u.SegmentNumber, u.Primariness }) + .IsUnique(); + b.HasDataJsonFile(); + }); builder.HasDataJsonFileEntityRequiringApproval(); base.Configure(builder); } diff --git a/services/Directory/FilterLists.Directory.Infrastructure/Persistence/Queries/Entities/FilterListViewUrl.cs b/services/Directory/FilterLists.Directory.Infrastructure/Persistence/Queries/Entities/FilterListViewUrl.cs index fc387cf51..c5fed6fa4 100644 --- a/services/Directory/FilterLists.Directory.Infrastructure/Persistence/Queries/Entities/FilterListViewUrl.cs +++ b/services/Directory/FilterLists.Directory.Infrastructure/Persistence/Queries/Entities/FilterListViewUrl.cs @@ -1,9 +1,4 @@ -using System.Globalization; -using EFCore.NamingConventions.Internal; -using Microsoft.EntityFrameworkCore; -using Microsoft.EntityFrameworkCore.Metadata.Builders; - -namespace FilterLists.Directory.Infrastructure.Persistence.Queries.Entities; +namespace FilterLists.Directory.Infrastructure.Persistence.Queries.Entities; public record FilterListViewUrl { @@ -14,22 +9,3 @@ public record FilterListViewUrl public short Primariness { get; init; } public Uri Url { get; init; } = default!; } - -internal class FilterListViewUrlConfiguration : IEntityTypeConfiguration -{ - public virtual void Configure(EntityTypeBuilder builder) - { - // TODO: register and resolve INameRewriter - var nr = new SnakeCaseNameRewriter(CultureInfo.InvariantCulture); - - builder.ToTable($"{nr.RewriteName(nameof(FilterListViewUrl))}s"); - builder.Property(u => u.SegmentNumber) - .HasDefaultValue(1); - builder.Property(u => u.Primariness) - .HasDefaultValue(1); - builder.HasIndex(u => new { u.FilterListId, u.SegmentNumber, u.Primariness }) - .IsUnique(); - builder.HasQueryFilter(u => u.FilterList.IsApproved); - builder.HasDataJsonFile(); - } -} diff --git a/services/Directory/FilterLists.Directory.Infrastructure/Persistence/SeedExtensions.cs b/services/Directory/FilterLists.Directory.Infrastructure/Persistence/SeedExtensions.cs index fbda22cd3..ac5298b59 100644 --- a/services/Directory/FilterLists.Directory.Infrastructure/Persistence/SeedExtensions.cs +++ b/services/Directory/FilterLists.Directory.Infrastructure/Persistence/SeedExtensions.cs @@ -53,6 +53,17 @@ public static void HasDataJsonFile(this EntityTypeBuilder entityTypeBui entityTypeBuilder.HasData(entities); } + public static void HasDataJsonFile(this OwnedNavigationBuilder ownedNavigationBuilder) where TEntity : class + { + var entities = Deserialize(); + if (entities.Count == 0) + { + return; + } + + ownedNavigationBuilder.HasData(entities); + } + private static List Deserialize() { // uncomment to short-circuit HasData() when adding a migration